diff --git a/index.html b/index.html
index 6104c1f..d51a217 100644
--- a/index.html
+++ b/index.html
@@ -1190,8 +1190,9 @@ foreach ($file in $inputfiles) {
ffmpeg -f lavfi -i testsrc=size=720x576:rate=25 -c:v v210 -t 10 output_file
- ffmpeg
- starts the command
- - -f lavfi
- tells ffmpeg to use the libavfilter input virtual device [more]
- - -i testsrc=size=720x576:rate=25
- asks for the testsrc filter pattern as input. Adjusting the
size
and rate
options allow you to choose a specific frame size and framerate. [more]
+ - -f lavfi
- tells ffmpeg to use the libavfilter input virtual device
+ - -i testsrc=size=720x576:rate=25
- asks for the testsrc filter pattern as input. Adjusting the
size
and rate
options allow you to choose a specific frame size and framerate.
+ The different test patterns that can be generated are listed here.
- -c:v v210
- transcodes video from rawvideo to 10-bit Uncompressed YUV 4:2:2. Alter this setting to set your desired codec.
- -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.