Pawan Khandelwal

Greenhorn
+ Follow
since Aug 23, 2006
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by Pawan Khandelwal

Hi..

i am using.. VideoTransmit.java class..

now i want to capture the brodcasted video in client side...

but without using JMStudio...

can any one help me out...


thanks n regards (adv)
17 years ago
how can i send..video/audio file to media server using java...
so 4 this..how should i start..


can any one help me out...

thanks..n regards..(adv)
17 years ago
hi,

i am new to JMF..
i am using..VideoTransmit.java

after compiling..
when i wrote..

java VideoTransmit file:/E:/video/crash.avi 10.112.154.234 42060

it gives an Error..like this..



Video transmitted as:
JPEG/RTP, 592x256, FrameRate=23.9
ContentDescriptorRAW/RTP
processorcom.sun.media.processor.unknown.Handler@fabe9
Controller.Realized300
Failed to build a graph for the given custom options.
Failed to realize: com.sun.media.ProcessEngine@181afa3
Cannot build a flow graph with the customized options:
Unable to transcode format: XVID, 592x256, FrameRate=23.9, Length=909312 0 e
xtra bytes
to: JPEG/RTP, 592x256, FrameRate=23.9
outputting to: RAW/RTP
Error: Unable to realize com.sun.media.ProcessEngine@181afa3
resultfalse
Error : Couldn't realize processor





so what should i do..

pls Help me out..

thanks..n Regards..(adv)
17 years ago
my- log.jsp file

<%@ taglib uri="/tags/struts-bean" prefix="bean" %>
<%@ taglib uri="/tags/struts-html" prefix="html" %>
<%@ taglib uri="/tags/struts-logic" prefix="logic" %>

<html:html locale="true">
<head>
<title>HI</title>
<html:base/>
</head>
<body bgcolor="#fdf5e6">

<logic:notPresent name="org.apache.struts.action.MESSAGE" scope="application">
<font color="red">
ERROR: Application resources not loaded -- check servlet container
logs for error messages.
</font>
</logic:notPresent>

<html:form action="/loginpage">

<h3>HI</h3>


<table>
<tr>
<td align="right">Login:</td>
<td><html:text property="login"/></td>
</tr>

<tr>
<td align="right">Password:</td>
<td><html:text property="password"/></td>
</tr>
</table>

</html:form>
</body>
</html:html>

my struts config details

<action
path="/log"
forward="/jsp/log.jsp"/>


NOW IS IT NECESSARY TO MAKE ANY ACTION CLASS,
CAN I MAKE ABOVE JSP WITHOUT ANY ACTION CLASS
17 years ago