-
The metadata editing page in the wiki indicates that Aves can create and/or modify Title/Description metadata in Exif, IPTC, and XMP for JPEGs. By default, when I edit a photo's Title/Description it looks like it is stored only in the XMP metadata. That is fine and I can see this data in Windows File Explorer and Exiftool. However, I'm currently doing some GIS stuff in QGIS and while Exif data is very easily read... XMP data is not. So, what I'm wondering is... How do I get my Title/Description edits in Aves to write to the respective Exif tags instead of the XMP ones? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 6 replies
-
Related code here: // write title:
// - IPTC / object-name, if IPTC exists
// - XMP / dc:title
// write description:
// - Exif / ImageDescription
// - IPTC / caption-abstract, if IPTC exists
// - XMP / dc:description For description at least it should already be written to both Exif and XMP. |
Beta Was this translation helpful? Give feedback.
Related code here:
aves/lib/model/entry/extensions/metadata_edition.dart
Line 228 in a9f88cb
For description at least it should already be written to both Exif and XMP.
In which Exif field specifically would you store the title?