diff options
author | Marcin Chrzanowski <marcin.j.chrzanowski@gmail.com> | 2020-05-31 14:16:49 +0200 |
---|---|---|
committer | Marcin Chrzanowski <marcin.j.chrzanowski@gmail.com> | 2020-05-31 14:16:49 +0200 |
commit | 9e685b3a87db5658bb5325f5c67db2838f81f76b (patch) | |
tree | 7c8ea78c9a457a00b093b582daf75752d2df5d2a | |
parent | e1979c646ab0a11a06020b6126db926397d8bffd (diff) |
Add ffmpeg filtergraphs
-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. |