Created
March 23, 2015 11:49
-
-
Save hatashiro/d8dbbb6a28cd49987a72 to your computer and use it in GitHub Desktop.
MOV to GIF bash script
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
# convert Untitled.mov to out.gif with width: 310px; | |
movtogif Untitled.mov out.gif 310 |
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
#!/usr/bin/env bash | |
if [ -z "$3" ]; then | |
scale=800 | |
else | |
scale=$3 | |
fi | |
ffmpeg -i "$1" -vf scale=$scale:-1 -r 10 -f image2pipe -vcodec ppm - |\ | |
convert -delay 5 -layers Optimize -loop 0 - "$2" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment