Skip to content

Instantly share code, notes, and snippets.

@BichengLUO
Created February 7, 2018 23:30
Show Gist options
  • Star 11 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save BichengLUO/4244ac7294cc3104f3abe54d09c31a2a to your computer and use it in GitHub Desktop.
Save BichengLUO/4244ac7294cc3104f3abe54d09c31a2a to your computer and use it in GitHub Desktop.
An ffmpeg script to convert MP4 to GIF with high quality
ffmpeg -y -i input.mp4 -vf fps=10,scale=716:-1:flags=lanczos,palettegen palette.png
ffmpeg -i input.mp4 -i palette.png -filter_complex "fps=10,scale=716:-1:flags=lanczos[x];[x][1:v]paletteuse" output.gif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment