pqow7747
User
 Fresh Boarder
| Posts: 2 |   |
|
Using ffmpeg to stream large video - 2008/12/06 14:43
I am working on a video streaming project that uses ffmpeg precompiled libraries (AvDn,AvDnCpp). The main purpose of it is to send pre encoded files (h264 files) and the receiver just need to decode it. The problem is when i have large h264 files. On this case i cannot send the whole video at once. I have to split it on rtp packets. So i send 1 packet at a time that contains 10 frames. How can i decode the files on the receiver. What i am doing until now is to save the input file on a memorystreamer and when the receiver take it, he creates an h264 file on his hard drive and try to decode it. I don't want to wait on the receiver side until the transmission finish to decode the video. I need to decode a video frame sequence and wait for the next sequence on the receivers side.Please help
|