Skip to content

Instantly share code, notes, and snippets.

@daGrevis
Created December 15, 2018 18:47
Show Gist options
  • Select an option

  • Save daGrevis/bfa5343e7ff48ee143dc1d8effa49c18 to your computer and use it in GitHub Desktop.

Select an option

Save daGrevis/bfa5343e7ff48ee143dc1d8effa49c18 to your computer and use it in GitHub Desktop.
video-to-gif() {
FPS="${FPS:-10}"
SCALE="${SCALE:-640}"
ffmpeg -i "$@" -vf fps=$FPS,scale=$SCALE:-1:flags=lanczos,palettegen palette.png
ffmpeg -i "$@" -i palette.png -filter_complex "fps=10,scale=640:-1:flags=lanczos[x];[x][1:v]paletteuse" recording.gif
rm palette.png
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment