@@ -17,18 +17,19 @@ gifconv [input_file] [Arguments]
1717```
1818Arguments:
1919-o : Specifies output filename. (will be outputted to the same directory as your input video file.)
20- If left empty, this will default to the same filename as your video. (Usage: -o image.gif )
20+ If left empty, this will default to the same filename as your video. (Optional )
2121-r : Specifies scale or size. The amount of pixels this value is set to will be the width of the gif.
2222 The default is the same scale as the original video.
2323-f : Specifies framerate in Hz. The default is 15.
2424-m : Specifies one of the 3 modes listed below. The default is diff.
25- -d : Specifies which dithering algorithm to be used. The default is Bayer Dithering .
26- -b : Specifies the Bayer Scale. This can only be used when Bayer Dithering is applied.
27- See more information below.
28- -s : Specifies the start of the gif file in HH:MM:SS.MS format.
29- -e : Specifies the duration of the gif file in seconds.
25+ -d : Specifies which dithering algorithm to be used. The default is Bayer.
26+ -b : Specifies the Bayer Scale. This can only be used when Bayer Dithering is applied. See more
27+ information below. (Optional)
28+ -s : Specifies the start of the gif file in HH:MM:SS.MS format. (Optional)
29+ -e : Specifies the duration of the gif file in seconds. (Optional)
3030-c : Sets the maximum amount of colors useable per palette. (Value up to 256) This option is disabled
3131 by default.
32+ -k : Enables error diffusion. (Optional)
3233-------------------------------------------------------------------------------------------------------------
3334Palettegen Modes:
34351: diff - only what moves affects the palette
@@ -43,19 +44,18 @@ Dithering Options:
43445: Sierra2_4a
44456: No Dithering
4546-------------------------------------------------------------------------------------------------------------
46- When bayer dithering is selected, the Bayer Scale option defines the scale of the pattern (how much the crosshatch
47- pattern is visible). A low value means more visible pattern for less banding, and higher value means less
48- visible pattern at the cost of more banding.The option must be an integer value in the range [0,5].
49- The Default is 2.
50- Bayer Scale is optional and can only be enabled when using bayer dithering
47+ When bayer dithering is selected, the Bayer Scale option defines the scale of the pattern (how much the
48+ crosshatch pattern is visible). A low value means more visible pattern for less banding, and higher value
49+ means less visible pattern at the cost of more banding.The option must be an integer value in the range
50+ [0,5]. The Default is 2. Bayer Scale is optional and can only be enabled when using bayer dithering.
5151```
5252
5353## Examples:
5454```
55- gifenc sample.mp4
56- gifenc sample.mp4 -f 20 -r 450
57- gifenc sample.mp4 -s 5:40 -e 5
58-
55+ gifconv sample.mp4
56+ gifconv sample.mp4 -f 20 -r 450
57+ gifconv sample.mp4 -s 5:40 -e 5
58+ gifconv sample.mp4 -o babydance.gif -m 2 -k -b 3
5959```
6060
6161## Tips
0 commit comments