[Live-devel] newbie: several questions about openrtsp

2013-05-16 Thread Anthony Griffiths
I'm running centos 5 server - command line only hi all, newbie here, firstly to my surprise openRTSP actually worked without too much hassle but did throw up a couple of problems. This is the command that works with my axis 207MW network camera: openRTSP -d 20 rtsp://@/mpeg4/media.amp The 20-second

Re: [Live-devel] SDP - trouble separating audio/video tracks

2013-05-16 Thread Ross Finlayson
As a RTSP client, you can ask to stream just a single track, but *not* by specifying the track in the URL that you give to the RTSP "DESCRIBE" command. (That URL must be one that represents the entire stream - i.e., in your example: "rtsp://192.168.1.123/mpeg4" ) Instead, the way you specify

Re: [Live-devel] SDP first line is skipped

2013-05-16 Thread Ross Finlayson
> I think MediaSession::initializeWithSDP() is not parsing first SDP line > (which is usually v=0, though unused). No, that is incorrect. The existing code works correctly, parsing all SDP lines. You're on a 'wild goose chase'. Ross Finlayson Live Networks, Inc. http://www.live555.com/

[Live-devel] SDP - trouble separating audio/video tracks

2013-05-16 Thread Terrance Medina
I'm streaming audio/video from an IP camera through VLC as the client. I have no documentation on the camera. I need to use rtsp to stream the audio and video channels separately, but I can't seem to get it to work here. Also, from the SDP message it appears to use Live555 v2009.09.28 as its rts

[Live-devel] SDP first line is skipped

2013-05-16 Thread Eric HEURTEL
Hi, I think MediaSession::initializeWithSDP() is not parsing first SDP line (which is usually v=0, though unused). I've corrected it as follow: // Begin by processing all SDP lines until we see the first "m=" char const* sdpLine; char const* nextSDPLine = sdpDescription; while (1) {

Re: [Live-devel] Streaming H.264 Movie via RTP

2013-05-16 Thread Ross Finlayson
> When I run the testOnDemandRTSPServer and run the play RTSP url of the H.264 > video in vlc 2.0.5 it works just fine (unsurprisingly). But for my > application I need to use RTP, not RTSP. > What do I need to do in order for the live to stream RTP? You are streaming "RTP" no matter what. "RTS

Re: [Live-devel] Streaming H.264 Movie via RTP

2013-05-16 Thread Alex Shihmanter
Sorry about that J When I run the testOnDemandRTSPServer and run the play RTSP url of the H.264 video in vlc 2.0.5 it works just fine (unsurprisingly). But for my application I need to use RTP, not RTSP. What do I need to do in order for the live to stream RTP? From: live-devel-boun...@ns.li