views:

952

answers:

3

I am trying to find documentation to use the ffmpeg C API. It seems that only command line documentation is available. Is there any good documentation/tutorials/links available?

+3  A: 

Here is the best one I have found so far. It deals with a lot of the quirks of the API and shows you how to build a working video player using SDL and libavformat/libavcodec.

http://dranger.com/ffmpeg/

Jason
+2  A: 

If you're interested in writing your own ffmpeg format or codec, take a look here:

http://wiki.multimedia.cx/index.php?title=Category:FFmpeg_Tutorials

jeff7