ExifTool Forum

ExifTool => Newbies => Topic started by: Carnolli on February 19, 2025, 07:42:48 PM

Title: Extracting acdsee categories from IPTC and copying them to XMP keywords field
Post by: Carnolli on February 19, 2025, 07:42:48 PM
Hi,
sorry for my bad English. I am a newbie here and want to transfer my mass of photos from Acdsee to Apple Photos.
To at least keep the categories attached to each picture I would like to copy them from the acdsee categories field as keywords to the keywords field.
I konow how to copy the content of one field to another.
But how do I get rid of the <Tags> to get and transfer just the text between them?
Thanks in advance!
CARNOLLI
Title: Re: Extracting acdsee categories from IPTC and copying them to XMP keywords field
Post by: StarGeek on February 19, 2025, 11:42:59 PM
Can you give an example of ACDSee tag looks like? Try this command
exiftool -G1 -a -s -Categories file.jpg

Then based upon that, show what the final data should look like.
Title: Re: Extracting acdsee categories from IPTC and copying them to XMP keywords field
Post by: Carnolli on February 20, 2025, 03:02:33 PM
Hi, thanks a lot for your very, very quick answer!

Now it is like:
[XMP-acdsee]    Categories                      : <Categories><Category Assigned="1">Technik<Category Assigned="1">Kfz</Category></Category><Category Assigned="1">Astronomie</Category></Categories>
And I would like the following result:
[IPTC]          Keywords                        : Technik Kfz Astronomie
So, "just" copying the values between the tags to the IPTC Keywords field with a spacer or a comma inbetween.
Title: Re: Extracting acdsee categories from IPTC and copying them to XMP keywords field
Post by: StarGeek on February 20, 2025, 03:40:54 PM
Try this
exiftool -sep ## "-Keywords<${Categories;my @categories=$_ =~/<Category[^>]*>([^<]*)/g;$_=join('##', @categories);}" /path/to/files/

Example:
C:\>exiftool -G1 -a -s -Keywords -Categories y:\!temp\Test4.jpg
[XMP-acdsee]    Categories                      : <Categories><Category Assigned="1">Technik<Category Assigned="1">Kfz</Category></Category><Category Assigned="1">Astronomie</Category></Categories>

C:\>exiftool -P -overwrite_original -sep ## "-Keywords<${Categories;my @categories=$_ =~/<Category[^>]*>([^<]*)/g;$_=join('##', @categories);}" y:\!temp\Test4.jpg
    1 image files updated

C:\>exiftool -G1 -a -s -Keywords -Categories y:\!temp\Test4.jpg
[IPTC]          Keywords                        : Technik, Kfz, Astronomie
[XMP-acdsee]    Categories                      : <Categories><Category Assigned="1">Technik<Category Assigned="1">Kfz</Category></Category><Category Assigned="1">Astronomie</Category></Categories>

Take note that Keywords is a List type tag (see FAQ #17, List-type tags (https://exiftool.org/faq.html#Q17)). It is shown as a comma separated string but each element is saved separately from the others.

I would also suggest using Subject instead of Keywords, as Keywords is part of the older outdated IPTC standard and Subject is part of the newer IPTC Core standard.

This command is for Windows CMD. Swap any double/single quotes for Mac/Linux. I can't help you if you insist on using PowerShell.
Title: Re: Extracting acdsee categories from IPTC and copying them to XMP keywords field
Post by: Carnolli on February 22, 2025, 07:04:37 PM
Thank you so much. You really are an expert. And whow - such a quick solution for this complex question!!!
Title: Re: Extracting acdsee categories from IPTC and copying them to XMP keywords field
Post by: Carnolli on March 04, 2025, 01:14:08 PM
Just in case somebody wants to switch from ACDSee for Windows to Apple Fotos like me (I was looking for a solution for a very long time):

After copying the ACDSee categories to the Keywords field like above, I also copied the names of the faces recognized to the Keywords Tag, deleting duplicates which could have resulted of the two actions:

exiftool -r -P -overwrite_original -sep ## "-Keywords+<${ACDSeeRegionName}" -api nodups /path/to/files

Now Apple Fotos can easily read all the information I collected over the times as it evaluates the keywords Tag.

Thanks to you all. :)