-
Notifications
You must be signed in to change notification settings - Fork 0
/
.ExifTool_config
58 lines (56 loc) · 2.54 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
#------------------------------------------------------------------------------
# File: .exiftool_config
#
# Description: 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. (On Mac and some Windows systems this must be done
# via the command line since the GUI's may not allow filenames to
# begin with a dot. Use the "rename" command in Windows or "mv"
# on the Mac.) 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)
#
# Alternatively, the -config option of the exiftool application
# may be used to load a specific configuration file (note that
# this must be the first option on the command line):
#
# exiftool -config example.config ...
#
# For detailed information on the definition of tag tables and
# tag information hashes, see lib/Image/ExifTool/README.
#------------------------------------------------------------------------------
# Shortcut tags are used when extracting information to simplify
# commonly used commands. They can be used to represent groups
# of tags, or to provide an alias for a tag name.
%Image::ExifTool::UserDefined::Shortcuts = (
Author => [
'EXIF:Artist',
'XMP-dc:Creator'],
Taken => [
'EXIF:ModifyDate', # used as the sort key by many applications
'EXIF:OffsetTime', # offset for ModifyDate
'EXIF:DateTimeOriginal', # date taken proper
'EXIF:OffsetTimeOriginal', # offset for DateTimeOriginal
'XMP-xmp:ModifyDate',
'XMP-exif:DateTimeOriginal',
'XMP-photoshop:DateCreated',
'XMP-tiff:DateTime',
'FileModifyDate'],
Digitized => [
'EXIF:CreateDate', # aka DateTimeDigitized in the EXIF spec
'EXIF:OffsetTimeDigitized', # offset for CreateDate
'XMP-xmp:CreateDate',
'XMP-exif:DateTimeDigitized'], # replaced by CreateDate in the spec but still used by digiKam
Modified => [
'XMP-xmp:MetadataDate'
],
);
#------------------------------------------------------------------------------
1; #end