Skip to content

Instantly share code, notes, and snippets.

@shaunburch
Last active September 2, 2022 16:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shaunburch/7a991fc9e39a1f673e5ecf48405e01e7 to your computer and use it in GitHub Desktop.
Save shaunburch/7a991fc9e39a1f673e5ecf48405e01e7 to your computer and use it in GitHub Desktop.
Convert video to small GIFs for PRs (Uses ffmpeg)
#!/usr/bin/env bash
FILE=$1
ffmpeg -i $FILE -vf fps=10,scale=600:-1 ${FILE%.*}.gif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment