Re: [Live-devel] SDP file

2015-02-10 Thread Ross Finlayson
> I can generate a RTP h.264 video stream (using gstreamer) and have the > description of that stream in client.sdp. If I use vlc I can view the video > just fine. ex. vlc client.sdp. > > I would like to perform the same function in my application using live555. > > What are the necessary step

[Live-devel] SDP file

2015-02-09 Thread Jeff Lancaster
I can generate a RTP h.264 video stream (using gstreamer) and have the description of that stream in client.sdp. If I use vlc I can view the video just fine. ex. vlc client.sdp. I would like to perform the same function in my application using live555. What are the necessary steps to do so?

Re: [Live-devel] SDP File streaming

2014-01-28 Thread Ross Finlayson
> Ok, let me explain: > let's say, i have a H.264 (MKV) movie > i want to multicast it using ffmpeg > but in rtp format > after the multicasting started, the FFMpeg will provide a sdp output like i > posted befaure > we save this sdp file and give it to vlc, it'lle play it > what i want is to put

Re: [Live-devel] SDP File streaming

2014-01-25 Thread Tayeb Meftah
yson To: LIVE555 Streaming Media - development & use Sent: Saturday, January 25, 2014 5:24 AM Subject: Re: [Live-devel] SDP File streaming I don't understand your question - but I'm quite sure that the answer is "no". Ross Finlayson Live Netwo

Re: [Live-devel] SDP File streaming

2014-01-24 Thread Ross Finlayson
I don't understand your question - but I'm quite sure that the answer is "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-devel

[Live-devel] SDP File streaming

2014-01-24 Thread Tayeb Meftah
Hello Ross, i have a multicast streams (24) it's pocible to receive the SDP file that i created from sap (using sapWatch) using live555MediaServer? i tryed, but got 404 not found i think this can be easy for creating playlist & simplifying Multicast access thank, Tayeb Meftah Voice of the blin

Re: [Live-devel] SDP File distribution over Live555 RTSP Server

2013-12-23 Thread Ross Finlayson
> it's legal (technicaly) to distribute SDP files using Live555 RTSP Server and > not (MEDIA) files? Sorry, but I don't understand your question. The "LIVE555 Media Server" does not 'distribute files'. It returns a SDP description - in response to a RTSP "DESCRIBE" command. But what was your

[Live-devel] SDP File distribution over Live555 RTSP Server

2013-12-18 Thread Tayeb Meftah
Hello, it's legal (technicaly) to distribute SDP files using Live555 RTSP Server and not (MEDIA) files? the sdp file may contain a multicast or a unicast path to another rtp stream thank Tayeb Meftah Voice of the blind T Broadcast Freedom http://www.vobradio.org Phone:447559762242_

Re: [Live-devel] SDP file access

2012-05-01 Thread Ross Finlayson
> Please guide me how to call .sdp sample files in a test program given in > testprogs folder. Each ".sdp" file contains a SDP descriptions for the multicast streams that's sent by the corresponding "test*Streamer" demo application. For example, the file "testMPEG2Transport.sdp" contains a SDP

[Live-devel] SDP file access

2012-05-01 Thread Vinay Tyagi
Hi,   Please guide me how to call .sdp sample files in a test program given in testprogs folder.   Regards, Vinay___ live-devel mailing list live-devel@lists.live555.com http://lists.live555.com/mailman/listinfo/live-devel

Re: [Live-devel] SDP file format

2007-08-28 Thread Ross Finlayson
> > If your server doesn't support RTSP, then you will need to change >it to stream via multicast, and generate >> a new SDP description that contains the IP multicast address in >>the "c=" line. > >Why it is required of the "c=" line again? Because otherwise the receiver(s) have no way of kno

[Live-devel] SDP file format

2007-08-28 Thread hong liu
Thanks Ross for your prompt reply! > It wasn't clear to me from your description exactly how you are transmitting > the stream that you are trying > to receive/play, but if you want to receive/play a stream using only a SDP > description, then the stream must > be multicast, not unicast. I.e.,

[Live-devel] sdp file format

2007-08-28 Thread hong liu
Thanks Ross. The line of "c=IN IP4 0.0.0.0" Got a little couch potato? Check out fun summer activities for kids. http://search.yahoo.com/search?fr=oni_on_mail&p=summer+activities+for+kids&cs=bz

Re: [Live-devel] sdp file format

2007-08-28 Thread Ross Finlayson
It wasn't clear to me from your description exactly how you are transmitting the stream that you are trying to receive/play, but if you want to receive/play a stream using only a SDP description, then the stream must be multicast, not unicast. I.e., the following line in the SDP description is

[Live-devel] sdp file format

2007-08-28 Thread hong liu
I normally use MP4Box from GPAC to generate a sdp file. Now I have hinted a mp4 file from a h264 video file and created a sdp file from it. Here is the sdp file content: -- * File SDP content * b=AS:136 a=x-copyright: MP4/3GP File hinted with GPAC 0.4.3-DEV (C)2000-2005

Re: [Live-devel] SDP file of a multiple destination session

2007-07-12 Thread Ramon Martin de Pozuelo Genis
> Again, it sounds like you're trying to reinvent the wheel. The > "OnDemandServerMediaSubsession" class works just fine - you should > just use it (by defining your own subclass). Note the several > examples in the code. You should be using "testOnDemandRTSPServer" - > not "testMPEG4VideoStream

Re: [Live-devel] SDP file of a multiple destination session

2007-07-12 Thread Ross Finlayson
Again, it sounds like you're trying to reinvent the wheel. The "OnDemandServerMediaSubsession" class works just fine - you should just use it (by defining your own subclass). Note the several examples in the code. You should be using "testOnDemandRTSPServer" - not "testMPEG4VideoStreamer" -

Re: [Live-devel] SDP file of a multiple destination session

2007-07-12 Thread Ramon Martin de Pozuelo Genis
Sorry, I forgot ask you about SDP file. Now address is correct (0.0.0.0) but what about port? "m" line of SDP is still using port I specified when I create groupsock, could I change it? Should I change it? If the first description is sending broadcast in te same port it will cause a problem. Thank

Re: [Live-devel] SDP file of a multiple destination session

2007-07-12 Thread Ramon Martin de Pozuelo Genis
> You probably shouldn't be using "addDestination()" - that is a > specialized function used only to implement on-demend unicast > streaming to multiple clients from a single source. (Note that, for > unicast on-demand streams, the SDP description should contain the > special address 0.0.0.0, not

Re: [Live-devel] SDP file of a multiple destination session

2007-07-12 Thread Ross Finlayson
You probably shouldn't be using "addDestination()" - that is a specialized function used only to implement on-demend unicast streaming to multiple clients from a single source. (Note that, for unicast on-demand streams, the SDP description should contain the special address 0.0.0.0, not a spec

[Live-devel] SDP file of a multiple destination session

2007-07-12 Thread Ramon Martin de Pozuelo Genis
Hi all, I created a session with its respective rtpGroupsock & rtcpGroupsock and then I added another destination using: rtpPort= new Port(newPort); rtcpPort= new Port(newPort+1); destinationAddress.s_addr = inet_addr((char*)newIP); rtpGroupsock->addDestination(destinationAddress,*rtpPort); rtcpGr