Created
March 7, 2015 21:56
-
-
Save yanofsky/df6b5449287253e2e94c to your computer and use it in GitHub Desktop.
How to Make a gif from a folder of images
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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