Skip to content

Instantly share code, notes, and snippets.

@jbiason
Created January 2, 2018 17:01
Show Gist options
  • Save jbiason/bcd3fda96d83d471b15526a35e9895c3 to your computer and use it in GitHub Desktop.
Save jbiason/bcd3fda96d83d471b15526a35e9895c3 to your computer and use it in GitHub Desktop.
FFmpeg to convert MP4s to GIFs (like nature wants it)
#!/bin/bash
ffmpeg -y -i $1 -vf fps=10,scale=320:-1:flags=lanczos,palettegen palette.png
ffmpeg -i $1 -i palette.png -filter_complex "fps=10,scale=-1:-1:flags=lanczos[x];[x][1:v]paletteuse" -- $1.gif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment