Last active
April 23, 2025 00:57
-
-
Save kyeongan/e511bf7ba624ef615996f5899949ec1f to your computer and use it in GitHub Desktop.
Video to GIFs using FFmpeg (ffmpeg commend)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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