-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.ExifTool_config
108 lines (102 loc) · 4.03 KB
/
.ExifTool_config
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
#------------------------------------------------------------------------------
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
# File: ExifTool_config --> ~/.ExifTool_config
#
# Description: AVM configuration file for Image::ExifTool
#
# Notes: To activate this file, rename it to ".ExifTool_config" and
# place it in your home directory or the exiftool application
# directory. This causes ExifTool to automatically load the file
# when run. Your home directory is determined by the first
# defined of the following environment variables:
#
# 1. EXIFTOOL_HOME
# 2. HOME
# 3. HOMEDRIVE + HOMEPATH
# 4. (the current directory)
#
%Image::ExifTool::UserDefined = (
'Image::ExifTool::XMP::Main' => {
avm => {
SubDirectory => {
TagTable => 'Image::ExifTool::UserDefined::avm',
},
},
xapRights => {
SubDirectory => {
TagTable => 'Image::ExifTool::XMP::xapRights',
},
},
},
);
# This is a basic example of the definition for a new XMP namespace.
# This table is referenced through a SubDirectory tag definition
# in the %Image::ExifTool::UserDefined definition above.
# The namespace prefix for these tags is 'xxx', which corresponds to
# an ExifTool family 1 group name of 'XMP-xxx'.
%Image::ExifTool::UserDefined::avm = (
%xmpTableDefaults,
GROUPS => { 0 => 'XMP', 1 => 'XMP-avm', 2 => 'Image' },
NAMESPACE => { 'avm' => 'http://www.communicatingastronomy.org/avm/1.0/' },
WRITABLE => 'string',
'Distance' => { List => 'Seq' },
'Distance.Notes' => { },
'ReferenceURL' => { },
'ID' => { },
'Type' => { },
'Image.ProductQuality' => { },
'ProposalID' => { List => 'Bag' },
'PublicationID' => { List => 'Bag' },
'Spectral.Notes' => { Writable => 'lang-alt' },
'Temporal.StartTime' => { List => 'Seq' },
'Temporal.IntegrationTime' => { List => 'Seq' },
'DatasetID' => { List => 'Seq' },
'Spatial.CoordinateFrame' => { },
'Spatial.Equinox' => { },
'Spatial.Rotation' => { },
'Spatial.CoordsystemProjection' => { },
'Spatial.Quality' => { },
'Spatial.Notes' => { Writable => 'lang-alt' },
'Spatial.FITSheader' => { },
'Publisher' => { },
'PublisherID' => { },
'ResourceID' => { },
'ResourceURL' => { },
'RelatedResources' => { List => 'Bag' },
'MetadataDate' => { },
'MetadataVersion' => { },
'iptc_contactID' => { },
'iptc_contactURL' => { },
'Subject.Category' => { List => 'Bag' },
'Facility' => { List => 'Seq' },
'Instrument' => { List => 'Seq' },
'Spectral.ColorAssignment' => { List => 'Seq' },
'Spectral.Band' => { List => 'Seq' },
'Spectral.Bandpass' => { List => 'Seq' },
'Spectral.CentralWavelength' => { List => 'Seq' },
'Spatial.ReferenceValue' => { List => 'Seq' },
'Spatial.ReferenceDimension' => { List => 'Seq' },
'Spatial.ReferencePixel' => { List => 'Seq' },
'Spatial.Scale' => { List => 'Seq' },
);
# XMP Rights Management schema properties (was formerly xmpRights)
%Image::ExifTool::XMP::xapRights = (
%xmpTableDefaults,
GROUPS => { 1 => 'XMP-xapRights', 2 => 'Author' },
NAMESPACE => { 'xapRights' => 'http://ns.adobe.com/xap/1.0/rights/' },
UsageTerms => { Writable => 'lang-alt' },
);
#------------------------------------------------------------------------------
1; #end