Last active
December 22, 2015 12:49
-
-
Save Apkawa/6475203 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
#Do check time | |
mplayer -noautosub -sid 1000 -ao null \ | |
-ss 00:06:05 -endpos 20 \ | |
video.avi | |
# Do make frame images from video | |
mplayer -noautosub -sid 1000 -ao null \ | |
-ss 00:06:05 -endpos 20 \ | |
video.avi \ | |
-vo jpeg:quality=99:outdir=images | |
#Do make result gif | |
# -fuzz for optimize size gif | |
convert -delay 4 -layers Optimize -fuzz 2% \ | |
-resize 666x \ | |
images/*{190..237}.jpg "out.gif" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment