Tuesday, July 8, 2014

Making GIFs

I'm back!

Almost 2 years later. That's ok. I found out how to make GIFs!

For this you will need:

  • imageMagick (sudo apt-get install imagemagick).
  • A bunch of JPGs.
Command!

convert -delay 42 -loop 0 *.jpg NewGif.gif


You can tweak with the -delay 42 for timing, with the -loop 0 for how many times it loops, and with the file names. Enjoy!