custom IPTC field as list

Started by raulc, September 13, 2017, 12:54:37 PM

Previous topic - Next topic

raulc

currently i have a config file that defines some custom iptc fields.

%Image::ExifTool::UserDefined = (
    'Image::ExifTool::IPTC::ApplicationRecord' => {
        201 => {
            Name => 'IPTC201',
            Format => 'string[0,24]',
        },
    },
);
1; #end


i can use it and can write text values to it.

however i would like to add multiple list-values to it - like with keywords.
i am using the -csv option to import the values from a csv file.

whatever i do, even using -sep, does not seem to work.

thanks.

StarGeek

This thread has the answer (this post in particular).

Looking at the definition for keywords, which is a list type tag, it looks like you need to add Flags => 'List', to your definition.
"It didn't work" isn't helpful. What was the exact command used and the output.
Read FAQ #3 and use that cmd
Please use the Code button for exiftool output

Please include your OS/Exiftool version/filetype

raulc