I'm trying to change multiple date tag's year but am being receiving an error that i'm supplying invalid date/time. exiftool -s3 '-EXIF:ModifyDate' ./2009_080823-053923-00_OCF.jpg 2008:08:23 05:39:23 shows what the current value is. exiftool -p '${EXIF:ModifyDate#; substr($_,0,4)="2009"}' ./2009_080823-053923-00_OCF.jpg 2009:08:23 05:39:23 shows that it can be modified successfully with the Advanced formatting feature, whilst retaining the same formatting structure exiftool '-EXIF:ModifyDate=${EXIF:ModifyDate;...
I'm trying to change multiple date tag's year but am being receiving an error that i'm supplying invalid date/time. exiftool -s3 '-EXIF:ModifyDate' ./2009_080823-053923-00_OCF.jpg 2008:08:23 05:39:23 shows what the current value is. exiftool -p '${EXIF:ModifyDate#; substr($_,0,4)="2009"}' ./2009_080823-053923-00_OCF.jpg 2009:08:23 05:39:23 shows that it can be modified successfully with the Advanced formatting feature, whilst retaining the same formatting structure exiftool '-EXIF:ModifyDate=${EXIF:ModifyDate;...