Skip to content

Instantly share code, notes, and snippets.

@dmitrydyomin
Created August 22, 2016 07:15
Show Gist options
  • Save dmitrydyomin/52375aba526fefbb53cd3b3be1c6c664 to your computer and use it in GitHub Desktop.
Save dmitrydyomin/52375aba526fefbb53cd3b3be1c6c664 to your computer and use it in GitHub Desktop.
Convert video to animated GIF using FFmpeg
#!/bin/sh
ffmpeg -y -i source.mp4 -vf fps=5,scale=480:-1:flags=lanczos,palettegen palette.png
ffmpeg -i source.mp4 -i palette.png -filter_complex "fps=5,scale=480:-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