0
1
the EXIF DateTimeOriginal format is YYYY:MM:DD (HH:MM:SS) per its specification. I don't want to records the seconds from the time. I want my format to be YYYY:MM:DD (HH:MM).
How I can achieve this, regardless the OS?
0
1
the EXIF DateTimeOriginal format is YYYY:MM:DD (HH:MM:SS) per its specification. I don't want to records the seconds from the time. I want my format to be YYYY:MM:DD (HH:MM).
How I can achieve this, regardless the OS?
2
ExifTool lets you read and write EXIF data. You can use it to extract the timestamp, set the seconds value to zero and write it back.
ExifTool works on Windows, Linux and Mac. You'll need to write a script or program to manipulate the timestamp, but you can use your script or programming language of choice.
I don't want to set the seconds to 00. I want not to record them at all, thus :SS filed will disappear. – grs – 2011-08-13T15:56:37.150
1The EXIF date/time fields use ISO standard date strings, which require the seconds field as far as I know. If you were to figure out a way toactually remove the seconds field, it may cause problems for other programs that try to parse it. You could certainly try using Exiftool to write the timestamp without the seconds field. I suspect it will either complain or it will set seconds to zero. – juggler – 2011-08-13T16:05:05.640