dither4/gif.sh
2022-12-11 11:58:37 -08:00

14 lines
301 B
Bash
Executable file

fps=60000/1001
ffmpeg \
-r $fps -i "$1.%01d.png" \
-vf palettegen \
-y "$1.palette.png" \
&& \
ffmpeg \
-r $fps -i "$1.%01d.png" \
-i "$1.palette.png" \
-lavfi "[0]scale=w=800:h=480:sws_flags=neighbor[scaled];\
[scaled][1]paletteuse=dither=none" \
-y "$1.gif"