Skip to content

Instantly share code, notes, and snippets.

@yanofsky
Created March 7, 2015 21:56
Show Gist options
  • Save yanofsky/df6b5449287253e2e94c to your computer and use it in GitHub Desktop.
Save yanofsky/df6b5449287253e2e94c 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