How can I generate a video file directly from an FFmpeg filter with no actual input file?
It looks like the options have changed slightly in recent versions. To use the filter input sources, you have to: Set the input format to the libavfilter virtual device using: -f lavfi Set the filter input source using the -i flag (not -vf) Provide arguments as complete key-value pairs, like: color=color=red This works for ffplay, … Read more