Re: [Live-devel] Live555 RTSP Server how to: Live Streaming

2012-06-15 Thread Meftah Tayeb
thank you ross, so i'm guessing i would need to declare my group of streams inside of the C code? if yes, i would try to build a xml based stream definition thank you - Original Message - From: "Ross Finlayson" To: "LIVE555 Streaming Media - development & use" Sent: Saturday, June 1

Re: [Live-devel] Live555 RTSP Server how to: Live Streaming

2012-06-15 Thread Ross Finlayson
> so, i would have to use the on demand RTSP server and not the RTSP proxy, > right? That's correct. You would build a server application that uses the "testOnDemandRTSPServer" code as a model. The "LIVE555 Proxy Server" is used only when the back-end stream is also accessible via RTSP. Ros

Re: [Live-devel] Live555 RTSP Server how to: Live Streaming

2012-06-15 Thread Meftah Tayeb
so, i would have to use the on demand RTSP server and not the RTSP proxy, right? thank you a lot - Original Message - From: "Ross Finlayson" To: "LIVE555 Streaming Media - development & use" Sent: Saturday, June 16, 2012 12:05 AM Subject: Re: [Live-devel] Live555 RTSP Server how to:

Re: [Live-devel] Live555 RTSP Server how to: Live Streaming

2012-06-15 Thread Ross Finlayson
> let me explain my topology: > i have a IPTV streams in Multicast streaming format (UDP MPEG2TS Yes, our code supports using this kind of stream as an input to a RTSP server. Note, for example, how the "testOnDemandRTSPServer" demo application does this, using the "MPEG2TransportUDPServerMedia

Re: [Live-devel] Http live Streaming

2012-06-15 Thread Ross Finlayson
> I want to stream live vdieo(HTTP live streaming) from camera to iPad using > live555. Right now this isn't possible. We currently support HTTP Live Streaming only for static Transport Stream files (that have a corresponding index file). Sorry. Ross Finlayson Live Networks, Inc. http://www.

[Live-devel] Http live Streaming

2012-06-15 Thread daniel
Hello, I want to stream live vdieo(HTTP live streaming) from camera to iPad using live555. I would like to I need to create .tsx file or just ts file? Any suggestion is welcome. Best regards, Daniel wang Software Developer Norpix Inc. ___ live-de

Re: [Live-devel] Live555 RTSP Server how to: Live Streaming

2012-06-15 Thread Meftah Tayeb
let me explain my topology: i have a IPTV streams in Multicast streaming format (UDP MPEG2TS i use FFMpeg to Transcode it to a mobile Compatible E.G: 3GP/AMR, MPEG4/AAC or something compatible with the worldwide mobile manufacturers but i want the mobile clients to use RTSP url's cause nokia mob

Re: [Live-devel] Crash for Http live Streaming

2012-06-15 Thread Meftah Tayeb
no, is not is a multicast udp and unicast http thank you - Original Message - From: "Ross Finlayson" To: "LIVE555 Streaming Media - development & use" Sent: Friday, June 15, 2012 10:15 PM Subject: Re: [Live-devel] Crash for Http live Streaming It works now but "delete clientSessio

Re: [Live-devel] Live555 RTSP Server how to: Live Streaming

2012-06-15 Thread Ross Finlayson
> please can someone show me how to use existing RTSP server to fetch an > existing stream from any kind of source, Uni or Multicast and make it RTSP > Unicast ? Is the "existing stream" also accessible via RTSP? If so, then you can simply use the "LIVE555 Proxy Server": http://www.live555.com

Re: [Live-devel] Crash for Http live Streaming

2012-06-15 Thread Ross Finlayson
> It works now but "delete clientSession" never called. Yes, the "delete clientSession" statement will get called if "afterStreaming()" gets called (i.e., streaming ends) after we've already returned from the "handleRequestBytes()" call. It just turns out that you're not encountering this sit

[Live-devel] Live555 RTSP Server how to: Live Streaming

2012-06-15 Thread Meftah Tayeb
hello people, please can someone show me how to use existing RTSP server to fetch an existing stream from any kind of source, Uni or Multicast and make it RTSP Unicast ? i want to make it mobile compatible thank you Meftah Tayeb IT Consulting http://www.tmvoip.com/ phone: +21321656139 Mobile

Re: [Live-devel] Crash for Http live Streaming

2012-06-15 Thread daniel
Hello, It works now but "delete clientSession" never called. it's destoryed in the function: RTSPServer::RTSPClientSession::handleRequestBytes(int newBytesRead) { . if (fRecursionCount > 0) closeSockets(); else delete this; } Thanks. Best regards,

Re: [Live-devel] Crash for Http live Streaming

2012-06-15 Thread Ross Finlayson
Daniel, I think I have a solution. At the end of "RTSPServerSupportingHTTPStreaming.cpp", in the "afterStreaming()" function, replace the statement delete clientSession; with: if (clientSession->fRecursionCount > 0) { clientSession->fSessionIsActive = False;

Re: [Live-devel] Crash for Http live Streaming

2012-06-15 Thread Ross Finlayson
OK, thanks. Now I understand what's happening. I'll try to come up with a fix soon, and will let you know. Stay tuned... Ross Finlayson Live Networks, Inc. http://www.live555.com/ ___ live-devel mailing list live-devel@lists.live555.com http://lists

Re: [Live-devel] Crash for Http live Streaming

2012-06-15 Thread daniel
Thank you for your response so quickly. Please see followed screenshot: RTSPServer::RTSPClientSession::handleRequestBytes() Call first. handleRequestBytes() try to call RTSPServerSupportingHTTPStreaming::RTSPClientSessionSupportingHTTPStreamin:: handleHTTPCmd_StreamingGET().

Re: [Live-devel] Still failed in receiving data via multicast

2012-06-15 Thread James Stafford
It seems that you have misunderstood what I said. My stream comes from a IP camera ("TMDXIPCAM8127J3"."DM368"), which can be chosen to send its stream via unicast or multicast. When the stream is send via unicast, all the "testRTSPClient", the "openRTSP", and the VLC Player can receive it. Bu

Re: [Live-devel] Crash for Http live Streaming

2012-06-15 Thread Ross Finlayson
Thanks for the report. Unfortunately, at first glance I don't see how the function "RTSPServer::RTSPClientSession::handleRequestBytes()" can be called after the "RTSPServerSupportingHTTPStreaming::RTSPClientSessionSupportingHTTPStreaming" object is deleted, because the destructor of the parent