Re: [Live-devel] LIVE555 Media Server

2011-03-17 Thread Ross Finlayson
VLC can't produce good RTSP output VLC relies on Live555 to do RTSP FYI, VLC uses the "LIVE555 Streaming Media" code only when it's a RTSP *client*. Its RTSP server implementation uses its own, built-in server code. -- Ross Finlayson Live Networks, Inc. http://www.live555.com/ ___

Re: [Live-devel] LIVE555 Media Server

2011-03-17 Thread Warren Young
On 3/16/2011 6:56 AM, Jobe Lawn wrote: well,, I'm just plain user not a coder, Live555 is a C++ code library first and foremost. I was wondering if there is some commandLine params to alter the behivour... Nope. live555MediaServer totally ignores parameters passed on the command line cur

Re: [Live-devel] streaming live H263 video

2011-03-17 Thread Ross Finlayson
I made some progress with the DeviceSource but run into the following problem: Everything seems to be working if in doGetNextFrame() there is a new encoded data that is fed to H263plusVideoRTPSink. But, once there is no data available, then isCurrentlyAwaitingData() always returns FALSE. Tha

Re: [Live-devel] Replacing reading from file by reading from buffer

2011-03-17 Thread Ross Finlayson
Is imperative have the line "env->taskScheduler().doEventLoop();" enabled to keep server streaming? Yes! LIVE555 applications use an event loop, and operate in response to events that are handled within the loop. To write such an application, you need to be familiar with the concept of event

Re: [Live-devel] Replacing reading from file by reading from buffer

2011-03-17 Thread Ross Finlayson
I notice the server reads from a open (by fopen) file and i think i should change this to read direct from the buffers my sender thread constanlty receives. I'm right?? Yes, that should work. As I said before, see http://www.live555.com/liveMedia/faq.html#liveInput for guidance. -- Ross F