exiftool-vendored.pl 12.73.0 → 12.78.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/Changes +94 -6
- package/bin/MANIFEST +4 -0
- package/bin/META.json +1 -1
- package/bin/META.yml +1 -1
- package/bin/README +46 -45
- package/bin/config_files/example.config +10 -2
- package/bin/exiftool +143 -94
- package/bin/lib/File/RandomAccess.pm +31 -5
- package/bin/lib/File/RandomAccess.pod +4 -4
- package/bin/lib/Image/ExifTool/7Z.pm +3 -3
- package/bin/lib/Image/ExifTool/AFCP.pm +2 -2
- package/bin/lib/Image/ExifTool/BZZ.pm +2 -2
- package/bin/lib/Image/ExifTool/BuildTagLookup.pm +7 -7
- package/bin/lib/Image/ExifTool/Canon.pm +17 -13
- package/bin/lib/Image/ExifTool/CanonVRD.pm +8 -2
- package/bin/lib/Image/ExifTool/DICOM.pm +2 -2
- package/bin/lib/Image/ExifTool/DNG.pm +4 -4
- package/bin/lib/Image/ExifTool/Exif.pm +54 -5
- package/bin/lib/Image/ExifTool/FLIR.pm +2 -2
- package/bin/lib/Image/ExifTool/Fixup.pm +3 -3
- package/bin/lib/Image/ExifTool/FlashPix.pm +3 -3
- package/bin/lib/Image/ExifTool/FujiFilm.pm +8 -3
- package/bin/lib/Image/ExifTool/GPS.pm +5 -3
- package/bin/lib/Image/ExifTool/Geolocation.dat +0 -0
- package/bin/lib/Image/ExifTool/Geolocation.pm +237 -0
- package/bin/lib/Image/ExifTool/Geotag.pm +4 -4
- package/bin/lib/Image/ExifTool/HtmlDump.pm +7 -4
- package/bin/lib/Image/ExifTool/ID3.pm +2 -2
- package/bin/lib/Image/ExifTool/Import.pm +9 -6
- package/bin/lib/Image/ExifTool/JSON.pm +11 -11
- package/bin/lib/Image/ExifTool/Jpeg2000.pm +51 -12
- package/bin/lib/Image/ExifTool/MIE.pm +3 -3
- package/bin/lib/Image/ExifTool/MWG.pm +1 -0
- package/bin/lib/Image/ExifTool/MacOS.pm +19 -4
- package/bin/lib/Image/ExifTool/MinoltaRaw.pm +2 -2
- package/bin/lib/Image/ExifTool/Nikon.pm +5 -3
- package/bin/lib/Image/ExifTool/NikonCustom.pm +3 -3
- package/bin/lib/Image/ExifTool/Ogg.pm +4 -3
- package/bin/lib/Image/ExifTool/Olympus.pm +3 -1
- package/bin/lib/Image/ExifTool/PDF.pm +59 -9
- package/bin/lib/Image/ExifTool/PLIST.pm +3 -3
- package/bin/lib/Image/ExifTool/PanasonicRaw.pm +3 -3
- package/bin/lib/Image/ExifTool/Pentax.pm +1 -1
- package/bin/lib/Image/ExifTool/PhaseOne.pm +2 -2
- package/bin/lib/Image/ExifTool/Photoshop.pm +3 -3
- package/bin/lib/Image/ExifTool/PostScript.pm +2 -2
- package/bin/lib/Image/ExifTool/QuickTime.pm +223 -117
- package/bin/lib/Image/ExifTool/QuickTimeStream.pl +260 -242
- package/bin/lib/Image/ExifTool/RSRC.pm +2 -2
- package/bin/lib/Image/ExifTool/Samsung.pm +4 -4
- package/bin/lib/Image/ExifTool/Shift.pl +1 -2
- package/bin/lib/Image/ExifTool/SigmaRaw.pm +3 -3
- package/bin/lib/Image/ExifTool/Sony.pm +3 -3
- package/bin/lib/Image/ExifTool/TagInfoXML.pm +2 -2
- package/bin/lib/Image/ExifTool/TagLookup.pm +85 -8
- package/bin/lib/Image/ExifTool/TagNames.pod +148 -8
- package/bin/lib/Image/ExifTool/WriteCanonRaw.pl +1 -1
- package/bin/lib/Image/ExifTool/WriteExif.pl +26 -23
- package/bin/lib/Image/ExifTool/WritePDF.pl +1 -1
- package/bin/lib/Image/ExifTool/WriteQuickTime.pl +15 -2
- package/bin/lib/Image/ExifTool/WriteXMP.pl +4 -2
- package/bin/lib/Image/ExifTool/Writer.pl +77 -52
- package/bin/lib/Image/ExifTool/XMP.pm +2 -1
- package/bin/lib/Image/ExifTool/XMP2.pl +9 -0
- package/bin/lib/Image/ExifTool/ZIP.pm +6 -6
- package/bin/lib/Image/ExifTool.pm +204 -63
- package/bin/lib/Image/ExifTool.pod +118 -94
- package/bin/perl-Image-ExifTool.spec +45 -44
- package/bin/pp_build_exe.args +4 -230
- package/package.json +4 -4
package/bin/Changes
CHANGED
|
@@ -4,9 +4,96 @@ ExifTool Version History
|
|
|
4
4
|
|
|
5
5
|
RSS feed: https://exiftool.org/rss.xml
|
|
6
6
|
|
|
7
|
-
Note: The most recent production release is Version 12.
|
|
7
|
+
Note: The most recent production release is Version 12.76. (Other versions are
|
|
8
8
|
considered development releases, and are not uploaded to MetaCPAN.)
|
|
9
9
|
|
|
10
|
+
Mar. 5, 2024 - Version 12.78 - "Geolocation"
|
|
11
|
+
|
|
12
|
+
- Added new Geolocation feature and write-only Geolocate tag
|
|
13
|
+
- Added new config file entry (@Image::ExifTool::UserDefined::Arguments) to
|
|
14
|
+
allow default command-line arguments to be specified
|
|
15
|
+
- Added print conversion for TIFF-EPStandardID
|
|
16
|
+
- Added ability to delete Nextbase information from MP4 videos
|
|
17
|
+
- Decode timed GPS from MP4 videos written by Nextbase software
|
|
18
|
+
- Decode a number of new tags from Nextbase MP4 videos
|
|
19
|
+
- Decode a few new tags from Garmin MP4 videos
|
|
20
|
+
- Extract PreviewJXL images from DNG 1.7 files
|
|
21
|
+
- Generate Validate, ImageDataHash and UserParam tags earlier to allow them to
|
|
22
|
+
be used in UserDefined Composite tags
|
|
23
|
+
- Enhanced the -c option so a minus sign in the format specification prints a
|
|
24
|
+
signed coordinate without a leading "+" for positive numbers
|
|
25
|
+
- Changed formatting of some Accelerometer tags for consistency
|
|
26
|
+
- Changed behaviour of -ee3 option to do a brute-force scan for freeGPS in the
|
|
27
|
+
media data even when referenced by 'gps ' atom
|
|
28
|
+
- Other internal changes to decoding of timed GPS from videos
|
|
29
|
+
- Fixed problem were ExifTool would give up on extracting some types of timed
|
|
30
|
+
GPS from videos after 100 void fixes
|
|
31
|
+
- Fixed bug that could cause runtime error when reading Ogg files
|
|
32
|
+
- Fixed issue where some tags from alternate files using the -fileNUM option
|
|
33
|
+
weren't generated as requested
|
|
34
|
+
- API Changes:
|
|
35
|
+
- Added Geolocation,
|
|
36
|
+
GeolocMaxDist and
|
|
37
|
+
GeolocMinPop API options
|
|
38
|
+
|
|
39
|
+
Feb. 16, 2024 - Version 12.77
|
|
40
|
+
|
|
41
|
+
- Added new Olympus CameraType and LensType value (thanks herb)
|
|
42
|
+
- Added a new Canon Irix LensType
|
|
43
|
+
- Added the ability to delete MacOS XAttrMDItemWhereFroms
|
|
44
|
+
- Decode a few new Canon DPP tags (thanks John Moyer)
|
|
45
|
+
- Decode timed GPS from Adzome GS65H MOV videos
|
|
46
|
+
- Improved handling of XML-unfriendly characters in JSON field names (fixes
|
|
47
|
+
issue where -X option could produce invalid XML when reading JSON with the
|
|
48
|
+
-struct option)
|
|
49
|
+
- Fixed decoding of ShutterCount for Canon G5X-ii CR3 files
|
|
50
|
+
|
|
51
|
+
Jan. 31, 2024 - Version 12.76 (production release)
|
|
52
|
+
|
|
53
|
+
- Properly implement patch of 12.45 to avoid duplicating raw data when writing
|
|
54
|
+
Sony ARW images where the raw data is double-referenced as both strips and
|
|
55
|
+
tiles
|
|
56
|
+
- Improved handling of bad offsets in HtmlDump output
|
|
57
|
+
|
|
58
|
+
Jan. 30, 2024 - Version 12.75 (production release)
|
|
59
|
+
|
|
60
|
+
- CORRUPTION WARNING: Fixed bug introduced in 12.45 which could result in
|
|
61
|
+
corrupted Sony ARW images from some newer models when rewriting lossless
|
|
62
|
+
compressed ARW images which were previously edited by 12.44 or earlier
|
|
63
|
+
(the corruption is repairable, but requires a special version of ExifTool)
|
|
64
|
+
- Added ability to read C2PA JUMBF metadata from PDF and SVG files
|
|
65
|
+
- Added ability to extract JUMBF metadata as a block
|
|
66
|
+
- Added read support for C2PA (JUMBF-format) files
|
|
67
|
+
- Removed "date before 1970" warning entirely since 64-bit systems should be
|
|
68
|
+
able to handle dates in this range
|
|
69
|
+
- Improved Canon FocusMode decoding
|
|
70
|
+
- Fixed bug introducd in 12.74 which could cause "Undefined subroutine"
|
|
71
|
+
runtime error when reading MIE files
|
|
72
|
+
|
|
73
|
+
Jan. 23, 2024 - Version 12.74
|
|
74
|
+
|
|
75
|
+
- Added a couple of new Nikon lenses (thanks Chris)
|
|
76
|
+
- Added write support for a few new QuickTime Keys tags
|
|
77
|
+
- Decode ShutterCount for Canon EOS R5 (thanks John Moyer)
|
|
78
|
+
- Improved error messages in the case of file read errors
|
|
79
|
+
- Enhanced tag name strings (eg. -if and -p option arguments) to allow values
|
|
80
|
+
of multiple matching tags to be concatenated when a group name of "All" is
|
|
81
|
+
specified
|
|
82
|
+
- Enhanced -p option to add -p- feature which avoids adding trailing newline
|
|
83
|
+
- Changed warning from "Shift results in negative time" to "Shift results in
|
|
84
|
+
date before 1970"
|
|
85
|
+
- Patched calculation of GPSDateTime for the timed metadata in Track3 of
|
|
86
|
+
Garmin videos so the API QuickTimeUTC option is no longer required
|
|
87
|
+
- Fixed conversion error when writing QuickTime:GoogleTrackDuration
|
|
88
|
+
- Fixed misidentification of non-TIFF-format files containing DNGVersion tag
|
|
89
|
+
- Fixed bug where Avoid-ed XMP structures could be created when writing
|
|
90
|
+
another same-named structure
|
|
91
|
+
- Internal Changes:
|
|
92
|
+
- Changed form of all new() calls to accommodate backward
|
|
93
|
+
incompatibilities in recent versions of Perl
|
|
94
|
+
- Changed order of InsertTagValues() arguments
|
|
95
|
+
- DateFmt() now returns value of formatted date/time string
|
|
96
|
+
|
|
10
97
|
Jan. 10, 2024 - Version 12.73
|
|
11
98
|
|
|
12
99
|
- Added write support for Leica XMP-xmpDSA tags
|
|
@@ -22,7 +109,8 @@ Jan. 10, 2024 - Version 12.73
|
|
|
22
109
|
decoding
|
|
23
110
|
- Fixed writing of date/time tags in XMP-xmpMM:Pantry structure
|
|
24
111
|
- API Changes:
|
|
25
|
-
- Added LimitLongValues option
|
|
112
|
+
- Added LimitLongValues option to provide control over tags which
|
|
113
|
+
previously had a hard-coded length limit
|
|
26
114
|
|
|
27
115
|
Dec. 29, 2023 - Version 12.72
|
|
28
116
|
|
|
@@ -501,7 +589,7 @@ Oct. 13, 2022 - Version 12.48
|
|
|
501
589
|
"Z" are actually in Zulu time -- a bit of a mess really)
|
|
502
590
|
- Prevent dynamically-generated Unknown tags from being extracted when the
|
|
503
591
|
-validate option is used without -u
|
|
504
|
-
- Patched to better handle irregular timestamps in streaming GPS of
|
|
592
|
+
- Patched to better handle irregular timestamps in streaming GPS of Nextbase
|
|
505
593
|
dashcam videos
|
|
506
594
|
- Fixed incompatibility with Sigma Photo Pro which could result in Sigma Photo
|
|
507
595
|
Pro corrupting an ExifTool-edited X3F image (the section length in the
|
|
@@ -1373,7 +1461,7 @@ Mar. 19, 2020 - Version 11.92
|
|
|
1373
1461
|
- Added a new Nikon LensID (thanks Wolfgang Exler)
|
|
1374
1462
|
- Decode a few new Leica tags (thanks Tim Gray)
|
|
1375
1463
|
- Decode AccelerometerData from Samsung Gear 360 videos
|
|
1376
|
-
- Fixed a couple of problems decoding timed GPS metadata from
|
|
1464
|
+
- Fixed a couple of problems decoding timed GPS metadata from Nextbase dashcam
|
|
1377
1465
|
videos
|
|
1378
1466
|
- Fixed problem where -X option could produce invalid XML when reading
|
|
1379
1467
|
corrupted XMP
|
|
@@ -2262,7 +2350,7 @@ Oct. 16, 2018 - Version 11.14
|
|
|
2262
2350
|
|
|
2263
2351
|
Oct. 9, 2018 - Version 11.13
|
|
2264
2352
|
|
|
2265
|
-
- Decode GPS from
|
|
2353
|
+
- Decode GPS from Nextbase 512G dashcam MOV videos (different than 512GW)
|
|
2266
2354
|
- Added a new Canon LensType (thanks LibRaw)
|
|
2267
2355
|
- Minor improvements to verbose dump of streaming GPS metadata
|
|
2268
2356
|
- Reverted change of version 10.71 which resulted in Windows not recognizing
|
|
@@ -2281,7 +2369,7 @@ Oct. 2, 2018 - Version 11.12
|
|
|
2281
2369
|
- Added a new Sony/Minolta LensType (thanks LibRaw and Jos Roost)
|
|
2282
2370
|
- Added a new Nikon LensID
|
|
2283
2371
|
- Decode a few new Sony SRF2 tags (thanks LibRaw)
|
|
2284
|
-
- Decode GPS from
|
|
2372
|
+
- Decode GPS from Nextbase 512GW dashcam MOV videos
|
|
2285
2373
|
- Validate MS-DOC FIB before extracting contained tags
|
|
2286
2374
|
- Fixed bug extracting GPSSpeed for some dashcam models
|
|
2287
2375
|
|
package/bin/MANIFEST
CHANGED
|
@@ -294,6 +294,8 @@ lib/Image/ExifTool/GIF.pm
|
|
|
294
294
|
lib/Image/ExifTool/GIMP.pm
|
|
295
295
|
lib/Image/ExifTool/GPS.pm
|
|
296
296
|
lib/Image/ExifTool/GeoTiff.pm
|
|
297
|
+
lib/Image/ExifTool/Geolocation.dat
|
|
298
|
+
lib/Image/ExifTool/Geolocation.pm
|
|
297
299
|
lib/Image/ExifTool/Geotag.pm
|
|
298
300
|
lib/Image/ExifTool/GoPro.pm
|
|
299
301
|
lib/Image/ExifTool/H264.pm
|
|
@@ -543,6 +545,7 @@ t/ExifTool_32.out
|
|
|
543
545
|
t/ExifTool_33.out
|
|
544
546
|
t/ExifTool_34.out
|
|
545
547
|
t/ExifTool_35.out
|
|
548
|
+
t/ExifTool_36.out
|
|
546
549
|
t/ExifTool_4.out
|
|
547
550
|
t/ExifTool_5.out
|
|
548
551
|
t/ExifTool_6.out
|
|
@@ -920,6 +923,7 @@ t/Writer_58.out
|
|
|
920
923
|
t/Writer_59.out
|
|
921
924
|
t/Writer_6.out
|
|
922
925
|
t/Writer_60.out
|
|
926
|
+
t/Writer_61.out
|
|
923
927
|
t/Writer_7.out
|
|
924
928
|
t/Writer_9.out
|
|
925
929
|
t/XISF.t
|
package/bin/META.json
CHANGED
package/bin/META.yml
CHANGED
package/bin/README
CHANGED
|
@@ -14,49 +14,50 @@ supported by ExifTool (r = read, w = write, c = create):
|
|
|
14
14
|
|
|
15
15
|
File Types
|
|
16
16
|
------------+-------------+-------------+-------------+------------
|
|
17
|
-
360 r/w | DOCX r |
|
|
18
|
-
3FR r | DPX r |
|
|
19
|
-
3G2 r/w | DR4 r/w/c |
|
|
20
|
-
3GP r/w | DSS r |
|
|
21
|
-
7Z r | DV r |
|
|
22
|
-
A r | DVB r/w |
|
|
23
|
-
AA r | DVR-MS r |
|
|
24
|
-
AAC r | DYLIB r |
|
|
25
|
-
AAE r | EIP r |
|
|
26
|
-
AAX r/w | EPS r/w |
|
|
27
|
-
ACR r | EPUB r |
|
|
28
|
-
AFM r | ERF r/w |
|
|
29
|
-
AI r/w | EXE r |
|
|
30
|
-
AIFF r | EXIF r/w/c |
|
|
31
|
-
APE r | EXR r |
|
|
32
|
-
ARQ r/w | EXV r/w/c |
|
|
33
|
-
ARW r/w | F4A/V r/w |
|
|
34
|
-
ASF r | FFF r/w |
|
|
35
|
-
AVI r | FITS r |
|
|
36
|
-
AVIF r/w | FLA r |
|
|
37
|
-
AZW r | FLAC r |
|
|
38
|
-
BMP r | FLIF r/w |
|
|
39
|
-
BPG r | FLV r |
|
|
40
|
-
BTF r | FPF r |
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
17
|
+
360 r/w | DOCX r | ITC r | O r | RSRC r
|
|
18
|
+
3FR r | DPX r | J2C r | ODP r | RTF r
|
|
19
|
+
3G2 r/w | DR4 r/w/c | JNG r/w | ODS r | RW2 r/w
|
|
20
|
+
3GP r/w | DSS r | JP2 r/w | ODT r | RWL r/w
|
|
21
|
+
7Z r | DV r | JPEG r/w | OFR r | RWZ r
|
|
22
|
+
A r | DVB r/w | JSON r | OGG r | RM r
|
|
23
|
+
AA r | DVR-MS r | JXL r/w | OGV r | SEQ r
|
|
24
|
+
AAC r | DYLIB r | K25 r | ONP r | SKETCH r
|
|
25
|
+
AAE r | EIP r | KDC r | OPUS r | SO r
|
|
26
|
+
AAX r/w | EPS r/w | KEY r | ORF r/w | SR2 r/w
|
|
27
|
+
ACR r | EPUB r | LA r | ORI r/w | SRF r
|
|
28
|
+
AFM r | ERF r/w | LFP r | OTF r | SRW r/w
|
|
29
|
+
AI r/w | EXE r | LIF r | PAC r | SVG r
|
|
30
|
+
AIFF r | EXIF r/w/c | LNK r | PAGES r | SWF r
|
|
31
|
+
APE r | EXR r | LRV r/w | PBM r/w | THM r/w
|
|
32
|
+
ARQ r/w | EXV r/w/c | M2TS r | PCD r | TIFF r/w
|
|
33
|
+
ARW r/w | F4A/V r/w | M4A/V r/w | PCX r | TORRENT r
|
|
34
|
+
ASF r | FFF r/w | MACOS r | PDB r | TTC r
|
|
35
|
+
AVI r | FITS r | MAX r | PDF r/w | TTF r
|
|
36
|
+
AVIF r/w | FLA r | MEF r/w | PEF r/w | TXT r
|
|
37
|
+
AZW r | FLAC r | MIE r/w/c | PFA r | VCF r
|
|
38
|
+
BMP r | FLIF r/w | MIFF r | PFB r | VNT r
|
|
39
|
+
BPG r | FLV r | MKA r | PFM r | VRD r/w/c
|
|
40
|
+
BTF r | FPF r | MKS r | PGF r | VSD r
|
|
41
|
+
C2PA r | FPX r | MKV r | PGM r/w | WAV r
|
|
42
|
+
CHM r | GIF r/w | MNG r/w | PLIST r | WDP r/w
|
|
43
|
+
COS r | GLV r/w | MOBI r | PICT r | WEBP r/w
|
|
44
|
+
CR2 r/w | GPR r/w | MODD r | PMP r | WEBM r
|
|
45
|
+
CR3 r/w | GZ r | MOI r | PNG r/w | WMA r
|
|
46
|
+
CRM r/w | HDP r/w | MOS r/w | PPM r/w | WMV r
|
|
47
|
+
CRW r/w | HDR r | MOV r/w | PPT r | WPG r
|
|
48
|
+
CS1 r/w | HEIC r/w | MP3 r | PPTX r | WTV r
|
|
49
|
+
CSV r | HEIF r/w | MP4 r/w | PS r/w | WV r
|
|
50
|
+
CUR r | HTML r | MPC r | PSB r/w | X3F r/w
|
|
51
|
+
CZI r | ICC r/w/c | MPG r | PSD r/w | XCF r
|
|
52
|
+
DCM r | ICO r | MPO r/w | PSP r | XISF r
|
|
53
|
+
DCP r/w | ICS r | MQV r/w | QTIF r/w | XLS r
|
|
54
|
+
DCR r | IDML r | MRC r | R3D r | XLSX r
|
|
55
|
+
DFONT r | IIQ r/w | MRW r/w | RA r | XMP r/w/c
|
|
56
|
+
DIVX r | IND r/w | MXF r | RAF r/w | ZIP r
|
|
57
|
+
DJVU r | INSP r/w | NEF r/w | RAM r |
|
|
58
|
+
DLL r | INSV r | NKSC r/w | RAR r |
|
|
59
|
+
DNG r/w | INX r | NRW r/w | RAW r/w |
|
|
60
|
+
DOC r | ISO r | NUMBERS r | RIFF r |
|
|
60
61
|
|
|
61
62
|
Meta Information
|
|
62
63
|
----------------------+----------------------+---------------------
|
|
@@ -108,8 +109,8 @@ your home directory, then you would type the following commands in a
|
|
|
108
109
|
terminal window to extract and run ExifTool:
|
|
109
110
|
|
|
110
111
|
cd ~/Desktop
|
|
111
|
-
gzip -dc Image-ExifTool-12.
|
|
112
|
-
cd Image-ExifTool-12.
|
|
112
|
+
gzip -dc Image-ExifTool-12.78.tar.gz | tar -xf -
|
|
113
|
+
cd Image-ExifTool-12.78
|
|
113
114
|
./exiftool t/images/ExifTool.jpg
|
|
114
115
|
|
|
115
116
|
Note: These commands extract meta information from one of the test images.
|
|
@@ -6,7 +6,8 @@
|
|
|
6
6
|
# Notes: This example file shows how to define your own shortcuts and
|
|
7
7
|
# add new EXIF, IPTC, XMP, PNG, MIE and Composite tags, as well
|
|
8
8
|
# as how to specify preferred lenses for the LensID tag, and
|
|
9
|
-
# define new file types and default ExifTool
|
|
9
|
+
# define new file types and default ExifTool API options and
|
|
10
|
+
# command-line arguments.
|
|
10
11
|
#
|
|
11
12
|
# Note that unknown tags may be extracted even if they aren't
|
|
12
13
|
# defined, but tags must be defined to be written. Also note
|
|
@@ -345,7 +346,7 @@ use Image::ExifTool::MIE;
|
|
|
345
346
|
use Image::ExifTool::QuickTime;
|
|
346
347
|
$Image::ExifTool::QuickTime::Keys{PREFERRED} = 3;
|
|
347
348
|
|
|
348
|
-
# Specify default ExifTool
|
|
349
|
+
# Specify default ExifTool API options
|
|
349
350
|
# (see the Options function documentation for available options)
|
|
350
351
|
%Image::ExifTool::UserDefined::Options = (
|
|
351
352
|
CoordFormat => '%.6f', # change default GPS coordinate format
|
|
@@ -354,5 +355,12 @@ $Image::ExifTool::QuickTime::Keys{PREFERRED} = 3;
|
|
|
354
355
|
RequestAll => 3, # request additional tags not normally generated
|
|
355
356
|
);
|
|
356
357
|
|
|
358
|
+
# Specify default exiftool command-line arguments
|
|
359
|
+
# - inserted before all other options except -config
|
|
360
|
+
# - applies to all -execute'd commands
|
|
361
|
+
@Image::ExifTool::UserDefined::Arguments = (
|
|
362
|
+
'-i', 'HIDDEN', # ignore hidden files by default (names beginning with ".")
|
|
363
|
+
);
|
|
364
|
+
|
|
357
365
|
#------------------------------------------------------------------------------
|
|
358
366
|
1; #end
|