Re: [Live-devel] RTSP over HTTP on localhost only possible?

2024-07-03 Thread Jörg Dommaschk via live-devel
ay, July 3, 2024 2:06:36 PM Subject: Re: [Live-devel] RTSP over HTTP on localhost only possible? > On Jul 2, 2024, at 8:44 PM, Jörg Dommaschk via live-devel > wrote: > > Is there a way to make the live555 RTSP server only listen on localhost for > the RTSP-over-HTTP port? The

Re: [Live-devel] RTSP over HTTP on localhost only possible?

2024-07-02 Thread Ross Finlayson
> On Jul 2, 2024, at 8:44 PM, Jörg Dommaschk via live-devel > wrote: > > Is there a way to make the live555 RTSP server only listen on localhost for > the RTSP-over-HTTP port? The following code *might* work (although I can’t guarantee it): ipv4AddressBits ReceivingInterfaceAddr_sav

[Live-devel] RTSP over HTTP on localhost only possible?

2024-07-02 Thread Jörg Dommaschk via live-devel
--- Begin Message --- Hi, I am using live555 to provide an RTSP stream on an IP camera. This works great. Now I was tasked to also provide tunneling over HTTP, so I was very happy when I learnt that live555 already has this covered by simply calling RTSPServer::setUpTunnelingOverHTTP. This als

Re: [Live-devel] RTSP-over-HTTP tunneling failed with version v2016.11.17

2016-11-28 Thread Ross Finlayson
Thanks for the note. The problem was the line "Connection: close” in the server’s response to the HTTP “GET” command. Earlier this year, we changed our RTSP client code to tear down (reset) our TCP connections whenever we see such a response. But that doesn’t make sense when we’re doing RTSP-

Re: [Live-devel] RTSP over HTTP in URL

2013-10-22 Thread Ross Finlayson
> By now selecting RTSP over http in the RTSP client need to specify the port > in its constructor and it works fine. > > In such a situation the port specified in the URL is ignored. That's correct. > I wondering whether it could be more convenient to select the HTTP tunneling > through th

[Live-devel] RTSP over HTTP in URL

2013-10-22 Thread PROMONET Michel
Hi Ross, By now selecting RTSP over http in the RTSP client need to specify the port in its constructor and it works fine. In such a situation the port specified in the URL is ignored. I wondering whether it could be more convenient to select the HTTP tunneling through the URL and

[Live-devel] rtsp over http tunnelling option conformation

2013-01-10 Thread kriti singhal
Hello Ross sir i saw an rtsp over http tunnelling option in your programs i just want to know that how can we conform that the stream we asre receiving is rtsp over http one of my way is that we know rtsp packet size is 1328 and if it is ovet tcp thaen it should be 1332(4 bytes of tcp header). Is

Re: [Live-devel] rtsp over http tunneling

2012-06-21 Thread Ross Finlayson
What I think you're complaining about (although I'm not certain, because your message is not very coherent) is the fact that if you terminate (-C) a server, and then try to restart it very shortly thereafter, you will sometimes find that the port number(s) that the server was using are still una

Re: [Live-devel] RTSP over HTTP using VLC

2010-12-23 Thread Ross Finlayson
I am using live.2010.12.14.tar.gz release which supports RTSP over HTTP. I am able to make use of RTSP over HTTP using the test application - openRTSP. Please tell me how to do the same using VLC ? VLC is not our application (although it does use our libraries), so your question is better sui

[Live-devel] RTSP over HTTP using VLC

2010-12-23 Thread anees k A
Hi, I am using live.2010.12.14.tar.gz release which supports RTSP over HTTP. I am able to make use of RTSP over HTTP using the test application - openRTSP. Please tell me how to do the same using VLC ? Any pointers are highly appreciated. Regards Anees K A _

Re: [Live-devel] RTSP-over-HTTP problems

2010-11-04 Thread Ross Finlayson
Kamil, Thanks for providing access to a server that illustrates the problem. I have now installed a new version (2010.11.04) of the "LIVE555 Streaming Media" code that fixes this problem (in "RTSPClient"). -- Ross Finlayson Live Networks, Inc. http://www.live555.com/ _

Re: [Live-devel] RTSP-over-HTTP problems

2010-11-04 Thread Ross Finlayson
I have problems with RTSP over HTTP. OpenRTSP still fails to connect to the server ( network camera ) when authorization is required. This happens only when I use latest library versions, older ones like 'live.2010.01.22` are working perfectly in each case. No. That version of the library wor

[Live-devel] RTSP-over-HTTP problems

2010-11-04 Thread Kamil Dobkowski
Hi, I have problems with RTSP over HTTP. OpenRTSP still fails to connect to the server ( network camera ) when authorization is required. This happens only when I use latest library versions, older ones like 'live.2010.01.22` are working perfectly in each case. The only difference I found is t

Re: [Live-devel] RTSP-over-HTTP question

2010-10-22 Thread Ross Finlayson
No, the problem is that the server is completely ignoring the resending of the HTTP "GET" command Yes, the server ignores this request but it does it because it is closing a connection. The server can't be closing the connection, otherwise it would never be able to stream back data to the cl

Re: [Live-devel] RTSP-over-HTTP question

2010-10-22 Thread Kamil Dobkowski
No, the problem is that the server is completely ignoring the resending of the HTTP "GET" command Yes, the server ignores this request but it does it because it is closing a connection. I tried `live.2010.01.22` and it is working fine with this server - it doesn't try to send a second request

Re: [Live-devel] RTSP-over-HTTP question

2010-10-22 Thread Ross Finlayson
and that's all ... I see no other requests sent to the server. I think the problem is beacause this server does not immediately close its connection after http reply, so client is able to send a repeated request during the same connection but it is ignored by the server. No, the problem is th

Re: [Live-devel] RTSP-over-HTTP question

2010-10-20 Thread Ross Finlayson
I have problems connecting to RTSP server with HTTP tunneling. My server closes connection immediately after the first HTTP GET request fails with `HTTP/1.0 401 Unauthorized` error, so there is no second chance to send authentication credentials in the next requests. I presume that you are ta

[Live-devel] RTSP-over-HTTP question

2010-10-20 Thread Kamil Dobkowski
Hi, I have problems connecting to RTSP server with HTTP tunneling. My server closes connection immediately after the first HTTP GET request fails with `HTTP/1.0 401 Unauthorized` error, so there is no second chance to send authentication credentials in the next requests. I have a question: Is

Re: [Live-devel] RTSP-over-HTTP and inconsistent SETUP requests.

2010-10-20 Thread Cristiano Belloni
Il 20/10/2010 10:34, Ross Finlayson ha scritto: OK, I've now installed a new version (2010.10.20) of the software that makes the "RTSP-over-HTTP tunneling" implementation more robust to the client bugs that you noted. Please try it out and let us know if there are any problems. Works like a

Re: [Live-devel] RTSP-over-HTTP and inconsistent SETUP requests.

2010-10-20 Thread Ross Finlayson
OK, I've now installed a new version (2010.10.20) of the software that makes the "RTSP-over-HTTP tunneling" implementation more robust to the client bugs that you noted. Please try it out and let us know if there are any problems. -- Ross Finlayson Live Networks, Inc. http://www.live555.com/

Re: [Live-devel] RTSP-over-HTTP and inconsistent SETUP requests.

2010-10-20 Thread Cristiano Belloni
Il 20/10/2010 03:40, Ross Finlayson ha scritto: (As there's no RFC on RTSP over HTTP, as far as I know, I use this document as a reference: http://developer.apple.com/quicktime/icefloe/dispatch028.html FYI, another document - with a little more detail - is here: http://images.apple.com/br/qu

Re: [Live-devel] RTSP-over-HTTP and inconsistent SETUP requests.

2010-10-19 Thread Ross Finlayson
(As there's no RFC on RTSP over HTTP, as far as I know, I use this document as a reference: http://developer.apple.com/quicktime/icefloe/dispatch028.html FYI, another document - with a little more detail - is here: http://images.ap

[Live-devel] RTSP-over-HTTP and inconsistent SETUP requests.

2010-10-19 Thread Cristiano Belloni
Dear Ross, I'm trying to use RTSP-over-HTTP support on server, and it works flawlessly. Unfortunately, software vendors (Milestone, this time) seem not to get it right, so I have two question, one more irrelevant, the other more serious. 1) Milestone doesn't send us "Accept:" or "Content-Ty

Re: [Live-devel] RTSP over HTTP patch

2010-06-02 Thread Ross Finlayson
It seems that RTSP over HTTP support was broken in the May 29 release. This patch fixes it: Thanks. For some strange reason, RTSP-over-HTTP worked OK when I tested it; however, your patch makes the code more consistent with the previous code, so I'll include it in the next release of the so

[Live-devel] RTSP over HTTP patch

2010-06-01 Thread Doug Porter
It seems that RTSP over HTTP support was broken in the May 29 release. This patch fixes it: diff -Naur live.orig/liveMedia/RTSPClient.cpp live/liveMedia/RTSPClient.cpp --- live.orig/liveMedia/RTSPClient.cpp 2010-05-29 22:20:31.0 + +++ live/liveMedia/RTSPClient.cpp 2010-06-01

Re: [Live-devel] RTSP over Http

2009-09-24 Thread Ross Finlayson
Do live555 support the RTSP over Http?? Yes. For RTSP clients, it is fully implemented; note the "tunnelOverHTTPPortNum" parameter to "RTSPClient::createNew()". For RTSP servers it is not yet fully implemented, but will be in the future. -- Ross Finlayson Live Networks, Inc. ht

[Live-devel] RTSP over Http

2009-09-24 Thread cybercockroach
Dear experts: Do live555 support the RTSP over Http?? If yes, how can I do? Any hints? if no, is there any workaround to accomplishment this?? Thanks for your reply ___ live-devel mailing list live-devel@lists.live

Re: [Live-devel] RTSP-over-HTTP on the server side.

2008-08-28 Thread Ross Finlayson
I'm just wondering what is the current status of RTSP-over-HTTP implementation on the Live555 Streaming server. It's partially implemented, but not all there yet. -- Ross Finlayson Live Networks, Inc. http://www.live555.com/ ___ live-devel mailing lis

[Live-devel] RTSP-over-HTTP on the server side.

2008-08-28 Thread Ken Seo
Hi Ross, I'm just wondering what is the current status of RTSP-over-HTTP implementation on the Live555 Streaming server. The only information I see, is the following comment found in "live555MediaServer.cpp" #if 0 // RTSP-over-HTTP tunneling is not yet working // Also, attempt to create a HTTP

Re: [Live-devel] RTSP over HTTP ?

2008-07-25 Thread Ross Finlayson
Judging by what your IP camera sent, it is not using RTSP in any standard way, so it is unlikely that our software will be able to communicate with it. However, have you just tried running "openRTSP" with the "-T " option, as described in the online documentation? If that doesn't work, then y

[Live-devel] RTSP over HTTP ?

2008-07-25 Thread J T
Dear All, I would like to use live555 to capture the Video stream from a IP camera. I can use IE to get the video stream from the IP camera. But I find there are 3 HTTP sessions between IE and IP Camera. I would like to use openRTSP on it, but how to separate 3 different sessions by openRTSP ?