Skip to content

Instantly share code, notes, and snippets.

@Apkawa
Last active December 22, 2015 12:49
Show Gist options
  • Save Apkawa/6475203 to your computer and use it in GitHub Desktop.
Save Apkawa/6475203 to your computer and use it in GitHub Desktop.
#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