Created
July 9, 2015 15:15
-
-
Save benschw/6158261be0bc379cc303 to your computer and use it in GitHub Desktop.
ubild a gif from a screencast in linux
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
sudo apt-get install imagemagick mplayer gtk-recordmydesktop | |
mplayer -ao null output.ogv -vo jpeg:outdir=output | |
convert output/* output.gif | |
convert output.gif -coalesce -repage 0x0 -crop 1200x630+22+60 +repage output-crop.gif | |
convert output-crop.gif -fuzz 10% -layers Optimize output-crop-opt.gif |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment