Skip to content

Instantly share code, notes, and snippets.

@hyjk2000
Last active March 5, 2020 21:30
Show Gist options
  • Save hyjk2000/5a5bf03d2887b4c43e5b40c957302250 to your computer and use it in GitHub Desktop.
Save hyjk2000/5a5bf03d2887b4c43e5b40c957302250 to your computer and use it in GitHub Desktop.
Video to GIF with FFMPEG
#!/usr/bin/env bash
# Usage: v2gif video.mov video.gif
ffmpeg -i "$1" -vf "fps=5,scale=640:-1:flags=lanczos,split[s0][s1];[s0]palettegen[p];[s1][p]paletteuse" -loop 0 "$2"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment