Re: [Live-devel] Streaming a WAV file

2012-06-06 Thread Ross Finlayson
> I am running the OnDemandRTSPServer test application with WAV files and it > seems that the WAV file processing expects the first SubChunk of the file to > always be the “fmt “ SubChunk. This is not the case for the files I am using, > they have other SubChunks, e.g. “LIST”. > > What is the

Re: [Live-devel] Byte rate of live media server

2012-06-06 Thread Ross Finlayson
>> i was wondering how to >> find out the bit/byte rate of streaming of live media server,that i can >> print on the console??? > > If you're streaming using an RTPSink object, call its octetCount() method at > two known times. Then: > > double mbits_sent = (o2 - o1) / 1024.0 / 1024.0 /

Re: [Live-devel] Integrating live555 RTSP client

2012-06-06 Thread Constantin Savtchenko
Hi Felix, I am doing a similar project. My approach has been exactly as you described it. The documentation notes that Live555 runs in a single a thread and library calls should not be done from multiple threads, so I have the BasicTaskScheduler running in its own thread and hogging it. Jus