[Live-devel] RTP URL question

2012-11-19 Thread Menne, Neil
Hello, all I have a quick question. I'm looking to add the capability of adding an RTP stream that is specified only by a URL of the form "rtp://:" This is an add on to an existing video widget. I have also seen examples where people specify the URL as "rtp://@:" Is this possible with Live555?

Re: [Live-devel] SDP Question

2012-01-18 Thread Menne, Neil
I just realized what the issue was. In this particular case, the SDP file is used to receive an old RTSP stream that is being looped via sending a pcap of the video. Seeing as there is no RTSP server to communicate with, that part isn't used but everything else regarding the session, subsession,

[Live-devel] SDP Question

2012-01-17 Thread Menne, Neil
I'm trying to add the functionality of opening a video stream given an SDP file like the one included. Given that there's no URL, it doesn't seem possible to parse it for the RTSP URL then initialize the RTSPClient; however, if you look at the SDP file, there isn't a URL to find. Is there a way

Re: [Live-devel] "no frame!"

2012-01-13 Thread Menne, Neil
live-devel-boun...@ns.live555.com [mailto:live-devel-boun...@ns.live555.com] On Behalf Of Menne, Neil Sent: Wednesday, January 11, 2012 4:54 PM To: live-devel@lists.live555.com Subject: [Live-devel] "no frame!" I'm working on my Live555/FFmpeg video player, and I ran into an interestin

Re: [Live-devel] "no frame!"

2012-01-13 Thread Menne, Neil
few years ago, and I found it can be handled nicely with a reduced amount of code around avcodec_decode_video. I suggest you to have a look on AVCodecParserContext for this matter. If you're still stuck, I can even provide you a code sample. Regards, Guillaume. Le Wed, 11 Jan 2012 23:53:40 +0

[Live-devel] "no frame!"

2012-01-11 Thread Menne, Neil
I'm working on my Live555/FFmpeg video player, and I ran into an interesting problem that has kept me stumped for several days. I am taking the buffer that is delivered to my MediaSink (like the example in testRTSPClient), and I am passing the buffer and the size to FFmpeg to decode. It says tha

[Live-devel] Buffer Question

2011-12-22 Thread Menne, Neil
I'm working on updating a couple video widgets for my project; and it seems like Live555 is much more robust for all things RTP/RTSP which is how I get most of my video. I'm trying to forward this on to FFmpeg for decoding. I just finished updating the FFmpeg layer to permit this behavior, and n