Hello everybody and thank you for reading.

I need to get access to the frames of a video file/stream and to modify them. The modification part is done, but I still have problems for the accessing part. I am using libavformat/libavcodec to open the video file, get access to the packets and write the file back.

I manage to open the file and to access to the frames, i am still having problems for the encoding, so i am looking for a simple way to specify to libavcodec that my ouput context/format/codec is the same as the source.

Is there a method to do that? Or does anybody have a sample code doing simple opening and rewriting of a source file?

link|improve this question
1  
The input and output context are different structures. I was looking for a kind of "buildInpuContextFromOutput()" method, but finally I managed to do it by copying every member from the input context to the output context, with some kind of adaptation of course. Thanks. – roland Jan 22 at 9:50
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.