I'm creating an animated gif using mogrify's convert. However, at the moment I run in on a folder with dozens of images in it, and I just instruct it to use all of the images it finds. However, I'd like it to only use files that were created on a particular date. Can I do such a thing?
Current command used:
convert -delay 10 -loop 0 images/* animation.gif
All my filenames are timestamps so alternatively I'd like to be able to specify a range, something like:
convert -delay 10 -loop 0 --start="images/147615000.jpg" --end="images/1476162527.jpg" animation.gif
I've tried the convert man pages but no luck. Is any of this possible?