[Live-devel] FW: issue in live555 proxyserver

2012-07-02 Thread Aashish Kaushik
hi Ross, Thank you very much for the quick responses, coming to point playing streaming directly I don't see any problem but I when using proxy in between then I could see this problem, meanwhile I will try with quick player and let you, it may be true that VLC might be giving problem. Thanks,

Re: [Live-devel] RTSP connection management issue

2012-07-02 Thread Ross Finlayson
> Do you consider this to be a bug? Well, because the server doesn't properly handle client behavior that's legal, then I suppose you could consider this to be a bug, yes. Unfortunately, fixing this is going to be non-trivial, so it may take a while... > If it helps, I could send you the pytho

Re: [Live-devel] Set ProxyServerMediaSession::fProxyRTSPClient as protected

2012-07-02 Thread Ross Finlayson
OK, I've now installed a new version (2012.07.03) of the code that does the following: - The definition of "ProxyRTSPClient" is now publicly accessible, in the "ProxyServerMediaSession.hh" header file - so you can subclass it if you wish. - "ProxyServerMediaSession" now has a new virtual function

[Live-devel] RTSP connection management issue

2012-07-02 Thread Ralf Globisch
Hi Ross, If an RTSP request belonging to an established session is sent over a new TCP connection, the server seems to respond with a "405 Method Not Allowed". According to the RFC, RTSP requests can be transmitted in several different ways including one connection per request/response transa

Re: [Live-devel] Trick Play and the Live 555 Server

2012-07-02 Thread Ross Finlayson
> I am writing a proxy for VOD servers. I am using the Live 555 server for > testing. The version I have is about 1 year old. How can I tell, from the > source code, what version I have? See http://www.live555.com/liveMedia/faq.html#latest-version As noted in the FAQ, only the latest version

[Live-devel] Trick Play and the Live 555 Server

2012-07-02 Thread Michael L. Boom
I am writing a proxy for VOD servers. I am using the Live 555 server for testing. The version I have is about 1 year old. How can I tell, from the source code, what version I have? If I say play range npt=30-60 at scale 1 it works. If I say play range npt=30-60 at scale 2 it goes way beyond

Re: [Live-devel] Set ProxyServerMediaSession::fProxyRTSPClient as protected

2012-07-02 Thread Jesús Leganés
>> Yes, but note that the existing "ProxyServerMediaSession" constructor >> already initializes the "fProxyRTSPClient" field (to a new "ProxyRTSPClient" >> object), so you'll need to delete this (using "Medium::close()") first, >> before assigning your new "ProxyRTSPClient" subclass object. >> > Oh

Re: [Live-devel] About the H264 over RTP FA

2012-07-02 Thread Ross Finlayson
I find your message confusing, because here you're talking about transmitting H.264 over RTP: > First thank you give the guide line on how to let Live555 to take input from > a live source (H264 pictures over RTP) > http://www.live555.com/liveMedia/faq.html#liveInput-unicast. But here you're t

[Live-devel] About the H264 over RTP FA

2012-07-02 Thread Chai, Zheng (Ajax)
Dear Live555 DEV, First thank you give the guide line on how to let Live555 to take input from a live source (H264 pictures over RTP) http://www.live555.com/liveMedia/faq.html#liveInput-unicast. I followed this guideline and made it successfully to receive the H264/RTP Live Stream from a live s

Re: [Live-devel] Is there something like WindowsUsageEnvironment?

2012-07-02 Thread Naresh Sankapelly
You could use VLC. Thanks Naresh Ph. 8884199804 -Original Message- From: live-devel-boun...@ns.live555.com [mailto:live-devel-boun...@ns.live555.com] On Behalf Of Bruno Babic Sent: Monday, July 02, 2012 2:05 PM To: LIVE555 Streaming Media - development & use Subject: [Live-devel] Is ther

[Live-devel] Is there something like WindowsUsageEnvironment?

2012-07-02 Thread Bruno Babic
Hi! What would be the best way to get openRTSP client to run as a GUI tool under Windows? Should I try to create something like WindowsUsageEnvironment to handle Windows message pool? Has anyone already did anything like that? -- 2b||!2b? ___ live-d

Re: [Live-devel] Set ProxyServerMediaSession::fProxyRTSPClient as protected

2012-07-02 Thread Jesús Leganés
> So if you want to detect/log every client connection (etc.) to the proxy > server, then you would not modify (or subclass) the "Proxy*" code at all. > Instead, you would subclass "RTSPServer" and > "RTSPServer::RTSPClientSession", and reimplement the "handleCmd_SETUP()" > (etc.) virtual functions

Re: [Live-devel] Question about proxyserver.

2012-07-02 Thread Ross Finlayson
> Forward / Backward random seeking is supported in LIVE555 Proxy server? No, it's not - because the purpose of the "LIVE555 Proxy Server" is to share a single 'back-end' stream amongst possibly several concurrent 'front-end' streams. If you want to seek within a RTSP stream, then don't proxy i

[Live-devel] Question about proxyserver.

2012-07-02 Thread jhseo
Hi. Forward / Backward random seeking is supported in LIVE555 Proxy server? In my case,, Seeking bar is activated by modifying the "virtual float duration( ) const; however, the command of client( "PAUSE" or "PLAY") did not send to back-end LIVE555 Server. To do this, what shall I mod