Re: [Live-devel] whether is a bug in function RTPInterface::handleRead in RTP over RTSP scenario

2012-04-09 Thread 张世勇
Hi I've correct as you said, it work. Thanks. Shiyong Zhang 2012/4/9 Ross Finlayson > In function RTPInterface::handleRead (version 2012/04/04), > > 225 if (fNextTCPReadStreamSocketNum < 0) { > 226 // Normal case: read from the (datagram) 'groupsock': > 227 readSuccess = fGS->han

Re: [Live-devel] Converting H.264 RTP Video to MPEG-2 Transport Stream

2012-04-09 Thread Ross Finlayson
> This *should* work, with one modification: You will need to add a 'start > code' (i.e., 0x00 0x00 0x00 0x01) before each NAL unit that comes out of the > "H264VideoRTPSource". You will need to do this - using a separate filter > class (that you would write) - before you feed the output into

Re: [Live-devel] Converting H.264 RTP Video to MPEG-2 Transport Stream

2012-04-09 Thread 陈跃辉
Thanks very much for your assistance! I do the "H264VideoRTPSource -> H264VideoFileSink -> testH264VideoToTransportStream" test and yes, VLC can play the generated file successful. This *should* work, with one modification: You will need to add a 'start code' (i.e., 0x00 0x00 0x00 0x01) before ea

Re: [Live-devel] is there any source code for h264 parser

2012-04-09 Thread Ross Finlayson
> actually i want an application which takes h264 as an input file and tells > the header size,I,B,P-frames What you can do is add #define DEBUG 1 to the start of "liveMedia/H264VideoStreamFramer.cpp", then recompile the "liveMedia" library. Then rebuild the "testH264VideoStreamer" applic

[Live-devel] is there any source code for h264 parser

2012-04-09 Thread i m what i m ~~~~
actually i want an application which takes h264 as an input file and tells the header size,I,B,P-frames if someone knows how to do it please let me know... ___ live-devel mailing list live-devel@lists.live555.com http://lists.live555.com/mailman/listi

Re: [Live-devel] Live caster source code

2012-04-09 Thread Ross Finlayson
> Can we downld and modify source code of Live caster applation as per our > requirement?? Sorry, but the "liveCaster" application is no longer supported (and its source code was not made available, because it used a lot of custom GUI code). Instead, you should use the "testMP3Streamer" demo ap

[Live-devel] Live caster source code

2012-04-09 Thread Vinay Tyagi
Hi,   Can we downld and modify source code of Live caster applation as per our requirement?? If yes, please guide on download link.   Regards, Vinay___ live-devel mailing list live-devel@lists.live555.com http://lists.live555.com/mailman/listinfo/live-de

Re: [Live-devel] Converting H.264 RTP Video to MPEG-2 Transport Stream

2012-04-09 Thread Ross Finlayson
> I have an application running on iPhone that generates an H.264 RTP > video stream from camera. I wanna writing an application to convert > the received H.264 stream to an MPEG-2 Transport Stream and then > stream the live TS to another device. > > my first try is modified the example "testH264V

[Live-devel] Converting H.264 RTP Video to MPEG-2 Transport Stream

2012-04-09 Thread 陈跃辉
Hello Everyone! I have an application running on iPhone that generates an H.264 RTP video stream from camera. I wanna writing an application to convert the received H.264 stream to an MPEG-2 Transport Stream and then stream the live TS to another device. my first try is modified the example "test

[Live-devel] open svc Mplayer and live

2012-04-09 Thread Ramu Chakravadhanula
hi, I am trying to complie Mplayer with live. I could successfully configure the player and generate a make file. However, Its throwing an error when iam trying to install it. libmpdemux/demux_rtp_internal.h:33: fatal error: liveMedia.hh: No such file or directory compilation terminated. make: *

Re: [Live-devel] Streaming Stops for larger frameBuff size Issue

2012-04-09 Thread Ross Finlayson
> Is the problem with newFrameSize being too large Yes, quite possibly, especially if you are seeing error messages about the need to increase "OutPacketBuffer::maxSize". The buffer that's used by the "RTPSink" subclass - to store each frame of data that gets sent - is, by default, 6 bytes.

[Live-devel] Streaming Stops for larger frameBuff size Issue

2012-04-09 Thread Ashfaque
Hi Ross, I am facing a typical problem where the streaming stops after some time if the encoded frame buffer size is more. If I keep the buffer size less (ActualSize/8), streaming goes normal. I had implemented my own H264Source subclass of FramedSource (to read frames at 30fps from USB camer