|
Ahah! Posting the problem got me to thinking about it again, and I found I could exclude MakerNotes from the tag recopy. Nevermind it's working now. :) If others are curious, here's the snippet of code I used within Perl. (Camera_id formed from Make and Model tags, I then set other tags and call $exifTool->WriteInfo after this code to make it all stick)
if ($camera_id =~ /^FUJIFILM FinePix F601 ZOOM/i) {
system("exiftool -overwrite_original -q -exif:all= \"$dest_file\"");
system("exiftool -overwrite_original -q -q -tagsfromfile \"$src_file\" --MakerNotes \"$dest_file\"
+");
}
|