The docs are a library, not a tutorial
FFmpeg's documentation is exhaustive and intimidating. The first time you open ffmpeg.html it looks like a thousand-page manual. It's not meant to be read end-to-end; it's a reference. The trick is knowing the four entry points and which question each one answers.
The four entry points
- Built-in
-h— fastest.ffmpeg -h encoder=libx264dumps every option for that encoder.ffmpeg -h filter=scaledumps every option for that filter. Always faster than searching the web. - ffmpeg-filters.html — the filter bible. Open it when you're building a filtergraph. Use Cmd-F.
- ffmpeg-codecs.html — every encoder's options, including the exotic ones. Look here when
-h encoder=...is too terse. - trac.ffmpeg.org wiki — community recipes, war stories, Encode/H.264 and Encode/HEVC pages are gold for first-time encoder choices.