I wanted to build an awesome place for people to discuss module specific issues, but I don't have any more time for this, and there are much better places to discuss Perl-related issues. I'd recommend asking your question on Stack Overflow or on Perl Monks.
If you are looking for a Perl tutorial or Perl-related news, I hope these links will serve you well.
Posted on 2008-12-28 20:37:05-08 by sako75
Date Created Not being modified
I've downloaded the exiftool for Mac and run the following line exiftool -AllDates+=1:: DIR It ran and told me that it processed 266 images and made bakups of all files also. What I'm attempting to do is change the date from 2007 to 2008 without modifing the time. After it finished I opened the nikon NEF files in bridge and they still have 2007 instead of 2008 in the date created properties. Any help would be greatly appreciated. Sako
Direct Responses: 9613 | Write a response
Posted on 2008-12-29 17:56:18-08 by bogdan in response to 9607
Re: Date Created Not being modified
Hi Sako,

Using AllDates as you have described, causes increasing Time part (hour) of DateTime. To increase Year only, you should do:
exiftool -AllDates+="1:: ::" dir
-I'm not sure if double quotes must be used on Mac (if not, try single quite instead).

Actually, I like this more:
exiftool -AllDates+="1:0:0 0:0:0" dir
-because it's more descriptive which part will be changed.

Greetings,
Bogdan
Direct Responses: 9615 | Write a response
Posted on 2008-12-29 22:55:17-08 by sako75 in response to 9613
Re: Date Created Not being modified
Now that is exactly what I was looking for the more descriptive year:month:day hour:minute:second and yes with the mac I use single quotes.. Thanks Bogdan
Direct Responses: 9621 | Write a response
Posted on 2008-12-30 17:33:20-08 by exiftool in response to 9615
Re: Date Created Not being modified
Thanks Bogdan. Just for the record, both single and double quotes work on the Mac. Single quotes must be used only if the argument contains a dollar sign ($) or a double quote character (").

- Phil
Direct Responses: Write a response