Created
September 17, 2021 06:29
-
-
Save carlosh93/df993392e9bdf6b79c6c4a5bd79cc25d to your computer and use it in GitHub Desktop.
Convert MP4 to GIF with high quality #ffmpeg #video #bash
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
# Install ffmpeg and gifski ( https://github.com/ImageOptim/gifski) | |
ffmpeg -i intro_vid.mp4 frame%04d.png | |
gifski -o clip.gif frame*.png |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment