exiftool_vendored 13.31.0 → 13.36.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.
- checksums.yaml +4 -4
- data/bin/Changes +88 -2
- data/bin/MANIFEST +5 -0
- data/bin/META.json +1 -1
- data/bin/META.yml +1 -1
- data/bin/Makefile.PL +1 -0
- data/bin/README +47 -46
- data/bin/exiftool +155 -120
- data/bin/lib/Image/ExifTool/BuildTagLookup.pm +7 -5
- data/bin/lib/Image/ExifTool/Canon.pm +46 -6
- data/bin/lib/Image/ExifTool/DJI.pm +54 -3
- data/bin/lib/Image/ExifTool/Exif.pm +9 -6
- data/bin/lib/Image/ExifTool/FlashPix.pm +4 -159
- data/bin/lib/Image/ExifTool/FujiFilm.pm +97 -32
- data/bin/lib/Image/ExifTool/Geolocation.dat +0 -0
- data/bin/lib/Image/ExifTool/Geotag.pm +5 -3
- data/bin/lib/Image/ExifTool/GoPro.pm +14 -2
- data/bin/lib/Image/ExifTool/LNK.pm +4 -1
- data/bin/lib/Image/ExifTool/Lang/cs.pm +0 -1
- data/bin/lib/Image/ExifTool/Lang/de.pm +0 -1
- data/bin/lib/Image/ExifTool/Lang/fr.pm +0 -1
- data/bin/lib/Image/ExifTool/Lang/it.pm +0 -1
- data/bin/lib/Image/ExifTool/Lang/ja.pm +0 -1
- data/bin/lib/Image/ExifTool/Lang/nl.pm +0 -1
- data/bin/lib/Image/ExifTool/Lang/pl.pm +0 -1
- data/bin/lib/Image/ExifTool/Lang/zh_cn.pm +0 -1
- data/bin/lib/Image/ExifTool/M2TS.pm +2 -4
- data/bin/lib/Image/ExifTool/Microsoft.pm +158 -1
- data/bin/lib/Image/ExifTool/Minolta.pm +4 -2
- data/bin/lib/Image/ExifTool/Nikon.pm +73 -37
- data/bin/lib/Image/ExifTool/NikonCustom.pm +40 -10
- data/bin/lib/Image/ExifTool/Olympus.pm +258 -34
- data/bin/lib/Image/ExifTool/Panasonic.pm +3 -3
- data/bin/lib/Image/ExifTool/Pentax.pm +341 -61
- data/bin/lib/Image/ExifTool/Protobuf.pm +1 -1
- data/bin/lib/Image/ExifTool/QuickTime.pm +11 -4
- data/bin/lib/Image/ExifTool/QuickTimeStream.pl +1 -1
- data/bin/lib/Image/ExifTool/README +2 -1
- data/bin/lib/Image/ExifTool/RIFF.pm +5 -3
- data/bin/lib/Image/ExifTool/Sony.pm +46 -17
- data/bin/lib/Image/ExifTool/TNEF.pm +487 -0
- data/bin/lib/Image/ExifTool/TagLookup.pm +4384 -4265
- data/bin/lib/Image/ExifTool/TagNames.pod +291 -27
- data/bin/lib/Image/ExifTool/WriteExif.pl +14 -12
- data/bin/lib/Image/ExifTool/Writer.pl +21 -16
- data/bin/lib/Image/ExifTool/XMP.pm +8 -2
- data/bin/lib/Image/ExifTool/XMP2.pl +1 -1
- data/bin/lib/Image/ExifTool/XMPStruct.pl +1 -1
- data/bin/lib/Image/ExifTool.pm +14 -4
- data/bin/lib/Image/ExifTool.pod +50 -44
- data/bin/perl-Image-ExifTool.spec +46 -45
- data/lib/exiftool_vendored/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 48115655191684a1376bb6803a1831f0364e3561b84fef9227979c762d840a9f
|
4
|
+
data.tar.gz: f8297fca14ffbfb66f8c5eca245f8096a940df011ae4a41dbe6ce4120c34b90b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3a122b46c9c3a876d70c732db1e2e5c7e039c7d1c7cf4735c41a1ceac1384a4ce4f9f42a04c7156932e105fbc8bfa3cef366f9fd17452ecb6fab41f78247f2f3
|
7
|
+
data.tar.gz: 6b105de18581c29ea2c56882113ada5e8519861f575e37be65282db903a6d49812c6b0b544d1bf3c3e1f35fb34bc9633bfd798b852e79c6020a113767c2db65d
|
data/bin/Changes
CHANGED
@@ -4,9 +4,95 @@ 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 13.
|
7
|
+
Note: The most recent production release is Version 13.36. (Other versions are
|
8
8
|
considered development releases, and are not uploaded to MetaCPAN.)
|
9
9
|
|
10
|
+
Sept. 9, 2025 - Version 13.36 (production release)
|
11
|
+
|
12
|
+
- Added a new Nikon LensID (thanks Max, github #345)
|
13
|
+
- Added new Sony and Pentax camera ID's (thanks Hubert Figuiere, github #347)
|
14
|
+
- Tolerate 'junk' after 'WAVE' chunk in LA, PAC, OFR and WV audio files
|
15
|
+
- Use gnu tar 1.35 to build the .tar.gz distribution package (versions
|
16
|
+
13.31-13.35 used bsdtar 3.5.3, and earlier versions used bsdtar 2.8.3)
|
17
|
+
|
18
|
+
Sept. 6, 2025 - Version 13.35 (production release)
|
19
|
+
|
20
|
+
- Added a new CanonModelID
|
21
|
+
- Added new Olympus PictureMode and LensType values (thanks Michael Meissner)
|
22
|
+
- Decode GPS from another DJI protobuf format (DJI Neo)
|
23
|
+
- Decode a few new FujiFilm tags
|
24
|
+
- Enhanced -ee option to extract M-RAW information from all images in FujiFilm
|
25
|
+
RAF files
|
26
|
+
- Improved handling of standard-format unknown XMP date/time tags when the API
|
27
|
+
XMPAutoConv option is set (which is the default) to put them in the "Time"
|
28
|
+
group and apply the -d date/time formatting
|
29
|
+
- Improved -fileNUM option so it may be used to access tags from alternate
|
30
|
+
files when the specified target FILE doesn't exist
|
31
|
+
- Improved print conversions for some Canon tags to handle "n/a" values
|
32
|
+
- Enhanced JSON long output (-j -l) so the API SaveBin option also returns the
|
33
|
+
Rational ("rat") value if available
|
34
|
+
- Changed -if option so the expression is evaluated even when the source file
|
35
|
+
doesn't exist (to allow more flexibily when using -fileNUM option or when
|
36
|
+
creating the output file when writing)
|
37
|
+
- Fixed decoding of a few new Pentax tags (thanks Karsten Gieselmann)
|
38
|
+
- Fixed -diff feature to report differences in binary-data values and to be
|
39
|
+
consistent with handling of backslashes in Windows path names
|
40
|
+
|
41
|
+
Aug. 18, 2025 - Version 13.34
|
42
|
+
|
43
|
+
- Decode a number of new Pentax tags (thanks Karsten Gieselmann)
|
44
|
+
- Decode a new Canon tag (thanks Peter Wem, github #344)
|
45
|
+
- Updated Sony decoding for the ILME-FX2 and DSC-RX1RM3 (thanks Jos Roost)
|
46
|
+
- Minor fixes to decoding of new Olympus tags (thanks Karsten Gieselmann)
|
47
|
+
- Reverted change of 13.20 which changed the behaviour when writing
|
48
|
+
incorrectly-formatted date/time values
|
49
|
+
- Patched to avoid "uninitialized value $module" when using some custom config
|
50
|
+
files
|
51
|
+
- Fixed issue reading maker notes from some Sony ILCE models
|
52
|
+
- API Changes:
|
53
|
+
- Added UndefTags option to allow -m
|
54
|
+
and/or -f to be used without modifying the value of undef tags in -if
|
55
|
+
expressions (which was the behaviour prior to version 12.60)
|
56
|
+
|
57
|
+
July 25, 2025 - Version 13.33
|
58
|
+
|
59
|
+
- Added read support for TNEF files (eg. "winmail.dat")
|
60
|
+
- Added a new Canon HighlightTonePriority value (github #339)
|
61
|
+
- Decode Canon FocusBracketing tag (github #340)
|
62
|
+
- Decode more tags for newer Nikon Z models (thanks Warren Hatch)
|
63
|
+
- Decode a few more Olympus tags (thanks Karsten Gieselmann)
|
64
|
+
- Decode face detection tags for the Pentax K-3III (thanks Karsten Gieselmann)
|
65
|
+
- Decode a few more FujiFilm tags (github #343)
|
66
|
+
- Handle Olympus RawDev2IFD tag 0x8000 (named it RawDevSubIFD)
|
67
|
+
- Improved recognition of some Sony lenses (github #342)
|
68
|
+
- Enhanced the -p option to cycle through sub-documents
|
69
|
+
- Improved extraction of GoPro timed GPS to use sub-document numbers to
|
70
|
+
separate the individual fixes, allowing -p to extract all fixes at
|
71
|
+
sub-second resolution (although for earlier models these may not contain
|
72
|
+
timestamps)
|
73
|
+
- Extract EXIF information from Sigma fp MOV videos
|
74
|
+
- Patched to avoid "multi-segment EXIF with external pointers" error when
|
75
|
+
writing Olympus OM-1 JPG files converted by some utilities
|
76
|
+
- Fixed decoding of Panasonic LongExposureNRUsed (thanks AndrewJ)
|
77
|
+
- Fixed long-standing bug when using special characters in the -d option
|
78
|
+
argument
|
79
|
+
|
80
|
+
July 2, 2025 - Version 13.32
|
81
|
+
|
82
|
+
- Added a new Olympus CameraType (thanks Herb and Albert Shan)
|
83
|
+
- Added a new Sony LensType (github #335)
|
84
|
+
- Added a new Nikon CropHiSpeed value (thanks Albert Shan)
|
85
|
+
- Added a warning if a tag value couldn't be packed for writing to a binary
|
86
|
+
data structure
|
87
|
+
- Decode more Ricoh/Pentax AF tags for some models (thanks Karsten Gieselmann)
|
88
|
+
- Decode Canon HDR-PQ tag (github #336)
|
89
|
+
- Extract a couple more EXIF tags
|
90
|
+
- Patched to allow a dot (.) in the name of a structure element when writing
|
91
|
+
- Fixed "uninitialized value" bug when using -w with the -stay_open feature
|
92
|
+
- Fixed bug in -file option when using tag names to specify the name of the
|
93
|
+
alternate file (the tags were taken only from the first input file unless a
|
94
|
+
file name formatting code was also specified)
|
95
|
+
|
10
96
|
June 19, 2025 - Version 13.31
|
11
97
|
|
12
98
|
- Added a new CanonModelID and RFLensType (thanks Norbert Wasser)
|
@@ -407,7 +493,7 @@ Nov. 12, 2024 - Version 13.03
|
|
407
493
|
Nov. 5, 2024 - Version 13.02
|
408
494
|
|
409
495
|
- Enhanced -j -l output to add optional "fmt" and "hex" fields
|
410
|
-
- Enhanced -geotag option to support
|
496
|
+
- Enhanced -geotag option to support Google Maps "Export Timeline data" JSON
|
411
497
|
format
|
412
498
|
- Changed ProductVersion of Windows launcher to match ExifTool version
|
413
499
|
- Patched to use empty group name instead of "Copy0" for family 4 group name
|
data/bin/MANIFEST
CHANGED
@@ -177,6 +177,7 @@ html/TagNames/SigmaRaw.html
|
|
177
177
|
html/TagNames/Sony.html
|
178
178
|
html/TagNames/SonyIDC.html
|
179
179
|
html/TagNames/Stim.html
|
180
|
+
html/TagNames/TNEF.html
|
180
181
|
html/TagNames/Text.html
|
181
182
|
html/TagNames/Theora.html
|
182
183
|
html/TagNames/Torrent.html
|
@@ -434,6 +435,7 @@ lib/Image/ExifTool/SigmaRaw.pm
|
|
434
435
|
lib/Image/ExifTool/Sony.pm
|
435
436
|
lib/Image/ExifTool/SonyIDC.pm
|
436
437
|
lib/Image/ExifTool/Stim.pm
|
438
|
+
lib/Image/ExifTool/TNEF.pm
|
437
439
|
lib/Image/ExifTool/TagInfoXML.pm
|
438
440
|
lib/Image/ExifTool/TagLookup.pm
|
439
441
|
lib/Image/ExifTool/TagNames.pod
|
@@ -887,6 +889,8 @@ t/Sony.t
|
|
887
889
|
t/Sony_2.out
|
888
890
|
t/Sony_3.out
|
889
891
|
t/Sony_5.out
|
892
|
+
t/TNEF.t
|
893
|
+
t/TNEF_2.out
|
890
894
|
t/TestLib.pm
|
891
895
|
t/Text.t
|
892
896
|
t/Text_2.out
|
@@ -1179,6 +1183,7 @@ t/images/Sigma.x3f
|
|
1179
1183
|
t/images/SigmaDP2.x3f
|
1180
1184
|
t/images/Sony.jpg
|
1181
1185
|
t/images/Sony.pmp
|
1186
|
+
t/images/TNEF.tnef
|
1182
1187
|
t/images/Text.csv
|
1183
1188
|
t/images/Text1.txt
|
1184
1189
|
t/images/Text2.txt
|
data/bin/META.json
CHANGED
data/bin/META.yml
CHANGED
data/bin/Makefile.PL
CHANGED
data/bin/README
CHANGED
@@ -14,50 +14,51 @@ supported by ExifTool (r = read, w = write, c = create):
|
|
14
14
|
|
15
15
|
File Types
|
16
16
|
------------+-------------+-------------+-------------+------------
|
17
|
-
360 r/w |
|
18
|
-
3FR r |
|
19
|
-
3G2 r/w |
|
20
|
-
3GP r/w |
|
21
|
-
7Z r |
|
22
|
-
A r |
|
23
|
-
AA r |
|
24
|
-
AAC r |
|
25
|
-
AAE r |
|
26
|
-
AAX r/w |
|
27
|
-
ACR r |
|
28
|
-
AFM r |
|
29
|
-
AI r/w |
|
30
|
-
AIFF r |
|
31
|
-
APE r |
|
32
|
-
ARQ r/w |
|
33
|
-
ARW r/w |
|
34
|
-
ASF r |
|
35
|
-
AVI r |
|
36
|
-
AVIF r/w |
|
37
|
-
AZW r |
|
38
|
-
BMP r |
|
39
|
-
BPG r |
|
40
|
-
BTF r |
|
41
|
-
C2PA r |
|
42
|
-
CHM r |
|
43
|
-
COS r |
|
44
|
-
CR2 r/w |
|
45
|
-
CR3 r/w |
|
46
|
-
CRM r/w |
|
47
|
-
CRW r/w |
|
48
|
-
CS1 r/w |
|
49
|
-
CSV r |
|
50
|
-
CUR r |
|
51
|
-
CZI r |
|
52
|
-
DCM r |
|
53
|
-
DCP r/w |
|
54
|
-
DCR r |
|
55
|
-
DFONT r |
|
56
|
-
DIVX r |
|
57
|
-
DJVU r |
|
58
|
-
DLL r |
|
59
|
-
DNG r/w |
|
60
|
-
DOC r |
|
17
|
+
360 r/w | DPX r | JNG r/w | ODP r | RSRC r
|
18
|
+
3FR r | DR4 r/w/c | JP2 r/w | ODS r | RTF r
|
19
|
+
3G2 r/w | DSS r | JPEG r/w | ODT r | RW2 r/w
|
20
|
+
3GP r/w | DV r | JSON r | OFR r | RWL r/w
|
21
|
+
7Z r | DVB r/w | JXL r/w | OGG r | RWZ r
|
22
|
+
A r | DVR-MS r | K25 r | OGV r | RM r
|
23
|
+
AA r | DYLIB r | KDC r | ONP r | SEQ r
|
24
|
+
AAC r | EIP r | KEY r | OPUS r | SKETCH r
|
25
|
+
AAE r | EPS r/w | LA r | ORF r/w | SO r
|
26
|
+
AAX r/w | EPUB r | LFP r | ORI r/w | SR2 r/w
|
27
|
+
ACR r | ERF r/w | LIF r | OTF r | SRF r
|
28
|
+
AFM r | EXE r | LNK r | PAC r | SRW r/w
|
29
|
+
AI r/w | EXIF r/w/c | LRV r/w | PAGES r | SVG r
|
30
|
+
AIFF r | EXR r | M2TS r | PBM r/w | SWF r
|
31
|
+
APE r | EXV r/w/c | M4A/V r/w | PCAP r | THM r/w
|
32
|
+
ARQ r/w | F4A/V r/w | MACOS r | PCAPNG r | TIFF r/w
|
33
|
+
ARW r/w | FFF r/w | MAX r | PCD r | TNEF r
|
34
|
+
ASF r | FITS r | MEF r/w | PCX r | TORRENT r
|
35
|
+
AVI r | FLA r | MIE r/w/c | PDB r | TTC r
|
36
|
+
AVIF r/w | FLAC r | MIFF r | PDF r/w | TTF r
|
37
|
+
AZW r | FLIF r/w | MKA r | PEF r/w | TXT r
|
38
|
+
BMP r | FLV r | MKS r | PFA r | VCF r
|
39
|
+
BPG r | FPF r | MKV r | PFB r | VNT r
|
40
|
+
BTF r | FPX r | MNG r/w | PFM r | VRD r/w/c
|
41
|
+
C2PA r | GIF r/w | MOBI r | PGF r | VSD r
|
42
|
+
CHM r | GLV r/w | MODD r | PGM r/w | WAV r
|
43
|
+
COS r | GPR r/w | MOI r | PLIST r | WDP r/w
|
44
|
+
CR2 r/w | GZ r | MOS r/w | PICT r | WEBP r/w
|
45
|
+
CR3 r/w | HDP r/w | MOV r/w | PMP r | WEBM r
|
46
|
+
CRM r/w | HDR r | MP3 r | PNG r/w | WMA r
|
47
|
+
CRW r/w | HEIC r/w | MP4 r/w | PPM r/w | WMV r
|
48
|
+
CS1 r/w | HEIF r/w | MPC r | PPT r | WPG r
|
49
|
+
CSV r | HTML r | MPG r | PPTX r | WTV r
|
50
|
+
CUR r | ICC r/w/c | MPO r/w | PS r/w | WV r
|
51
|
+
CZI r | ICO r | MQV r/w | PSB r/w | X3F r/w
|
52
|
+
DCM r | ICS r | MRC r | PSD r/w | XCF r
|
53
|
+
DCP r/w | IDML r | MRW r/w | PSP r | XISF r
|
54
|
+
DCR r | IIQ r/w | MXF r | QTIF r/w | XLS r
|
55
|
+
DFONT r | IND r/w | NEF r/w | R3D r | XLSX r
|
56
|
+
DIVX r | INSP r/w | NKA r | RA r | XMP r/w/c
|
57
|
+
DJVU r | INSV r | NKSC r/w | RAF r/w | ZIP r
|
58
|
+
DLL r | INX r | NRW r/w | RAM r |
|
59
|
+
DNG r/w | ISO r | NUMBERS r | RAR r |
|
60
|
+
DOC r | ITC r | NXD r | RAW r/w |
|
61
|
+
DOCX r | J2C r | O r | RIFF r |
|
61
62
|
|
62
63
|
Meta Information
|
63
64
|
----------------------+----------------------+---------------------
|
@@ -109,8 +110,8 @@ your home directory, then you would type the following commands in a
|
|
109
110
|
terminal window to extract and run ExifTool:
|
110
111
|
|
111
112
|
cd ~/Desktop
|
112
|
-
gzip -dc Image-ExifTool-13.
|
113
|
-
cd Image-ExifTool-13.
|
113
|
+
gzip -dc Image-ExifTool-13.36.tar.gz | tar -xf -
|
114
|
+
cd Image-ExifTool-13.36
|
114
115
|
./exiftool t/images/ExifTool.jpg
|
115
116
|
|
116
117
|
Note: These commands extract meta information from one of the test images.
|