mp4 to gif

from blog lmno.lol @alvaro, | ↗ original
Converting mp4 to gif is handy for posting short screencasts. You can convert to gif using ffmpeg and optimize with imagemagick. To install: apt-get install ffmpeg imagemagick (linux) brew install ffmpeg imagemagick (Mac) Convert to gif: ffmpeg -i my.mp4 -pix_fmt rgb24 -r 5 my.gif Optimize with: convert -dither none -layers Optimize my.gif...