Skip to content

Instantly share code, notes, and snippets.

@gartenfeld
Created May 29, 2019 11:36
Show Gist options
  • Save gartenfeld/7b50f135ed722fc072ae3d60fc4dca0b to your computer and use it in GitHub Desktop.
Save gartenfeld/7b50f135ed722fc072ae3d60fc4dca0b to your computer and use it in GitHub Desktop.
Video to GIF
# https://superuser.com/questions/556029/how-do-i-convert-a-video-to-gif-using-ffmpeg-with-reasonable-quality
ffmpeg -y -ss 0 -t 12 -i input.mp4 -vf fps=10,scale=320:-1:flags=lanczos,palettegen palette.png
ffmpeg -ss 0 -t 12 -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