Jump to content

Metadata Export to XMP


kingsfan

Recommended Posts

The only way at the current Daminion version to extract the metadata from the image files (CR2, or any other formats) is to write a custom Export Addon using our Daminion Export SDK.

 

You can also do this by ExifTool:

 

Batch Processing

 

When batch-generating sidecar files from many images, the -o form of the command is easier to use:

exiftool -ext EXT -o %d%f.xmp -r DIR

 

where DIR is the name of the directory containing the images. Multiple -ext options may be used to process different file types in a single command.

 

However, this technique can not be used to add information to XMP sidecar files that already exist. For this, the -tagsFromFile form must be used:

 

exiftool -ext xmp -tagsfromfile %d%f.EXT -r DIR

 

But note that this command searches for the XMP files instead of the image files, so it will not generate new XMP sidecar files if some images don't have them. For this, the advanced (ie. tricky and confusing to use) -srcfile option comes in handy:

 

exiftool -ext EXT -tagsfromfile @ -srcfile %d%f.xmp -r DIR

 

Any of these forms may be used to process files stored in a directory other than the directory containing the images. For instance,

 

exiftool -ext EXT -o DSTDIR/%f.xmp -r SRCDIR

 

will output XMP files to DSTDIR with information from images in SRCDIR.

 

Source link

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...