Re: [Live-devel] problem on how to assemble the audio and video file into a total file use openRTSP

2008-09-04 Thread Ross Finlayson
thanks, the original file is a .mpg file, and my openRTSP command is :openRTSP -4 >haha.mp4 rtsp://172.28.40.101/video.mpg but the test.mp4 also without audio when I use Windows Media Player play it. Am I made some mistake? Yes, it was a mistake to use Windows

Re: [Live-devel] problem on how to assemble the audio and video file into a total file use openRTSP

2008-09-04 Thread YiMing Liu
thanks, the original file is a .mpg file, and my openRTSP command is :openRTSP -4 >haha.mp4 rtsp://172.28.40.101/video.mpg but the test.mp4 also without audio when I use Windows Media Player play it. Am I made some mistake? I want to save it to a mp4 file with video and audio. ~~ Many thanks.

Re: [Live-devel] problem on how to assemble the audio and video file into a total file use openRTSP

2008-09-04 Thread YiMing Liu
thanks, the original file is a .mpg file, and my openRTSP command is :openRTSP -4 >haha.mp4 rtsp://172.28.40.101/video.mpg but the test.mp4 also without audio when I use Windows Media Player play it. Am I made some mistake? I want to save it to a mp4 file with video and audio. ~~ Many thanks.

Re: [Live-devel] problem on how to assemble the audio and video file into a total file use openRTSP

2008-09-04 Thread Ross Finlayson
When I useing openRTSP to down a mpg file, openRTSP.exe rtsp://172.28.40.123/video.mpg (I use liveMediaServer as RTSP Server) I got two files: audio and video file separately, and now I want to get a total file with audio and video, how can I do it? There's c

[Live-devel] problem on how to assemble the audio and video file into a total file use openRTSP

2008-09-04 Thread YiMing Liu
hi all: When I useing openRTSP to down a mpg file, openRTSP.exe rtsp:// 172.28.40.123/video.mpg (I use liveMediaServer as RTSP Server) I got two files: audio and video file separately, and now I want to get a total file with audio and video, how can I do it? I read the openRTSP code, and I know

Re: [Live-devel] H264 over RTP problem

2008-09-04 Thread Ross Finlayson
I'm trying to receive H264 video stream(unicast RTP) from a camera. It works well for 320x240 video stream, but when I increase the resolution to 640x480 some frames can't be decoded. It looks like their end is missing. Is there any limitation on the size of the video frames? No. However, the

[Live-devel] H264 over RTP problem

2008-09-04 Thread Miklos Szeles
Hi, I'm trying to receive H264 video stream(unicast RTP) from a camera. It works well for 320x240 video stream, but when I increase the resolution to 640x480 some frames can't be decoded. It looks like their end is missing. Is there any limitation on the size of the video frames? If there is, whe

Re: [Live-devel] Capturing video from device

2008-09-04 Thread Ross Finlayson
So the deliverFrame() should handle what is needed to get the encoded data from my encoder. and doGetNextFrame() should call deliverFrame(). 1. Does deliverFrame() should be blocking tillit acquire new frame data? No, neither "doGetNextFrame()" nor "deliverFrame()" should block (because that

[Live-devel] how to manage unpexpected network problems when Receiving rtp packets

2008-09-04 Thread Giorgio Levantini
Hi, I have to receive for several days a stream from an Axis camera using an RTSPClient instance (similarly to openRTSP's implementation) Now, if for some reasons it occurs a network problem (for example, a LAN switch is shut down), and the normal situation is restored after some hours, isĀ  ther

Re: [Live-devel] Capturing video from device

2008-09-04 Thread Yedidia Amit
Thanks Ross, It helps a lot. So the deliverFrame() should handle what is needed to get the encoded data from my encoder. and doGetNextFrame() should call deliverFrame(). 1. Does deliverFrame() should be blocking tillit acquire new frame data? 2. who initiate the call: Does the ecoder notify th

Re: [Live-devel] Capturing video from device

2008-09-04 Thread Ross Finlayson
I am imlementing live RTSP video streaming server which capture video from live camera, encoded it in hardware and its output are NAL units. I noticed the DeviceSource template and got some questions about using it. 1. Does my flow should be DevideSource::doGetNextFrame -> H264Framer

[Live-devel] Capturing video from device

2008-09-04 Thread Yedidia Amit
Hi, I am imlementing live RTSP video streaming server which capture video from live camera, encoded it in hardware and its output are NAL units. I noticed the DeviceSource template and got some questions about using it. 1. Does my flow should be DevideSource::doGetNextFrame -> H264Frame