Re: [Live-devel] Need some members to be protected

2011-07-18 Thread Ross Finlayson
> Do you still want the "fFileSize" member variable to be "protected:" - i.e., do you want to modify its value in a subclass? Yes. Actually, I need to store the original fileName, so I created a sublass of it. But to do so, I need to set fFileSize in my constructor. OK, I'll make that chang

Re: [Live-devel] AAC live streaming

2011-07-18 Thread Ross Finlayson
Trying to use live555 to stream AAC audio. Our source Do "we" not have our own domain name? :-) is a TI dsp that does the compression from PCM source. So the output from the TI chip is the AAC pieces. I saved the AAC output from the chip to a file, test.aac, then used the testOndemandServer

Re: [Live-devel] A new server extension for streaming to iPhones and iPads

2011-07-18 Thread Ross Finlayson
Very nice feature. Question: if I wanted to extend this to use a different source (say, and MP4 file with H.264 and AAC), where would be the best place to start? The only kind of stream that will play on iPhones and iPads are MPEG Transport Streams that contain H.264 video, and AAC or MP3 au

[Live-devel] AAC live streaming

2011-07-18 Thread gather bzbz
Hi, Trying to use live555 to stream AAC audio. Our source is a TI dsp that does the compression from PCM source. So the output from the TI chip is the AAC pieces. I saved the AAC output from the chip to a file, test.aac, then used the testOndemandServer to stream it, I could receive and decode

Re: [Live-devel] A new server extension for streaming to iPhones and iPads

2011-07-18 Thread Jeremy Noring
On Sun, Jul 17, 2011 at 9:23 PM, Ross Finlayson wrote: > The latest version (2011.07.18) of the "LIVE555 Streaming Media" code > includes an experimental server extension that supports streaming media > files to iPhones and iPads, using Apple's "HTTP Live Streaming" mechanism. > Very nice feature

[Live-devel] RTSP Url Parameters And Live Vs Playback

2011-07-18 Thread Lackey, Brad
Hello, I would like to pass some parameters via the rtsp url (rtsp://x.x.x.x/?id=x&startTime=x&endTime=x), I have overridden the RTSPServer::RTSPClientSession::handleCmd_DESCRIBE method so that I can copy what I want out of the urlSuffix and then trim before calling the base's handleCmd_DESCRIB

Re: [Live-devel] testH264VideoStreamer crushes

2011-07-18 Thread Larry Cui
Works fine. -Larry -Original Message- From: live-devel-boun...@ns.live555.com [mailto:live-devel-boun...@ns.live555.com] On Behalf Of Ross Finlayson Sent: Saturday, July 16, 2011 12:22 PM To: LIVE555 Streaming Media - development & use Subject: Re: [Live-devel] testH264VideoStreamer crus

Re: [Live-devel] Need some members to be protected

2011-07-18 Thread Mojtaba Nouri
For another reason, my file is changing onlive, so I need to update its size periodically. On Mon, Jul 18, 2011 at 6:16 PM, Mojtaba Nouri wrote: > > Do you still want the "fFileSize" member variable to be "protected:" - > i.e., do you want to modify its value in a subclass? > > Yes. Actually, I

Re: [Live-devel] Need some members to be protected

2011-07-18 Thread Mojtaba Nouri
> Do you still want the "fFileSize" member variable to be "protected:" - i.e., do you want to modify its value in a subclass? Yes. Actually, I need to store the original fileName, so I created a sublass of it. But to do so, I need to set fFileSize in my constructor. ___

Re: [Live-devel] Need some members to be protected

2011-07-18 Thread Ross Finlayson
I need some private members to be protected in order to use them in my code. I appreciate if you consider applying them to the main code. In class DynamicRTSPServer, I need the constructor, destructor and function lookupServerMediaSessionv to be protected. OK, will do. In ByteStreamFileSour

[Live-devel] Need some members to be protected

2011-07-18 Thread Mojtaba Nouri
Hi Ross. I need some private members to be protected in order to use them in my code. I appreciate if you consider applying them to the main code. In class DynamicRTSPServer, I need the constructor, destructor and function lookupServerMediaSessionv to be protected. In ByteStreamFileSource, fFileSiz

[Live-devel] RTP over TCP bugs

2011-07-18 Thread Ralf Globisch
Hi Ross, Thanks for your response. >I'm not interested in any alleged server bug, unless the server is >running an up-to-date version of our software (in which case it >doesn't matter what version of our software the client is running, or >whether or not the client is using the synchronous or asy

Re: [Live-devel] RTP over TCP bugs

2011-07-18 Thread Ross Finlayson
Could you please clarify this a bit? If I understand correctly, we must therefore upgrade both our server and client code to use the latest live media version to avoid the server hanging? Or would updating the client code to use the new async RTSPClient code suffice? I'm not interested in any al