Re: [Live-devel] Framer/Parser Implementation problem

2008-11-02 Thread Yedidia Amit
thanks Regards, Amit Yedidia Elbit System Ltd. Email: [EMAIL PROTECTED] Tel: 972-4-8318905 -- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Ross Finlayson Sent: M

Re: [Live-devel] Framer/Parser Implementation problem

2008-11-02 Thread Ross Finlayson
My problem is the following: ByteStreamFileSource needs that H264VideoStreamFramer to have a parser. The parser object should parse byte after byte and deliver complete Nals to the framer. However since my Device source is already sending Nals using send(), I just need to do recv() to receive

[Live-devel] Framer/Parser Implementation problem

2008-11-02 Thread Yedidia Amit
Hi Ross,All. I want to implement H264VideoStreamFramer to delievr H264 Nals. I also want that the same framer will be used no matter if the source ByteStreamFileSource or DeviceSource. I implemented my device source as a readable socket which the encoder send nal after nal into it. (I am receivin

Re: [Live-devel] Problem with openRTSP

2008-11-02 Thread Ross Finlayson
But how can I do relayng of real time stream (audio and video, not elementary stream) using live555? You can do this *only if* your 'real time stream' is in one of the input media formats that we currently support - i.e., an audio or video elementary stream, a MPEG Program Stream, or a MPEG Tr

Re: [Live-devel] live in VoIP

2008-11-02 Thread Ross Finlayson
1. How can I receive the sender IP Our RTP receiving code does not expose this - but you don't need it. Instead, to identify the media source, you want the RTP "SSRC" , which can be obtained by calling "RTPSource::lastReceivedSSRC()". (I need to tell between the senders to the same mul

[Live-devel] Problem with openRTSP

2008-11-02 Thread Antonella Rizzo
Hi Ross, thanks for your answers! But how can I do relayng of real time stream (audio and video, not elementary stream) using live555? Best Regards ___ live-devel mailing list live-devel@lists.live555.com http://lists.live555.com/mailman/listinfo/live-

[Live-devel] live in VoIP

2008-11-02 Thread Stas Desyatnlkov
Hi All, I have a g.729 sink class based on MediaSink. 1) How can I receive the sender IP (I need to tell between the senders to the same multicast address)? 2) I'd also like to receive the sequence number and CSRC identifier at the sink level. Any ideas? __

Re: [Live-devel] Problem with openRTSP

2008-11-02 Thread Ross Finlayson
I must real time stream an MPEG1or2AudioVideo or an H.264 (video) with MP4(audio). So, it isn't an elementary stream. Because of this, you won't be able to pipe the output of "openRTSP" into a RTSP server. Sorry. -- Ross Finlayson Live Networks, Inc. http://www.live555.com/

Re: [Live-devel] Problem with openRTSP

2008-11-02 Thread Antonella Rizzo
Hi Ross, I must real time stream an MPEG1or2AudioVideo or an H.264 (video) with MP4(audio). So, it isn't an elementary stream. I want have an output url rtsp://myIp:myPort/namesession because I want provide the real time stream on demand! My input is rtsp://sourceIP:sourcePort/namesession! I m

Re: [Live-devel] Problem with openRTSP

2008-11-02 Thread Antonella Rizzo
Hi Ross, Thanks for your answer. 1) yes the url of rtsp stream works from vlc or quicktime; 2) Yes, I use ctrl+c to kill the process. Then, the problem is ctrl+c. But If I want relay a real time stream, can I output openRTSP to testOnDemandRTSPServer (for example with a pipe)? We works on this i

Re: [Live-devel] Problem with openRTSP

2008-11-02 Thread Ross Finlayson
2) Yes, I use ctrl+c to kill the process. Then, the problem is ctrl+c. Yes - don't do this! If you are outputting a ".avi", ".mov", or ".mp4" file, you must terminate "openRTSP" by signalling it with SIGHUP or SIGUSR1, or else waiting for "openRTSP" to complete on its own. But If I want