-
-
Save jmacias/e4e554826710d833723bdab96a4d73fe to your computer and use it in GitHub Desktop.
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
mov2gif(){ | |
ffmpeg -i "$1" -vf scale=800:-1 -pix_fmt rgb24 -r 10 -f image2pipe -vcodec ppm - |\ | |
convert -delay 10 -layers Optimize -loop 0 - "$2" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment