Created
July 14, 2021 15:30
-
-
Save nathakits/92fd4b7f25dd1b21ed4b4ebdfb5399e1 to your computer and use it in GitHub Desktop.
Convert mp4 to gif
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 -t 5 -i input.mp4 -vf -loop 0 output.gif | |
ffmpeg -ss 1 -t 5 -i input.mp4 -f gif output.gif | |
ffmpeg -ss 1 -t 4 -i input.mp4 -filter_complex "[0:v] fps=12,scale=720:-1,split [a][b];[a] palettegen [p];[b][p] paletteuse" output.gif |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
https://engineering.giphy.com/how-to-make-gifs-with-ffmpeg/