diff --git a/index.html b/index.html
index 66d7689..be0fd31 100644
--- a/index.html
+++ b/index.html
@@ -192,11 +192,11 @@ Change the above data-target field, the button text, and the below div class (th
This will grab a thumbnail every minute and output sequential png files.
ffmpeg
starts the command
-
-i input file
path, name and extension of the input file
+
-i input_file
path, name and extension of the input file
-ss 00:00:20
seeks video file to 20 seconds into the video
-vf fps=1/60
-vf is an alias for -filter:v, which creates a filtergraph to use for the streams. The rest of the command identifies filtering by frames per second, and sets the frames per second at 1/60 (which is one per minute). Omitting this will output all frames from the video
-
output file
path, name and extension of the output file. In the example out%d.png where %d is a regular expression that adds a number (d is for digit) and increments with each frame (out1.png, out2.png, out3.png…).
+
output file
path, name and extension of the output file. In the example out%d.png where %d is a regular expression that adds a number (d is for digit) and increments with each frame (out1.png, out2.png, out3.png…). You may also chose a regular expression like out%04d.png which gives 4 digits with leading 0 (out0001.png, out0002.png, out0003.png, …).
@@ -229,7 +229,6 @@ Change the above data-target field, the button text, and the below div class (th
-
@@ -268,7 +267,7 @@ Change the above data-target field, the button text, and the below div class (th
-show_format
outputs file container informations
-show_streams
outputs audio and video codec informations
-show_data
adds “hexdump” to show_streams command output
-
-print_format
Set the output printing format (in this example “xml”; other formats are “json” and “flat”)
+
-print_format
Set the output printing format (in this example “xml”; other formats include “json” and “flat”)
flips the image horizontally and vertically By using only one of the parameters hflip or vflip for filtering the image is flipped on that axis only. The quote marks are not mandatory.