I'm trying to add a custom field to my images that will act as keywords. that means I can write multiple words there separately. but i dont know number of keywords i will add each time
I tried to create my Config but then i can add just one value to this field
%Image::ExifTool::UserDefined = (
'Image::ExifTool::XMP::xmp' => {
CustomKw => { List => { }, },
},
);
and then run
exiftool -config newfield.config -xmp:CustomKw+=kw4 -xmp:CustomKw+=kw5 -xmp:CustomKw+=kw6 MYFILE
but it always write just one keyword
The value of List should be 'Bag', 'Seq' or 'Alt' where you have { }.
Also, custom XMP tags should be added to custom namespaces, not the standard 'xmp' namespace.
- Phil
Thank you I will build a custom namespace if I manage to do the rest of the things
so i was able to write my data using this:
%Image::ExifTool::UserDefined = (
'Image::ExifTool::XMP::xmp' => {
TitlePL => { },
DescriptionPL => { },
CategoriesPL => { List => 'Bag' },
KeywordsPL => { List => 'Bag' },
},
);
Is it normal that these fields are later visible with spaces?
TitlePL => Title PL
DescriptionPL => Description PL
CategoriesPL => Categories PL
KeywordsPL => Keywords PL
See FAQ 2 (https://exiftool.org/faq.html#Q2)
- Phil
one more question if i created custom XMP fields with config file do i need this config file every time to update these fields later ?
You need the config file to write XMP, but not to read it.
- Phil