Re: [Live-devel] how to stream mp4 file using liveMedia (typo corrected)

2009-06-24 Thread Ross Finlayson
I want to know whether MPEG4 has its specific transport stream format? Such as mp4 is a Mpeg4 specific file format. Then how about mpeg4's transport stream format? Or just reusing mpeg2ts, which is possible according to my test? Although the MPEG Transport Stream was originally designed (I thi

Re: [Live-devel] how to stream mp4 file using liveMedia (typo corrected)

2009-06-24 Thread Woods
Hi, Thanks for your reply. But I want to ask another question though it is a bit out range of this mail list. I want to know whether MPEG4 has its specific transport stream format? Such as mp4 is a Mpeg4 specific file format. Then how about mpeg4's transport stream format? Or just reusing mpeg2t

Re: [Live-devel] streaming over raw udp

2009-06-24 Thread Ross Finlayson
I notice LiveMedia usually streams over RTP/UDP. Is it possible to stream over UDP directly? Yes, by using a "BasicUDPSink" for sending data (instead of a "RTPSink" (subclass)). A receiver can receive raw-UDP using a "BasicUDPSource". Note, though, that if you stream over raw UDP rather tha

[Live-devel] streaming over raw udp

2009-06-24 Thread Woods
Dear all, I notice LiveMedia usually streams over RTP/UDP. Is it possible to stream over UDP directly? Thanks for your advice. -- Woods ___ live-devel mailing list live-devel@lists.live555.com http://lists.live555.com/mailman/listinfo/live-devel

Re: [Live-devel] how to stream mp4 file using liveMedia (typo corrected)

2009-06-24 Thread Ross Finlayson
Should I create corresponding components for MP4 format, so I can create workflow something like the following two solution? ByteStreamFileSource -> MP4StreamFramer -> MP4RTPSink (or SimpleRTPSink) OR ByteStreamFileSource -> MP4Demux -> MPEG4DemuxElementaryStream |-> MPEG4VideoStreamFramer ->

[Live-devel] how to stream mp4 file using liveMedia (typo corrected)

2009-06-24 Thread Woods
Dear all, I am seeking your suggestions on streaming a MP4 file using liveMedia library. The mp4 file is consisted of mp4v and mpga streams. I only see MPEG4VIDEO related sources, framers and sinks in the library. A typical workflow, according to your test program, is ByteStreamFileSource -> MPE

Re: [Live-devel] MPEG4 RTSP Client/Receiver

2009-06-24 Thread Khaliq Masood
Thanks Ganesh. fileSink->addData(configData, configLen, timeNow); worked and my problem is solved. actually my MPEG4 receiver was receiving frames correctly. The problem was receiver was unable to write the initial useful information of the stream before writing the frames data. After writing

Re: [Live-devel] Question on HTTP Streaming and XML

2009-06-24 Thread Ross Finlayson
Does the current livemedia library support HTTP streaming (as compared to RTSP)? No. -- Ross Finlayson Live Networks, Inc. http://www.live555.com/ ___ live-devel mailing list live-devel@lists.live555.com http://lists.live555.com/mailman/listinfo/live-

[Live-devel] Question on HTTP Streaming and XML

2009-06-24 Thread Ganesh V
Dear Experts, Does the current livemedia library support HTTP streaming (as compared to RTSP)? My objective is to transmit an XML file and hence, I am look for more details on the same. Is there any example implementation in Livemedia package which I can refer for more information? Thanks, Ga

Re: [Live-devel] Error in MPEG4VideoStreamParser::parseVideoObjectPlane()

2009-06-24 Thread Muhammad Bilal
If I use MPEG4VideoStreamDiscreteFramer instead of MPEG4VideoStreamFramer then the error is removed. But if we connect it through VLC player or Quick Time then NO VIDEO. However if we use OpenRTSP to receive stream then it works fine. Can any body explain what is lacking? On Fri, Jun 19, 2009 at 2

[Live-devel] Re : Multiple Unicast sessions for RTSP

2009-06-24 Thread Sundar R
Hi Ross, >This should work. Remember, though, to set the "reuseFirstSource" >parameter in "OnDemandServerMediaSubsession" (when you subclass it) >to true. The variable in question is definitely set to true in the OnDemandServerMediaSubsession class. I used the code as posted at http

Re: [Live-devel] Error in MPEG4VideoStreamParser::parseVideoObjectPlane()

2009-06-24 Thread Muhammad Bilal
The same error persists with "testOnDemandRTSPServer" On Fri, Jun 19, 2009 at 2:37 AM, Ross Finlayson wrote: > Hello! >> I'm trying to stream xVideo decoded video frames. I've written my own >> Video source file derived from FramedSource and I'm using >> MPEG4VideoStreamFramer and MPEG4ESVideoRTP