Skip to content

Instantly share code, notes, and snippets.

@calvarez-ov
Created February 22, 2016 17:00
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save calvarez-ov/92cca63047252fc77cf5 to your computer and use it in GitHub Desktop.
Save calvarez-ov/92cca63047252fc77cf5 to your computer and use it in GitHub Desktop.
Convert mp4 to animated gif
ffmpeg -y -i input.mp4 -vf fps=10,scale=320:-1:flags=lanczos,palettegen palette.png
ffmpeg -i input.mp4 -i palette.png -filter_complex "fps=10,scale=320:-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