Re: [Live-devel] [live555] doesn't call closeSockets after teardown for rtsp over tcp

2020-02-23 Thread Ross Finlayson
I’ve just installed a new version (2020.02.24) of the code that fixes this. Ross Finlayson Live Networks, Inc. http://www.live555.com/ ___ live-devel mailing list live-devel@lists.live555.com http://lists.live555.com/mailman/listinfo/live-devel

Re: [Live-devel] Unable to stream from rtsp urls with .264 extension

2020-02-23 Thread Ross Finlayson
> On Feb 24, 2020, at 6:39 PM, Siddhant Agarwal > wrote: > > Hi, > > I am using Live555 Proxy Server for multiple RTSP urls. > > When I am proxying a URL of type rtsp://xyz/abc.264 it is showing an error. Before we try to figure out why you can’t run, we should first figure out whether or

Re: [Live-devel] [live555] doesn't call closeSockets after teardown for rtsp over tcp

2020-02-23 Thread Cihan Kömeçoğlu
Hi Qian I have faced this bug and just solved this a week ago. I commented following lines and rtsp over tcp is working as expected. clientsession and closesockets is caledd properly. void RTPInterface::clearServerRequestAlternativeByteHandler (UsageEnvironment& env, int socketNum) { //*setSe

[Live-devel] Unable to stream from rtsp urls with .264 extension

2020-02-23 Thread Siddhant Agarwal
Hi, I am using Live555 Proxy Server for multiple RTSP urls. When I am proxying a URL of type rtsp://xyz/abc.264 it is showing an error. How should I handle .264 type rtsp url live streams. Accept: application/sdp Received 81 new bytes of response data. Received a complete DESCRIBE response:

Re: [Live-devel] Streaming from a live source (camera) using H264VideoStreamFramer

2020-02-23 Thread Ross Finlayson
Thanks for the note. There are a lot of things going on here: 1/ First, note that developers (using the LIVE555 libraries) never need to concern themselves with RTP timestamps; these are only used internally, by the RTP/RTCP protocol. Our library code automatically converts between presentati

[Live-devel] [live555] doesn't call closeSockets after teardown for rtsp over tcp

2020-02-23 Thread Zhang Qian(张倩)
Hi Ross, I found for rtsp/rtp over tcp, it seems that it doesn't destrcuct RTSPClientConnection and call closeSockets to close sockets after teardown for rtsp. Is it normal? for rtsp over udp, I found it will close socket when handling handleRequestBytes(-1) in RTSPServer.cpp, but for tcp

Re: [Live-devel] RTSP GET_PARAMETER command

2020-02-23 Thread Ross Finlayson
In our RTSP client implementation (at least), “GET_PARAMETER” and “SET_PARAMETER” can be sent only after a RTSP session has been established - i.e., only after we’ve received a response to the first “SETUP”. Ross Finlayson Live Networks, Inc. http://www.live555.com/ __

[Live-devel] Streaming from a live source (camera) using H264VideoStreamFramer

2020-02-23 Thread Micha Kalfon
I am experiencing an issue when streaming from a live camera source to a client over a proxy server. My current setup is the following: [Live555 camera server] <-> [Live555 Proxy server] <-> [Client (vlc)] I register a media session in the proxy. Later, the client will connect to that session v

[Live-devel] RTSP GET_PARAMETER command

2020-02-23 Thread Prager, Michal
Hi, I would like to send a GET_PARAMETER command without a session parameter (like DESCRIBE command). I see that RTSPServer has the following API: virtual void handleCmd_GET_PARAMETER(char const* fullRequestStr) But I don't know how to use it on the RTSPClient side which has only: unsigned send