• Discovered Oct 6, 2022. 17:58 magick commands in linux on WSL to make an animated GIF:
    parallel ~/bin/magick convert {}  -resize 1200x675  small-{/.}.jpg \
    :::  /mnt/c/Users/rolan/OneDrive/Pictures/BEES_04OCT_2022/*.JPG
    ~/bin/magick convert -delay 20 -loop 0 `ls -1 *.jpg` 04oct2022beeflying.gif
    
  • imagemagick version 7 is accessed via the magick commands. Version 6 is accessed via convert directly.
  • There’s probably a way to do this in 1 step using reading from stdin but I couldn’t figure it out :-)

Previously

Leave a comment on github