Starting with find and rsync? and How to rsync files / folders from a specific date forward?, how to rsync photos from a specific date, namely from the date on which the photo was taken (i.e., from the photo's meta data, i.e. EXIF, e.g., exif:DateTime, which may well differ from the file's "last modified date") forward?
One idea would be to make use of identify -verbose IMG_20200430_113445.jpg | grep -i date
and exif:DateTime
within, another would be to use exiftool
(https://stackoverflow.com/questions/48582185/only-get-datetimeoriginal-with-exiftool) for that. Maybe this and elements of the two Q&A's quoted above would work?
That is, combining the ideas from the two above quoted Q&A's (and perhaps also this one) with this
identify -verbose IMG_20200430_113445.jpg | grep -i date
, returning exif:DateTime
or this
exiftool -DateTimeOriginal IMG_20200430_113445.jpg
might be "the" way...
See also: