Main Menu

Delete Keywords

Started by Archive, May 12, 2010, 08:54:12 AM

Previous topic - Next topic

Archive

[Originally posted by heiko on 2007-12-03 21:13:20-08]

Hello,

I like to call ExifTool with the following params to delete the City from the Keywords:
ExifTool -IPTC:Keywords-=IPTC:City *.jpg

But it does not work. What is wrong? Or does this not work?

Heiko

Archive

[Originally posted by exiftool on 2007-12-03 23:18:31-08]

Hi Heiko,

The -= argument expects a tag value on the RHS, but
you want to use a tag name, so you need to use the
-tagsfromfile feature that allows you to copy
(or with "-", delete) a tag value by specifying
the tag name:

Code:
exiftool "-iptc:keywords-<iptc:city" *.jpg

See the -tagsFromFile documentation for details.  In
the above command, -tagsFromFile @ is assumed.

- Phil

Archive

[Originally posted by heiko on 2007-12-04 07:33:57-08]

Hi Phil,

thank you for your answer. It works ..

Heiko