-
Hello I am currently working on a Node.js project that requires the addition of location metadata to Here is the relevant part of my code: const exifObject = {
'CreateDate': creationDate,
'DateTimeOriginal': creationDate,
'QuickTime:CreationDate': creationDate,
'QuickTime:GPSCoordinates': iso6709Coordinates
};
await exiftool.write(fileName, exifObject, ['-overwrite_original']); The iso6709Coordinates are in the ISO 6709:2008 format. I am not sure why the QuickTime:GPSCoordinates field isn't populating as expected. Is there something that I may be missing or doing incorrectly in my code? Any guidance on this matter would be greatly appreciated. Thank you in advance for your assistance, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Looks like you want the Also: make sure you check out (You may need to specify latitude and longitude separately) |
Beta Was this translation helpful? Give feedback.
Looks like you want the
Keys
group instead ofQuickTime
? https://exiftool.org/forum/index.php?topic=10081.0Also: make sure you check out
https://exiftool.org/TagNames/QuickTime.html
(You may need to specify latitude and longitude separately)