Using the SetAttr META
command it is possible to automate changes to file metadata.
For example, you could set up a series of buttons to apply different ratings to files.
This menu was created from six different commands, each of which applies a different rating to selected files.
- The command for Clear rating is SetAttr META rating:0
- The command for 1 star is SetAttr META rating:1
- The command for 2 stars is SetAttr META rating:2
and so on.
The general template for this command is:
SetAttr META keyword:<value> keyword:<value> ...
You can specify as many keyword:<value> pairs on the command line as you like. The keyword must be one of the metadata keywords listed on the Keywords for SetAttr META page. <value> will vary depending on the field you are setting.
It is important to remember that if <value> contains any embedded spaces, the entire keyword:<value> pair must be enclosed with quotes. For example,
SetAttr META "album:Dark Side Of The Moon" "albumartist:Pink Floyd"
The specified keyword can also contain wildcards, to apply the same value to multiple metadata fields at once. You could, for instance, set the artist, albumartist and origartist fields all at once with *artist. You can also use this to clear all metadata fields:
SetAttr META *
Some metadata values support more complex data than a simple string. For example, you can apply an offset to the EXIF date taken field, to adjust the current value rather than replacing it completely. To subtract one hour, the command would be:
SetAttr META datetaken:-1
See the Keywords for SetAttr META page for a full list of keywords and they values they can accept.
You can also copy certain combinations of metadata from a source file to the target files, using the copyfrom keyword. The template for this is:
SetAttr META copyfrom:<type>,<filename>
<type> is a numeric value that represents which type of properties should be copied. The available values for <type> are:
Type
Category
Copies
0
Music
Artist, Album, Year, Genre
1
Music
All except Title and Track
2
Music
All
3
Documents
Author and Ownership
4
Documents
All except Title and Subject
5
Documents
All
6
Movie
Director, Producer, Writer
7
Movie
All except Title
8
Movie
All
9
Picture
Author and Ownership
10
Picture
GPS
11
Picture
GPS and Camera
12
Picture
Author, Ownership, Camera
13
Picture
Author, Ownership, GPS
14
Picture
All
<file> is the source file to copy the specified metadata from. Remember that if the filename contains spaces, the keyword:<value> pair must be enclosed with quotes. For example,
SetATTR META "copyfrom:8,/myvideos/my home movie1.avi"