How to resize images and make an animated GIF in one step using imagemagick
- Discovered Oct 12, 2022. 19:29
~/bin/magick convert -delay 20 -loop 0 `ls -1 *.JPG` \
-resize 1200x675 12oct2022beeflying.gif
^^– resize and make animated gif in 1 step
Previously
- October 9, 2022: How to resize images to Twitter animated GIF dimensions and then make an animated GIF using imagemagick <— 2 step process!