1
0
mirror of https://github.com/onkelbeh/cheatsheets.git synced 2025-10-16 15:38:44 +02:00
cheatsheets/animated_gif.md
2015-11-24 16:06:06 +11:00

389 B

title, category
title category
Animated gifs CLI

Convert mp4 to gif

mkdir -p gif
mplayer -ao null -vo gif89a:outdir=gif $mp4
mogrify -format gif *.png
gifsicle --colors=256 --delay=4 --loopcount=0 --dither -O3 gif/*.gif > ${mp4%.*}.gif
rm -rf gif

Or a given range (-ss -endpos)

mplayer -ao null -ss 0:02:06 -endpos 0:05:00 -vo gif89a:outdir=gif videofile.mp4