I wanted to build an awesome place for people to discuss module specific issues, but I don't have any more time for this, and there are much better places to discuss Perl-related issues. I'd recommend asking your question on Stack Overflow or on Perl Monks.
If you are looking for a Perl tutorial or Perl-related news, I hope these links will serve you well.
Posted on 2008-11-16 10:08:21-08 by louiscar
TagsFromFile - batch operations on separate files

In and effort to create a batch file version using TagsFromFile to copy a tag out to an xmp or mie file I have this :
exiftool -TagsFromFile %%f.nef -xmp-crs:all *.xmp

However, if an xmp file is not present it will not be created and I get 'file not found'. If it is present then the process works and the tag is copied out to the xmp and a copy created.

I'm trying to use TagsFromFile to create an MIE or xmp for all files at once rather than having to do them individually. Is it possible ?
Direct Responses: 9331 | Write a response
Posted on 2008-11-16 10:53:06-08 by bogdan in response to 9330
Re: TagsFromFile - batch operations on separate files
Hi,

As far I can recall, "-o" switch is needed for creating output (xmp or mie) files. I have used something like this:
exiftool -o %f.xmp -xmp-crs:all *.nef
-hope that helps.

Bogdan
Direct Responses: 9335 | Write a response
Posted on 2008-11-16 15:19:55-08 by louiscar in response to 9331
Re: TagsFromFile - batch operations on separate files
Thanks Bogdan,
This works well. I guess I'm getting confused with when I need to use TagsFromFile,
Direct Responses: 9342 | Write a response
Posted on 2008-11-17 11:49:32-08 by exiftool in response to 9335
Re: TagsFromFile - batch operations on separate files
There are subtle differences between -o and -tagsfromfile. I have started to write some documentation to explain these details, and here is my current working copy:

http://owl.phy.queensu.ca/~phil/exiftool/metafiles.html

- Phil
Direct Responses: Write a response