Skip to content

Instantly share code, notes, and snippets.

@kyeongan
Last active April 23, 2025 00:57
Show Gist options
  • Save kyeongan/e511bf7ba624ef615996f5899949ec1f to your computer and use it in GitHub Desktop.
Save kyeongan/e511bf7ba624ef615996f5899949ec1f to your computer and use it in GitHub Desktop.
Video to GIFs using FFmpeg (ffmpeg commend)
# ffmpeg commend for generating gif
brew install ffmpeg imagemagick
ffmpeg -i input.mov -vf scale=1000:-1 -r 10 -f image2pipe -vcodec ppm - | convert -delay 5 -loop 0 - output.gif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment