Skip to content

Instantly share code, notes, and snippets.

@mojowen
Last active August 29, 2015 14:04
Show Gist options
  • Save mojowen/2eab8362492868114042 to your computer and use it in GitHub Desktop.
Save mojowen/2eab8362492868114042 to your computer and use it in GitHub Desktop.
Convert jpegs to gif and created animated gif
find . -iname "*.jpg" -type f -exec sh -c 'sips --resampleHeight 500 -s format gif "$0" --out "${0%.JPG}.gif"' {} \;
# http://www.lcdf.org/gifsicle/
gifsicle --delay=30 --loop *.gif > anim.gif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment