Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Where is the best documentation of ffmpeg and libavcodec?

It appears that ffmpeg supports many undocumented options that it is very hard to find a good reference.

share|improve this question

3 Answers

up vote 12 down vote accepted
  • ffmpeg -formats
  • ffmpeg -help
  • ffmpeg.org/documentation.html and the
  • source code as last resort.

Unfortunately, this is not easy to figure out.

share|improve this answer
2  
There should be a SE site for FFmpeg. Please follow and verify your email to cast you vote! – Shimmy Apr 30 '12 at 13:55

One of the things that can be quite useful:

ffmpeg -formats

lists all the codecs and containers that can be used...I haven't found any other good place where these can be found, probably because they depend on what libraries your ffmpeg copy was built with. This page (http://ffmpeg.mplayerhq.hu/general.html) has some of them, but don't tell you what to enter at the command line.

Also, howto-pages.org has a decent tutorial here: http://howto-pages.org/ffmpeg/

share|improve this answer

what is not on ffmpeg.org/documentation.html can be found in ... the source ...

share|improve this answer
2  
+1: Unfortunately, what's not in the docs really must be found in the source. I've found that ffmpeg.c, etc. are the best usage docs for libavcodec, libavformat, etc. Note that the ffmpeg team periodically changes the public API and the ffmpeg.c diffs are about the only way to track them. – Mr Fooz Nov 19 '08 at 4:20
See doc/APIchanges – alex strange Apr 23 '09 at 20:07

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.