+
+
Makes a mandelbrot test pattern video
+
ffmpeg -f lavfi -i mandelbrot -t 10 output_file
+
+ - ffmpeg
- starts the command
+ - -f lavfi
- tells ffmpeg to use the Libavfilter input virtual device [more]
+ - -i mandelbrot
- asks for the madelbrot test filter as input
+ - -t 10
- specifies recording time of 10 seconds
+ - output_file
- path, name and extension of the output file. Try different file extensions such as mkv, mov, mp4, or avi.
+
+
+