Workflow write to IPTC?

Started by salme, July 22, 2015, 06:52:28 AM

Previous topic - Next topic

salme

Thank you for exif-tool!
I write the filename into IPTC using:
exiftool "-iptc:caption-abstract<filename" *.jpg
I want to use this in a workflow but not quite sure how to set it up so that its esy to use, as I will use it alot.
How do I specify the folder hardcoded? Or can you create a bat file that you drop a folder on?
Is it possible to save the file with iptc to a different folder instead of backing up originals?
Thanks

Phil Harvey

Quote from: salme on July 22, 2015, 06:52:28 AM
How do I specify the folder hardcoded?

exiftool "-iptc:caption-abstract<filename" DIR

QuoteOr can you create a bat file that you drop a folder on?

In a .bat file: exiftool "-iptc:caption-abstract<filename" %*

QuoteIs it possible to save the file with iptc to a different folder instead of backing up originals?

exiftool "-iptc:caption-abstract<filename" -o DSTDIR/ SRCDIR

- Phil
...where DIR is the name of a directory/folder containing the images.  On Mac/Linux/PowerShell, use single quotes (') instead of double quotes (") around arguments containing a dollar sign ($).