Skip to content

Instantly share code, notes, and snippets.

@davidbjourno
Last active January 12, 2017 14:39
Show Gist options
  • Save davidbjourno/fd03583c3c16da5b22e09320c8b46f46 to your computer and use it in GitHub Desktop.
Save davidbjourno/fd03583c3c16da5b22e09320c8b46f46 to your computer and use it in GitHub Desktop.
Terminal commands for converting a QuickTime movie to a GIF using FFmpeg

.mov to GIF

  1. ffmpeg -i movie.mov -vf palettegen palette.png
  2. ffmpeg -i movie.mov -i palette.png -lavfi scale=1920:-1,paletteuse=bayer_scale=[0,5]:dither=bayer -r 24 movie.gif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment