Skip to content

Instantly share code, notes, and snippets.

@plasticut
Created December 17, 2016 14:34
Show Gist options
  • Save plasticut/32be6ff8981185d8c8f8306359b85258 to your computer and use it in GitHub Desktop.
Save plasticut/32be6ff8981185d8c8f8306359b85258 to your computer and use it in GitHub Desktop.
Make gif from sequence using imagemagick
#!/bin/bash
rm -rf ./resize
mkdir ./resize
mogrify -resize 512 -quality 100 -path ./resize *.jpg
cd ./resize
convert -bordercolor white -border 0 -layers OptimizePlus -delay 1x30 *.jpg -loop 0 a.gif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment