Hello,
I manage to encode frames using libavcodec but after calling
avcodec_encode_video
how do I do to save my encoded frames to an avi file ?
Thanks.
Hello,
I manage to encode frames using libavcodec but after calling
avcodec_encode_video
how do I do to save my encoded frames to an avi file ?
Thanks.
Check this out:
http://forum.doom9.org/archive/index.php/t-112286.html
You must open file for binary write, write header in it, and simultaniosly put binary frames in it, I think.