From 6cea5862d670d1a956f07bcd2b1c8b049604ce83 Mon Sep 17 00:00:00 2001 From: kfrn Date: Fri, 31 Mar 2017 17:20:36 +1300 Subject: [PATCH] Fix typo --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.html b/index.html index 1e75af5..6ce5b59 100644 --- a/index.html +++ b/index.html @@ -819,7 +819,7 @@
-i input_file
path, name and extension of the input file
-filter_complex "fps=frame rate,scale=width:height,palettegen"
a complex filtergraph.
Firstly, the fps filter sets the frame rate.
- Then the scale filter resizes the image. You can specify both the width and the height, or specify a value for one and use a scale value of -1 for the other to preserve the aspect ratio. (For example, 500:-1 would create a GIF 500 pixels wide and with a height proportional to the original video). In the first script above, :flags:lanczos specifies that the Lanczos rescaling algorithm will be used to resize the image.
+ Then the scale filter resizes the image. You can specify both the width and the height, or specify a value for one and use a scale value of -1 for the other to preserve the aspect ratio. (For example, 500:-1 would create a gif 500 pixels wide and with a height proportional to the original video). In the first script above, :flags=lanczos specifies that the Lanczos rescaling algorithm will be used to resize the image.
Lastly, the palettegen filter generates the palette.
-t 3
duration in seconds (here 3; can be specified also with a full timestamp, i.e. here 00:00:03)
-loop 6
number of times to loop the gif. A value of -1 will disable looping. Omitting -loop will use the default which will loop infinitely