Skip to content

Instantly share code, notes, and snippets.

@monkeycycle
Forked from yanofsky/gif_maker.sh
Created February 15, 2017 03:02
Show Gist options
  • Save monkeycycle/13c1436827b4ded2e809c7878cdb0882 to your computer and use it in GitHub Desktop.
Save monkeycycle/13c1436827b4ded2e809c7878cdb0882 to your computer and use it in GitHub Desktop.
How to Make a gif from a folder of images
# requirement! install imagemagick
# brew install imagemagick
# or build from source here http://www.imagemagick.org/script/binary-releases.php
#navigate to folder of the images
cd folderofmyimages/
# take every jpg in the folder and smash into a gif with a frame rate of 0.5 sec
convert -delay 50 *.jpg gif_of_my_images.gif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment