Created
August 14, 2024 10:38
-
-
Save wteuber/dc58f2ecd5e84a843539b070a641dce8 to your computer and use it in GitHub Desktop.
mp4 to gif
This file contains 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 -i "My Movie.mp4" -vf "fps=10,scale=320:-1:flags=lanczos" -c:v pam -f image2pipe - | convert -delay 10 - -loop 0 -layers optimize output.gif |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment