Is there a way to force the ffmpeg
command-line to display a comprehensive list of all filters and their parameters, even those that are applied automatically like -vf scale
?
(EDIT: To clarify, I do not mean filter documentation, but rather displaying filters that are instantiated at runtime for a particular command-line, just before transcoding starts. The goal of this is mostly checking that ffmpeg is indeed doing the right thing and not inserting/changing filters when I do not intend it to.)
There are a few options available, but none are comprehensive enough. For example:
- The
lavfi
module has adumpgraph
option (here) but only if you're usinglavfi
. - The
-sws_flags print_info
option (here) can be used to determine if-vf scale
is applied automatically and shows a subset of its parameters, but not all of them.
Additionally, this question appears related the answer doesn't answer what I'm looking for.
Are there better ways to achieve that?