Feature #1050
Extend exif <> iptc <> xmp conversions
30%
Description
The exiv2 manpage has examples of syncing and converting metadata between XMP, IPTC, and EXIF using the -i and -e options. The list of properties converted are listed in convert.cpp along with functions such as cnvFromXmp and syncExifWithXmp.
I propose that these functions be extended to include other desirable conversions such as those in the Metadata Working Group guidelines and those in common usage. MWG guidelines, for example, recommend that keys with the same information be mapped together.
Description: Exif.Image.ImageDescription | Iptc.Application2.Caption | Xmp.dc.description
Creator: Exif.Image.Artist | Iptc.Application2.By-line | Xmp.dc.creator
DateTimeOriginal: Exif.Photo.DateTimeOriginal && Exif.Photo.SubSecTimeOriginal | Iptc.Application2.DateCreated && Iptc.Application2.TimeCreated | Xmp.photoshop.DateCreated
DateTimeDigitized: Exif.Photo.DateTimeDigitized && Exif.Photo.SubSecTimeDigitized | Iptc.Application2.DigitizationDate && and DigitalCreationTime | Xmp.xmp.CreateDate
There are other mappings recommended and in common use that should be part of this update.
So what do you think team? Would you volunteer to help me in this project?
Files
Related issues
Associated revisions
History
Updated by Robin Mills over 6 years ago
Alan
I didn't know we did those conversions. Somebody asked about this earlier in the week: http://dev.exiv2.org/boards/3/topics/1974
There are samples that do conversions. Nobody's ever asked about this before - so I've never had reason to look into this. I nobody volunteers to help you, I will. I you specify what's to be done, I'll do the code. However if anybody else volunteers, I'm happy to not become involved.
Robin
Updated by Alan Pater over 6 years ago
Hi Robin
Yes, I saw that topic which reminded me that I had seen those conversion functions. My quick test indicates that they won't currently do what was requested there, but I could be mistaken.
I can definitely work on the specification on what I believe needs to be done to get us there.
Thanks for taking the time out your vacation to respond!
Updated by Robin Mills over 6 years ago
No, Thank You for stepping into this. We've been for a great day out in Peak District National Park and I saw your message when I got back to where we are staying. I went for a little sleep and when I awake - you've stepping into the case.
This is wonderful. The project makes progress while I'm asleep. I'll assign this to you. When you require me to do something, assign this to me.
Updated by Robin Mills over 6 years ago
- Category set to metadata
- Status changed from New to Assigned
- Assignee set to Alan Pater
- Target version set to 0.25
Updated by Alan Pater over 6 years ago
Onwards and upwards Robin!
I've dug in a bit more and discovered that the existing conversion functions already handle a lot of MWG mapping guidelines. For MWG compliance it appears we don't need to do anything with Keywords, Description, Orientation, Copyright, Creator. And I have just added conversions for Rating.
I think the next step is the various Date/Time properties. These come in all kinds of different formats. EXIF has separate keys for subSec times, IPTC has separate keys for Date & Time, XMP merges everything into a single key. Sometimes we find that applications have written them incorrectly. This is where I am challenged.
By the way, the commands I used are as follows:
exiv2 -eX image.jpg exiv2 -iX image.jpgThe original image.jpg contained only exif metadata. The 1st command exports to an XMP sidecar file with the exif keys mapped to IPTC and XMP. The 2nd command imports the data from the sidecar file. image.jpg then contains the metadata in EXIF, IPTC, and XMP. There could be a way to do it all in one step, no?
Updated by Alan Pater over 6 years ago
- % Done changed from 0 to 70
The conversions to Xmp.photoshop.DateCreated and Xmp.xmp.CreateDate are complete. What is missing are the conversions to IPTC Date and IPTC Time. Those are separate keys, so the input datetime needs to be divided into date and time.
Updated by Alan Pater over 6 years ago
- Target version changed from 0.25 to 0.26
- % Done changed from 70 to 30
Issue #864 closes the simple exif <> XMP DateTime conversions. Complete MWG compliant IPTC conversions is a more complex task, to be worked on in the conversions branch.
Updated by Alan Pater over 5 years ago
- Assignee deleted (
Alan Pater) - Target version changed from 0.26 to 0.28
- Estimated time set to 25.00 h
I propose that these conversions be moved to an external sample program. My reasoning is that these conversions are unexpected behaviour when trying to create a simple XMP sidecar file using "exiv2 -eX".
#1050 Add Rating and additional simple DateTime conversions