Re: [Live-devel] LIVE555 Media Server choose IP to listen on

2012-03-28 Thread Ross Finlayson
The most reliable way to set the IP address that the server uses is to first configure your OS so that that interface the one that's used for multicast routing; i.e., the one that has a route for 224.0.0.0/4 In software, you could also try changing the IP address by first assigning the global v

[Live-devel] LIVE555 Media Server choose IP to listen on

2012-03-28 Thread Junaid Ebrahim
Hi It would be great if it was possible to allow a user to select the ip that the server should listen on (maybe set it as an optional command line argument). I have multiple network devices and would like to change this to test streaming on any one of them. Where in the source code would I

[Live-devel] Heap corruption

2012-03-28 Thread Tarun Batra
i ran the RTSPserverSupportingHttpStreaming file using live555 media server,when i opened the url .i.e. http://url:portno/filename i got an error in memcpy.asm that is Unhandled exception at 0x1027ceb7 (msvcr100d.dll) in http2.exe: 0xC005: Access violation reading location 0xfeeefef2. and a

Re: [Live-devel] Possible missing parameter in MPEG4ESVideoRTPSink::auxSDPLine()

2012-03-28 Thread Ross Finlayson
The problem with MPEG-4 (and H.264) video is that - to properly serve the stream - you need (in the stream's SDP description) certain 'configuration' parameters. Often, these configuration parameters can be obtained only by reading the stream itself. In this case, we have a 'chicken and egg' p

[Live-devel] Possible missing parameter in MPEG4ESVideoRTPSink::auxSDPLine()

2012-03-28 Thread Shaheed Abdol
Good afternoon, I have hit an interesting obstacle while streaming RTSP video data from a live source. I am using the openRTSP client to retreive data from a testOnDemandRTSPServer, which I have added a new OnDemandServerMediaSubsession type to, named OnDemandVideoInputSubsession. I am streaming

Re: [Live-devel] Easiest way to implement custom RTSP messages?

2012-03-28 Thread Ross Finlayson
> Thank you for the promptly reply, however you didn't quite answer my question > which was "What is the best way to implement custom RTSP messages?" This is not something that's supported in the code. You *might* be able to get this to work, however, by subclassing "RTSPServer", and reimplemen

Re: [Live-devel] Easiest way to implement custom RTSP messages?

2012-03-28 Thread Aleksandar Milenkovic
RTSP is not the protocol to use for this (because there's nothing defined in the RTSP protocol standard for doing this, an any>>'custom' RTSP command that you'd implement would be incompatible with all of the other clients and servers out there). What you want, instead, is a regular web page th