dither4/gif.sh
2022-12-07 16:12:15 -08:00

13 lines
214 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 paletteuse \
-y "$1.gif"