Re: [Live-devel] Why the RTP receiving stops?

2009-08-06 Thread Ross Finlayson
I wrote my own RTSP client. Why not first use someone else's RTSP client - i.e., one that you know already works - to try to receive a stream from your server? I.e., try using "openRTSP" or "VLC". If those work, but your client doesn't, then the problem is with your client. If those don't w

Re: [Live-devel] Regarding H.264 support

2009-08-06 Thread Ross Finlayson
I am creating a RTSP Client application that supports viewing of H.264 video data. I want to test whether my application is recieving the data correctly or not, but for that LIVE 555 test progs doesnt have any h.264 streamer application. Even LIVE 555 Server also doesnt support streaming of .mp4

Re: [Live-devel] Problem in basicTaskScheduler.cpp

2009-08-06 Thread Ross Finlayson
Yes, this is a known issue. See http://lists.live555.com/pipermail/live-devel/2009-July/010982.html -- Ross Finlayson Live Networks, Inc. http://www.live555.com/ ___ live-devel mailing list live-devel@lists.live555.com http://lists.live555.com/mailman

Re: [Live-devel] configuration for LEON SPARC V8

2009-08-06 Thread Ross Finlayson
Hi, I want know how to configure "live555 streaming media" for LEON SPARC V8. OS is snapgear linux supported by Gaisler If the existing "config.linux" doesn't work for you, then copy it to a new config file - e.g., called "config.snapgear" - and edit that as appropriate. -- Ross Finlayson L

Re: [Live-devel] how to stream AAC in live555?

2009-08-06 Thread Ross Finlayson
I want to stream AAC in live, and of what I've seen, I need AudioSource and AUdioSink classes. For the Sink it looks like MPEG4GenericRTPSink will be enough.. but for the source ?? is there an existing class or should I write one myself? See

Re: [Live-devel] H264VideoRTPSink

2009-08-06 Thread Ross Finlayson
OK, this will get changed in the next release of the software. -- 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

[Live-devel] Problem in basicTaskScheduler.cpp

2009-08-06 Thread Matt Schuckmann
I was just trying to import your latest changes into our copy of liveMedia (actually all your changes from Jan of this year) and I found what I think is a typo in basicTaskScheduler.cpp on line 78. I think you should change: err = 0; to: err = EINTR; The way it is now the if test on line 88 will

[Live-devel] configuration for LEON SPARC V8

2009-08-06 Thread W
Hi, I want know how to configure "live555 streaming media" for LEON SPARC V8. OS is snapgear linux supported by Gaisler Do you know about that? Thanks. ___ live-devel mailing list live-devel@lists.live555.com http://lists.live555.com/mailman/listinfo/l

[Live-devel] how to stream AAC in live555?

2009-08-06 Thread Steve Jiekak
I want to stream AAC in live, and of what I've seen, I need AudioSource and AUdioSink classes. For the Sink it looks like MPEG4GenericRTPSink will be enough.. but for the source ?? is there an existing class or should I write one myself? Any help will be appreciated , Steve Jiekak __

[Live-devel] Regarding H.264 support

2009-08-06 Thread Deepti . Saraswat
Hi Ross I am creating a RTSP Client application that supports viewing of H.264 video data. I want to test whether my application is recieving the data correctly or not, but for that LIVE 555 test progs doesnt have any h.264 streamer application. Even LIVE 555 Server also doesnt support streaming

Re: [Live-devel] Why the RTP receiving stops?

2009-08-06 Thread Catherine Cheng
Ross, I wrote my own RTSP client. I use the RTSP url the IP camera provides, like "rtsp://192.168.1.187/rtsp_tunnel" to talk to the IP cam. It's RTP over TCP. I use HTTP to send the RTSP commands. I have a question: do I need a special RTP port for RTP/TCP communication instead of HTTP port 80?

Re: [Live-devel] H264VideoRTPSink

2009-08-06 Thread Rawling, Stuart
Apologies, Of course I meant to ask to make H264VideoRTPSink::auxSDPLine protected instead of private. In both cases it should be virtual. Stuart On 8/6/09 11:23 AM, "Stuart Rawling" wrote: > Could we make the auxSDPLine() function of H264VideoRTPSink protected instead > of virtual? -

[Live-devel] H264VideoRTPSink

2009-08-06 Thread Rawling, Stuart
Hi Ross, Could we make the auxSDPLine() function of H264VideoRTPSink protected instead of virtual? This way subclasses do not have to re implement the contents of the H264VideoRTPSink::auxSDPLine() if they which to just extend what is already generated in the parent class. This would be consiste