ExifTool Forum

ExifTool => The "exiftool" Application => Topic started by: José Oliver-Didier on May 10, 2023, 01:54:06 PM

Title: Copying timezone from XMP to EXIF
Post by: José Oliver-Didier on May 10, 2023, 01:54:06 PM
Hello,

How can I set the 3 EXIF timezone offset values (OffsetTime, OffsetTimeOriginal, OffsetTimeDigitized) using the XMP timezone value in the XMP Date/Time Digitized, if available?

[XMP-exif]      Date/Time Digitized             : 2023:04:13 10:42:25+03:00
I know you can write to all three of these tags using:

-EXIF:OffsetTime*=+03:00
Title: Re: Copying timezone from XMP to EXIF
Post by: StarGeek on May 10, 2023, 02:10:40 PM
You can copy it directly
C:\>exiftool -time:all --system:all -G1 -a -s y:\!temp\Test4.jpg
[XMP-exif]      DateTimeDigitized              : 2023:04:13 10:42:25+03:00

C:\>exiftool -P -overwrite_original "-OffsetTime*<DateTimeDigitized" y:\!temp\Test4.jpg
    1 image files updated

C:\>exiftool -time:all --system:all -G1 -a -s y:\!temp\Test4.jpg
[ExifIFD]      OffsetTime                      : +03:00
[ExifIFD]      OffsetTimeOriginal              : +03:00
[ExifIFD]      OffsetTimeDigitized            : +03:00
[XMP-exif]      DateTimeDigitized              : 2023:04:13 10:42:25+03:00
Title: Re: Copying timezone from XMP to EXIF
Post by: José Oliver-Didier on May 18, 2023, 04:37:48 AM
Thanks!
Title: Re: Copying timezone from XMP to EXIF
Post by: Androne on January 14, 2024, 02:25:07 PM
Is there an easy way to do this in the reverse? So appending the time zone in OffsetTime to an XMP time field that is missing the time zone.
Title: Re: Copying timezone from XMP to EXIF
Post by: Phil Harvey on January 14, 2024, 02:28:10 PM
Like this?:

exiftool "-xmp:createdate<$xmp:createdate$offsettime" FILE

- Phil
Title: Re: Copying timezone from XMP to EXIF
Post by: StarGeek on January 14, 2024, 03:02:05 PM
Alternatively, if both EXIF:CreateDate and EXIF:OffsetTimeDigitized exist, then you could use
exiftool "-xmp:createdate<SubSecCreateDate" /path/to/files/

SubSecDateTimeOriginal/SubSecModifyDate would also be possible tags.  Though if any subsecond tags existed, they would also be included.