Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save malcoriel/fdeba2a5d88c4a2b8d0dc9a76d4b89b3 to your computer and use it in GitHub Desktop.
Save malcoriel/fdeba2a5d88c4a2b8d0dc9a76d4b89b3 to your computer and use it in GitHub Desktop.
Convert mp4 to gif via ffmpeg
ffmpeg -y -i $1 -vf fps=10,scale=1024:-1:flags=lanczos,palettegen palette.png
ffmpeg -y -i $1 -i palette.png -filter_complex "fps=10,scale=1024:-1:flags=lanczos[x];[x][1:v]paletteuse" -loop 1 $1.gif
rm palette.png
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment