diff options
-rw-r--r-- | ffmpeg.md | 12 |
1 files changed, 12 insertions, 0 deletions
@@ -36,3 +36,15 @@ For the transpose parameter you can pass: ## Record sound ffmpeg -f alsa -i default out.flac + +## Fitlering + +### Filtergraph + +* A filtergraph is a `;`-separated list of filterchains. +* A filterchain is a `,`-separated list of filters. +* A filter is + + [in1] ... [ink] filter_name=option1=val1:...:optionn=valn [out1] ... [outm] + +* Use `-filter_complex` if more than one input or output stream. |