exiftool_vendored 12.18.0 → 12.33.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (82) hide show
  1. checksums.yaml +4 -4
  2. data/bin/Changes +236 -4
  3. data/bin/MANIFEST +23 -0
  4. data/bin/META.json +1 -1
  5. data/bin/META.yml +1 -1
  6. data/bin/README +45 -43
  7. data/bin/arg_files/xmp2exif.args +2 -1
  8. data/bin/config_files/acdsee.config +193 -6
  9. data/bin/config_files/convert_regions.config +25 -14
  10. data/bin/config_files/cuepointlist.config +70 -0
  11. data/bin/config_files/example.config +2 -9
  12. data/bin/exiftool +152 -97
  13. data/bin/fmt_files/gpx.fmt +2 -2
  14. data/bin/fmt_files/gpx_wpt.fmt +2 -2
  15. data/bin/fmt_files/kml.fmt +1 -1
  16. data/bin/fmt_files/kml_track.fmt +1 -1
  17. data/bin/lib/Image/ExifTool/Apple.pm +3 -2
  18. data/bin/lib/Image/ExifTool/BuildTagLookup.pm +31 -13
  19. data/bin/lib/Image/ExifTool/CBOR.pm +331 -0
  20. data/bin/lib/Image/ExifTool/Canon.pm +44 -19
  21. data/bin/lib/Image/ExifTool/DJI.pm +6 -6
  22. data/bin/lib/Image/ExifTool/DPX.pm +13 -2
  23. data/bin/lib/Image/ExifTool/DjVu.pm +6 -5
  24. data/bin/lib/Image/ExifTool/Exif.pm +124 -13
  25. data/bin/lib/Image/ExifTool/FITS.pm +13 -2
  26. data/bin/lib/Image/ExifTool/FlashPix.pm +35 -10
  27. data/bin/lib/Image/ExifTool/FujiFilm.pm +19 -8
  28. data/bin/lib/Image/ExifTool/GPS.pm +22 -11
  29. data/bin/lib/Image/ExifTool/Geotag.pm +13 -2
  30. data/bin/lib/Image/ExifTool/GoPro.pm +16 -1
  31. data/bin/lib/Image/ExifTool/ICC_Profile.pm +2 -2
  32. data/bin/lib/Image/ExifTool/ID3.pm +15 -3
  33. data/bin/lib/Image/ExifTool/JPEG.pm +74 -4
  34. data/bin/lib/Image/ExifTool/JSON.pm +30 -5
  35. data/bin/lib/Image/ExifTool/Jpeg2000.pm +395 -16
  36. data/bin/lib/Image/ExifTool/LIF.pm +153 -0
  37. data/bin/lib/Image/ExifTool/Lang/nl.pm +60 -59
  38. data/bin/lib/Image/ExifTool/M2TS.pm +137 -5
  39. data/bin/lib/Image/ExifTool/MIE.pm +4 -3
  40. data/bin/lib/Image/ExifTool/MRC.pm +341 -0
  41. data/bin/lib/Image/ExifTool/MWG.pm +3 -3
  42. data/bin/lib/Image/ExifTool/MXF.pm +1 -1
  43. data/bin/lib/Image/ExifTool/MacOS.pm +3 -3
  44. data/bin/lib/Image/ExifTool/Microsoft.pm +298 -82
  45. data/bin/lib/Image/ExifTool/Nikon.pm +18 -5
  46. data/bin/lib/Image/ExifTool/NikonSettings.pm +19 -2
  47. data/bin/lib/Image/ExifTool/Olympus.pm +10 -3
  48. data/bin/lib/Image/ExifTool/Other.pm +93 -0
  49. data/bin/lib/Image/ExifTool/PDF.pm +9 -12
  50. data/bin/lib/Image/ExifTool/PNG.pm +8 -7
  51. data/bin/lib/Image/ExifTool/Panasonic.pm +28 -3
  52. data/bin/lib/Image/ExifTool/Pentax.pm +28 -5
  53. data/bin/lib/Image/ExifTool/PhaseOne.pm +4 -3
  54. data/bin/lib/Image/ExifTool/Photoshop.pm +6 -0
  55. data/bin/lib/Image/ExifTool/QuickTime.pm +234 -75
  56. data/bin/lib/Image/ExifTool/QuickTimeStream.pl +283 -141
  57. data/bin/lib/Image/ExifTool/README +5 -2
  58. data/bin/lib/Image/ExifTool/RIFF.pm +89 -12
  59. data/bin/lib/Image/ExifTool/Samsung.pm +48 -10
  60. data/bin/lib/Image/ExifTool/Shortcuts.pm +9 -0
  61. data/bin/lib/Image/ExifTool/Sony.pm +230 -69
  62. data/bin/lib/Image/ExifTool/TagInfoXML.pm +1 -0
  63. data/bin/lib/Image/ExifTool/TagLookup.pm +4145 -4029
  64. data/bin/lib/Image/ExifTool/TagNames.pod +671 -287
  65. data/bin/lib/Image/ExifTool/Torrent.pm +18 -11
  66. data/bin/lib/Image/ExifTool/WriteExif.pl +1 -1
  67. data/bin/lib/Image/ExifTool/WriteIPTC.pl +1 -1
  68. data/bin/lib/Image/ExifTool/WritePDF.pl +1 -0
  69. data/bin/lib/Image/ExifTool/WritePNG.pl +2 -0
  70. data/bin/lib/Image/ExifTool/WritePostScript.pl +1 -0
  71. data/bin/lib/Image/ExifTool/WriteQuickTime.pl +55 -21
  72. data/bin/lib/Image/ExifTool/WriteXMP.pl +7 -3
  73. data/bin/lib/Image/ExifTool/Writer.pl +47 -10
  74. data/bin/lib/Image/ExifTool/XMP.pm +45 -15
  75. data/bin/lib/Image/ExifTool/XMP2.pl +3 -1
  76. data/bin/lib/Image/ExifTool/XMPStruct.pl +3 -1
  77. data/bin/lib/Image/ExifTool/ZISRAW.pm +121 -2
  78. data/bin/lib/Image/ExifTool.pm +233 -81
  79. data/bin/lib/Image/ExifTool.pod +114 -93
  80. data/bin/perl-Image-ExifTool.spec +43 -42
  81. data/lib/exiftool_vendored/version.rb +1 -1
  82. metadata +28 -13
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 94a7d3e31a469a8fc6a58b020168e7076b56172144d98ffeda12f7b49d65a0a0
4
- data.tar.gz: 18000853a1b6ae5728074fa49602ff41851844abbde34022ddc8971218607cf0
3
+ metadata.gz: c2579a96159a6bebe1550982f10cbb416ee1760ac092cb135c725e8704a66ed8
4
+ data.tar.gz: 22a1963fc56a05e435fada1b55e74df2fcbd1782bd84a902595950ebe25ac923
5
5
  SHA512:
6
- metadata.gz: c1283d44ee24b5b60c13795ad8868359b616522db3b191060a81df0b8bde2f3f31d5dd57e7bebd05de9e2ac7a0ba1d4eba041d024824fbb077084930484ba49f
7
- data.tar.gz: 79356beb3ffe088861e355a00c66439c6a4d28c6dfe7efc4591902da5d5d32649fbf110283507c5259ac77bc73f66d5504b64478b0570dfd5df3fb2eb7805221
6
+ metadata.gz: bab490d296c90b99ed805c0a4b80b48f5d08282657f17f97ca856af36e6e4b32799c9162be40e3f0e4996d892530edebe582f37961df6ebb9717a892e935f3a2
7
+ data.tar.gz: 8ac18abe9d185ce0b4fcf43909554caba45c904b73b10a8ae6e93c4011e120fd299b1d05f4dd404d7d1ab9c255a48b96c57d31057286f42e5a41717429ba2864
data/bin/Changes CHANGED
@@ -4,9 +4,241 @@ 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.16. (Other versions are
7
+ Note: The most recent production release is Version 12.30. (Other versions are
8
8
  considered development releases, and are not uploaded to MetaCPAN.)
9
9
 
10
+ Oct. 16, 2021 - Version 12.33
11
+
12
+ - Added support for DNG version 1.6.0.0
13
+ - Added two new Sony LensType values (thanks Jos Roost and LibRaw)
14
+ - Added some new elements to the XMP-crs:Look structure (thanks Herb)
15
+ - Added a few new IPTC XMP tags (thanks Michael Steidl)
16
+ - Added a new Canon RF lens (thanks Norbert Wasser)
17
+ - Decode Canon ShutterMode (thanks John Moyer)
18
+ - Extract LensModel from some Olympus MOV videos
19
+ - Generate MediaDataOffset/Size for MOV videos with zero-sized MDAT chunk
20
+ - Improvements to CBOR reader, including hex dump with -v3 option
21
+ - Recognize Final Cut Pro XML files
22
+ - Allow binary data of Protected tags to be extracted with the -X -j and -php
23
+ options with -b by setting the API RequestAll option to 3
24
+ - Changed name of "Canon EF 80-200mm f/4.5-5.6" lens with LensType 38 to add
25
+ "II" to the name (Exiv2 issue 1906)
26
+ - Fixed runtime warning when processing files with a .DIR extension
27
+
28
+ Sept. 30, 2021 - Version 12.32
29
+
30
+ - Added support for CBOR-format metadata in JUMBF (note that JUMBF support is
31
+ still experimental)
32
+ - Added a new Nikon LensID
33
+ - Added a new Pentax LensType
34
+ - Decode timed GPS for two more dashcam formats
35
+ - Support reference direction columns in -geotag CSV input
36
+ - Removed generation of GPSSpeedRef and GPSTrackRef tags in timed metadata for
37
+ most dashcam formats when speed is km/h and track is relative to true north
38
+ - Patched to allow writing of console output to named pipes
39
+ - Fixed formatting of InternalSerialNumber for some Panasonic cameras
40
+ - Fixed bug in arg_files/xmp2exif.args support file
41
+
42
+ Sept. 22, 2021 - Version 12.31
43
+
44
+ - Added a new SonyModelID and a couple of new Sony lenses (thanks Jos Roost)
45
+ - Added a new Canon LensType (thanks Chris Skopec)
46
+ - Added Composite GPSLatitude/Longitude tags for Sony videos to combine the
47
+ reference hemispheres as with the Composite tags for EXIF GPS
48
+ - Decode DPX AspectRatio
49
+ - Decode more GoPro MP4 tags
50
+ - Extract ICC_Profile from CS0 object in PDF files
51
+ - Extract encrypted GPS from Akaso V1 dashcam videos (can't yet decrypt)
52
+ - Improved handling of QuickTime iTunesInfo tags, and created new "iTunes"
53
+ family 1 group for these
54
+ - Patched so NoPDFList option also applies when writing
55
+ - Patched to allow user-defined PNG TextualData tags to be written only as iTXt
56
+ - Patched PDF reader to avoid concatenating values of multiple List-type tags
57
+ into a single tag
58
+
59
+ Aug. 12, 2021 - Version 12.30 (production release)
60
+
61
+ - Added read support for Portable FloatMap (PFM) images (this was a bit of a
62
+ pain because they have the same file extension as Printer Font Metrix files)
63
+ - Added a few new Nikon LensID values (thanks LibRaw)
64
+ - Added a new Canon LensType
65
+ - Added a new Olympus CameraType (thanks LibRaw)
66
+ - Added minor warning about unknown data between JPEG segments
67
+ - Added a couple of new NikonSettings tags (thanks Warren Hatch)
68
+ - Added a new Sony LensType (thanks Jos Roost)
69
+ - Decode 'id3 ' chunk in WAV audio files
70
+ - Decode timed GPS from concatenated Garmin dashcam videos
71
+ - Decode SamsungTrailer information from sefd atom in HEIC images
72
+ - Decode more Sony MakerNote tags for the ZV-E10 (thanks Jos Roost)
73
+ - Decode DepthMapTiff from JPEG images of more Samsung models
74
+ - Decode timed GPS from M2TS videos of yet another type of dashcam
75
+ - Extract PreviewImage from Xaiomi MP4 videos
76
+ - Changed name of second EmbeddedImage in Samsung trailer to EmbeddedImage2
77
+ - Improved Dutch translations for GPS tags (thanks Peter Dubbelman)
78
+ - Allow ICC_Profile to be "deleted" from AVIF files (actually, the profile
79
+ isn't really deleted. Instead, a zero-length profile is written to allow a
80
+ profile to be added back later since QuickTime item property containers
81
+ currently can't be created)
82
+ - Patched to remove 2 GB size limit when reading Photoshop ImageSourceData
83
+
84
+ July 9, 2021 - Version 12.29
85
+
86
+ - Added a few new Nikon and Olympus lenses (thanks LibRaw)
87
+ - Improved a QuickTime "File format error" message to be more meaningful, and
88
+ made it a minor error
89
+ - Changed PNG writer to add EXIF before IDAT
90
+ - Some changes the way JUMBF metadata is handled
91
+ - Patched to read timed GPS from a different type of INSV videos
92
+ - Patched a security issue
93
+ - Fixed problem where ExifTool could hang when processing mebx timed metadata
94
+
95
+ June 22, 2021 - Version 12.28
96
+
97
+ - Added read support for Leica Image File (LIF) images
98
+ - Added a new Olympus LensType (thanks LibRaw)
99
+ - Decode another Panasonic tag (thanks LibRaw)
100
+ - Decode more timed metadata from Sony MP4 videos
101
+ - Attempt to shorten tag names for metadata in CZI files
102
+ - Allow full QuickTime Keys tag ID's in UserDefined tags (fixes backward
103
+ incompatibility introduced in 12.02)
104
+ - Patched to handle special characters in Torrent tag values
105
+
106
+ June 9, 2021 - Version 12.27
107
+
108
+ - Added a new SonyModelID value
109
+ - Added two new Nikon LensID values (thanks Daniel)
110
+ - Added a new Pentax RawDevelopmentProcess value
111
+ - Added a few new Sony LensType values (thanks Jos Roost)
112
+ - Added warning if IPTCDigest is not current
113
+ - Decode a couple more Pentax tags (thanks LibRaw)
114
+ - Decode streaming GPS from Novatek INNOVV MP4 and TS videos
115
+ - Improved tag names in config_files/covert_regions.config (thanks StarGeek)
116
+ - Changed MIME types for MS Office macro-enabled formats to add the .12
117
+ - Patched Canon LensID logic to properly identify the Canon RF 24-105mm F4 L
118
+ IS USM lens
119
+ - Patched decoding of camm6 GPSDateTime to use a flexible epoch because other
120
+ apps don't seem to use a consistent time zero
121
+ - Fixed family 7 group names for QuickTime Keys tags
122
+ - Fixed problem reading BeatsPerMinute from some MP4 files
123
+ - Fixed hemisphere problem when extracting GPS from 70mai dashcam videos
124
+
125
+ May 20, 2021 - Version 12.26 (production release)
126
+
127
+ - Added support for JPEG Stereo (JPS) images
128
+ - Added a new Sony LensType (thanks LibRaw)
129
+ - Added a new PentaxModelID (thanks LibRaw)
130
+ - Changed ExifTool namespace URI to use exiftool.org instead of exiftool.ca in
131
+ the -X option output (exiftool.ca is still recognized when reading XML)
132
+ - Improved handling of large-array warnings in -htmldump output
133
+ - Changed handling of escaped characters in #[CSTR] lines of -@ argfile
134
+ - Patched security vulnerability in argument of -lang option
135
+ - Fixed problem which could cause a "Wide character" warning and generate a
136
+ corrupted output file when writing some illegal values
137
+
138
+ Apr. 22, 2021 - Version 12.25
139
+
140
+ - JPEG XL support is now official
141
+ - Added read support for Medical Research Council (MRC) image files
142
+ - Added ability to write a number of 3gp tags in video files
143
+ - Added a new Sony PictureProfile value (thanks Jos Roost)
144
+ - Added a new Sony LensType (thanks LibRaw)
145
+ - Added a new Nikon LensID (thanks Niels Kristian Bech Jensen)
146
+ - Added a new Canon LensType
147
+ - Decode more GPS information from Blackvue dashcam videos
148
+ - Decode a couple of new NikonSettings tags (thanks Warren Hatch)
149
+ - Decode a few new RIFF tags
150
+ - Improved Validate option to add minor warning if standard XMP is missing
151
+ xpacket wrapper
152
+ - Avoid decoding some large arrays in DNG images to improve performance unless
153
+ the -m option is used
154
+ - Patched bug that could give runtime warning when trying to write an empty
155
+ XMP structure
156
+ - Fixed decoding of ImageWidth/Height for JPEG XL images
157
+ - Fixed problem were Microsoft Xtra tags couldn't be deleted
158
+
159
+ Apr. 13, 2021 - Version 12.24
160
+
161
+ - Added a new PhaseOne RawFormat value (thanks LibRaw)
162
+ - Decode a new Sony tag (thanks Jos Roost)
163
+ - Decode a few new Panasonic and FujiFilm tags (thanks LibRaw and Greybeard)
164
+ - Updated acdsee.config in distribution (thanks StarGeek)
165
+ - Recognize AutoCAD DXF files
166
+ - More work on experimental JUMBF read support
167
+ - More work on experimental JPEG XL read/write support
168
+ - Patched security vulnerability in DjVu reader
169
+
170
+ Apr. 1, 2021 - Version 12.23
171
+
172
+ - Added support for Olympus ORI files
173
+ - Added experimental read/write support for JPEG XL images
174
+ - Added experimental read support for JUMBF metadata in JPEG and Jpeg2000
175
+ images
176
+ - Added built-in support for parsing GPS track from Denver ACG-8050 videos
177
+ with the -ee option
178
+ - Added a some new Sony lenses (thanks Jos Roost and LibRaw)
179
+ - Changed priority of Samsung trailer tags so the first DepthMapImage takes
180
+ precedence when -a is not used
181
+ - Improved identification of M4A audio files
182
+ - Patched to avoid escaping ',' in "Binary data" message when -struct is used
183
+ - Removed Unknown flag from MXF VideoCodingSchemeID tag
184
+ - Fixed -forcewrite=EXIF to apply to EXIF in binary header of EPS files
185
+ - API Changes:
186
+ - Added BlockExtract option
187
+
188
+ Mar. 17, 2021 - Version 12.22
189
+
190
+ - Added a few new Sony LensTypes and a new SonyModelID (thanks Jos Roost and
191
+ LibRaw)
192
+ - Added Extra BaseName tag
193
+ - Added a new CanonModelID (thanks LibRaw)
194
+ - Decode timed GPS from unlisted programs in M2TS videos with the -ee3 option
195
+ - Decode more Sony rtmd tags
196
+ - Decode some tags for the Sony ILME-FX3 (thanks Jos Roost)
197
+ - Allow negative values to be written to XMP-aux:LensID
198
+ - Recognize HEVC video program in M2TS files
199
+ - Enhanced -b option so --b suppresses tags with binary data
200
+ - Improved flexibility when writing GPS coordinates:
201
+ - Now pulls latitude and longitude from a combined GPSCoordinates string
202
+ - Recognize full word "South" and "West" to write negative coordinates
203
+ - Improved warning when trying to write an integer QuickTime date/time tag and
204
+ Time::Local is not available
205
+ - Convert GPSSpeed from mph to km/h in timed GPS from Garmin MP4 videos
206
+
207
+ Feb. 24, 2021 - Version 12.21
208
+
209
+ - Added a few new iOS QuickTime tags
210
+ - Decode a couple more Sony rtmd tags
211
+ - Patch to avoid possible "Use of uninitialized value" warning when attempting
212
+ to write QuickTime date/time tags with an invalid value
213
+ - Fixed problem writing Microsoft Xtra tags
214
+ - Fixed Windows daylight savings time patch for file times that was broken in
215
+ 12.19 (however directory times will not yet handle DST properly)
216
+
217
+ Feb. 23, 2021 - Version 12.20
218
+
219
+ - Added ability to write some Microsoft Xtra tags in MOV/MP4 videos
220
+ - Added two new Canon LensType values (thanks Norbert Wasser)
221
+ - Added a new Nikon LensID
222
+ - Fixed problem reading FITS comments that start before column 11
223
+
224
+ Feb. 18, 2021 - Version 12.19
225
+
226
+ - Added -list_dir option
227
+ - Added the "ls-l" Shortcut tag
228
+ - Extract Comment and History from FITS files
229
+ - Enhanced FilePermissions to include device type (similar to "ls -l")
230
+ - Changed the name of Apple ContentIdentifier tag to MediaGroupUUID
231
+ (thanks Neal Krawetz)
232
+ - Fixed a potential "substr outside of string" runtime error when reading
233
+ corrupted EXIF
234
+ - Fixed edge case where NikonScanIFD may not be copied properly when copying
235
+ MakerNotes to another file
236
+ - API Changes:
237
+ - Added ability to read/write System tags of directories
238
+ - Enhanced GetAllGroups() to support family 7 and take optional ExifTool
239
+ reference
240
+ - Changed QuickTimeHandler option default to 1
241
+
10
242
  Feb. 9, 2021 - Version 12.18
11
243
 
12
244
  - Added a new SonyModelID
@@ -1270,8 +1502,8 @@ Oct. 9, 2018 - Version 11.13
1270
1502
  - Added a new Canon LensType (thanks LibRaw)
1271
1503
  - Minor improvements to verbose dump of streaming GPS metadata
1272
1504
  - Reverted change of version 10.71 which resulted in Windows not recognizing
1273
- PNG CreationTime as written by ExifTool (added this feature to the
1274
- StrictDate API option instead)
1505
+ PNG CreationTime as written by ExifTool (added this feature to the API
1506
+ StrictDate option instead)
1275
1507
  - Improved decoding of Nikon CropHiSpeed (thanks LibRaw)
1276
1508
  - Improved -fast option to reduce memory usage when reading JPG, PNG,
1277
1509
  QuickTime-based and RIFF-based files via a sequential stream
@@ -1385,7 +1617,7 @@ June 21, 2018 - Version 11.03
1385
1617
  June 13, 2018 - Version 11.02
1386
1618
 
1387
1619
  - Added support for a different format of Apple iWorks files
1388
- - Added undocumented FixCorruptedMOV API option to allow fixing MOV videos
1620
+ - Added undocumented API FixCorruptedMOV option to allow fixing MOV videos
1389
1621
  with multiple 'mdat' atoms which were corrupted by ExifTool
1390
1622
  - Decode more QuickTime tags
1391
1623
  - Decode more PanasonicRaw tags (thanks Klaus Homeister)
data/bin/MANIFEST CHANGED
@@ -19,6 +19,7 @@ config_files/acdsee.config
19
19
  config_files/age.config
20
20
  config_files/bibble.config
21
21
  config_files/convert_regions.config
22
+ config_files/cuepointlist.config
22
23
  config_files/depthmap.config
23
24
  config_files/example.config
24
25
  config_files/fotoware.config
@@ -47,6 +48,7 @@ html/TagNames/Apple.html
47
48
  html/TagNames/Audible.html
48
49
  html/TagNames/BMP.html
49
50
  html/TagNames/BPG.html
51
+ html/TagNames/CBOR.html
50
52
  html/TagNames/Canon.html
51
53
  html/TagNames/CanonCustom.html
52
54
  html/TagNames/CanonRaw.html
@@ -93,6 +95,7 @@ html/TagNames/JVC.html
93
95
  html/TagNames/Jpeg2000.html
94
96
  html/TagNames/Kodak.html
95
97
  html/TagNames/KyoceraRaw.html
98
+ html/TagNames/LIF.html
96
99
  html/TagNames/LNK.html
97
100
  html/TagNames/Leaf.html
98
101
  html/TagNames/Lytro.html
@@ -104,6 +107,7 @@ html/TagNames/MOI.html
104
107
  html/TagNames/MPC.html
105
108
  html/TagNames/MPEG.html
106
109
  html/TagNames/MPF.html
110
+ html/TagNames/MRC.html
107
111
  html/TagNames/MWG.html
108
112
  html/TagNames/MXF.html
109
113
  html/TagNames/MacOS.html
@@ -122,6 +126,7 @@ html/TagNames/Ogg.html
122
126
  html/TagNames/Olympus.html
123
127
  html/TagNames/OpenEXR.html
124
128
  html/TagNames/Opus.html
129
+ html/TagNames/Other.html
125
130
  html/TagNames/PCX.html
126
131
  html/TagNames/PDF.html
127
132
  html/TagNames/PGF.html
@@ -213,6 +218,7 @@ lib/Image/ExifTool/BPG.pm
213
218
  lib/Image/ExifTool/BZZ.pm
214
219
  lib/Image/ExifTool/BigTIFF.pm
215
220
  lib/Image/ExifTool/BuildTagLookup.pm
221
+ lib/Image/ExifTool/CBOR.pm
216
222
  lib/Image/ExifTool/Canon.pm
217
223
  lib/Image/ExifTool/CanonCustom.pm
218
224
  lib/Image/ExifTool/CanonRaw.pm
@@ -297,6 +303,7 @@ lib/Image/ExifTool/JVC.pm
297
303
  lib/Image/ExifTool/Jpeg2000.pm
298
304
  lib/Image/ExifTool/Kodak.pm
299
305
  lib/Image/ExifTool/KyoceraRaw.pm
306
+ lib/Image/ExifTool/LIF.pm
300
307
  lib/Image/ExifTool/LNK.pm
301
308
  lib/Image/ExifTool/Lang/cs.pm
302
309
  lib/Image/ExifTool/Lang/de.pm
@@ -326,6 +333,7 @@ lib/Image/ExifTool/MOI.pm
326
333
  lib/Image/ExifTool/MPC.pm
327
334
  lib/Image/ExifTool/MPEG.pm
328
335
  lib/Image/ExifTool/MPF.pm
336
+ lib/Image/ExifTool/MRC.pm
329
337
  lib/Image/ExifTool/MWG.pm
330
338
  lib/Image/ExifTool/MXF.pm
331
339
  lib/Image/ExifTool/MacOS.pm
@@ -345,6 +353,7 @@ lib/Image/ExifTool/Ogg.pm
345
353
  lib/Image/ExifTool/Olympus.pm
346
354
  lib/Image/ExifTool/OpenEXR.pm
347
355
  lib/Image/ExifTool/Opus.pm
356
+ lib/Image/ExifTool/Other.pm
348
357
  lib/Image/ExifTool/PCX.pm
349
358
  lib/Image/ExifTool/PDF.pm
350
359
  lib/Image/ExifTool/PGF.pm
@@ -510,6 +519,7 @@ t/ExifTool_29.out
510
519
  t/ExifTool_3.out
511
520
  t/ExifTool_30.out
512
521
  t/ExifTool_31.out
522
+ t/ExifTool_32.out
513
523
  t/ExifTool_4.out
514
524
  t/ExifTool_5.out
515
525
  t/ExifTool_6.out
@@ -601,6 +611,9 @@ t/JSON_2.out
601
611
  t/JVC.t
602
612
  t/JVC_2.out
603
613
  t/JVC_3.out
614
+ t/JXL.t
615
+ t/JXL_2.out
616
+ t/JXL_3.out
604
617
  t/Jpeg2000.t
605
618
  t/Jpeg2000_2.out
606
619
  t/Jpeg2000_3.out
@@ -647,6 +660,8 @@ t/MOI.t
647
660
  t/MOI_2.out
648
661
  t/MP3.t
649
662
  t/MP3_2.out
663
+ t/MRC.t
664
+ t/MRC_2.out
650
665
  t/MWG.t
651
666
  t/MWG_2.out
652
667
  t/MWG_3.out
@@ -706,6 +721,8 @@ t/PDF_6.out
706
721
  t/PDF_7.out
707
722
  t/PDF_8.out
708
723
  t/PDF_9.out
724
+ t/PFM.t
725
+ t/PFM_2.out
709
726
  t/PGF.t
710
727
  t/PGF_2.out
711
728
  t/PICT.t
@@ -759,6 +776,8 @@ t/QuickTime_12.out
759
776
  t/QuickTime_13.out
760
777
  t/QuickTime_14.out
761
778
  t/QuickTime_15.out
779
+ t/QuickTime_16.out
780
+ t/QuickTime_17.out
762
781
  t/QuickTime_2.out
763
782
  t/QuickTime_3.out
764
783
  t/QuickTime_4.out
@@ -958,6 +977,7 @@ t/images/EXE.exe
958
977
  t/images/EXE.macho
959
978
  t/images/EXE.so
960
979
  t/images/ExifTool.jpg
980
+ t/images/ExifTool.jps
961
981
  t/images/ExifTool.tif
962
982
  t/images/ExtendedXMP.jpg
963
983
  t/images/FITS.fits
@@ -1001,6 +1021,7 @@ t/images/InDesign.indd
1001
1021
  t/images/JSON.json
1002
1022
  t/images/JVC.jpg
1003
1023
  t/images/JVC2.jpg
1024
+ t/images/JXL.jxl
1004
1025
  t/images/Jpeg2000.j2c
1005
1026
  t/images/Jpeg2000.jp2
1006
1027
  t/images/Kodak.jpg
@@ -1012,6 +1033,7 @@ t/images/MIE.mie
1012
1033
  t/images/MIFF.miff
1013
1034
  t/images/MOI.moi
1014
1035
  t/images/MP3.mp3
1036
+ t/images/MRC.mrc
1015
1037
  t/images/MWG.jpg
1016
1038
  t/images/MXF.mxf
1017
1039
  t/images/MacOS.macos
@@ -1034,6 +1056,7 @@ t/images/Opus.opus
1034
1056
  t/images/PCX.pcx
1035
1057
  t/images/PDF.pdf
1036
1058
  t/images/PDF2.pdf
1059
+ t/images/PFM.pfm
1037
1060
  t/images/PGF.pgf
1038
1061
  t/images/PICT.pict
1039
1062
  t/images/PLIST-bin.plist
data/bin/META.json CHANGED
@@ -47,5 +47,5 @@
47
47
  }
48
48
  },
49
49
  "release_status" : "stable",
50
- "version" : "12.18"
50
+ "version" : "12.33"
51
51
  }
data/bin/META.yml CHANGED
@@ -28,4 +28,4 @@ recommends:
28
28
  Time::HiRes: 0
29
29
  requires:
30
30
  perl: 5.004
31
- version: 12.18
31
+ version: 12.33
data/bin/README CHANGED
@@ -14,47 +14,48 @@ supported by ExifTool (r = read, w = write, c = create):
14
14
 
15
15
  File Types
16
16
  ------------+-------------+-------------+-------------+------------
17
- 360 r/w | DPX r | ITC r | ODP r | RIFF r
18
- 3FR r | DR4 r/w/c | J2C r | ODS r | RSRC r
19
- 3G2 r/w | DSS r | JNG r/w | ODT r | RTF r
20
- 3GP r/w | DV r | JP2 r/w | OFR r | RW2 r/w
21
- A r | DVB r/w | JPEG r/w | OGG r | RWL r/w
22
- AA r | DVR-MS r | JSON r | OGV r | RWZ r
23
- AAE r | DYLIB r | K25 r | ONP r | RM r
24
- AAX r/w | EIP r | KDC r | OPUS r | SEQ r
25
- ACR r | EPS r/w | KEY r | ORF r/w | SKETCH r
26
- AFM r | EPUB r | LA r | OTF r | SO r
27
- AI r/w | ERF r/w | LFP r | PAC r | SR2 r/w
28
- AIFF r | EXE r | LNK r | PAGES r | SRF r
29
- APE r | EXIF r/w/c | LRV r/w | PBM r/w | SRW r/w
30
- ARQ r/w | EXR r | M2TS r | PCD r | SVG r
31
- ARW r/w | EXV r/w/c | M4A/V r/w | PCX r | SWF r
32
- ASF r | F4A/V r/w | MACOS r | PDB r | THM r/w
33
- AVI r | FFF r/w | MAX r | PDF r/w | TIFF r/w
34
- AVIF r/w | FITS r | MEF r/w | PEF r/w | TORRENT r
35
- AZW r | FLA r | MIE r/w/c | PFA r | TTC r
36
- BMP r | FLAC r | MIFF r | PFB r | TTF r
37
- BPG r | FLIF r/w | MKA r | PFM r | TXT r
38
- BTF r | FLV r | MKS r | PGF r | VCF r
39
- CHM r | FPF r | MKV r | PGM r/w | VRD r/w/c
40
- COS r | FPX r | MNG r/w | PLIST r | VSD r
41
- CR2 r/w | GIF r/w | MOBI r | PICT r | WAV r
42
- CR3 r/w | GPR r/w | MODD r | PMP r | WDP r/w
43
- CRM r/w | GZ r | MOI r | PNG r/w | WEBP r
44
- CRW r/w | HDP r/w | MOS r/w | PPM r/w | WEBM r
45
- CS1 r/w | HDR r | MOV r/w | PPT r | WMA r
46
- CSV r | HEIC r/w | MP3 r | PPTX r | WMV r
47
- CZI r | HEIF r/w | MP4 r/w | PS r/w | WTV r
48
- DCM r | HTML r | MPC r | PSB r/w | WV r
49
- DCP r/w | ICC r/w/c | MPG r | PSD r/w | X3F r/w
50
- DCR r | ICS r | MPO r/w | PSP r | XCF r
51
- DFONT r | IDML r | MQV r/w | QTIF r/w | XLS r
52
- DIVX r | IIQ r/w | MRW r/w | R3D r | XLSX r
53
- DJVU r | IND r/w | MXF r | RA r | XMP r/w/c
54
- DLL r | INSP r/w | NEF r/w | RAF r/w | ZIP r
55
- DNG r/w | INSV r | NRW r/w | RAM r |
56
- DOC r | INX r | NUMBERS r | RAR r |
57
- DOCX r | ISO r | O r | RAW r/w |
17
+ 360 r/w | DR4 r/w/c | JNG r/w | ODP r | RIFF r
18
+ 3FR r | DSS r | JP2 r/w | ODS r | RSRC r
19
+ 3G2 r/w | DV r | JPEG r/w | ODT r | RTF r
20
+ 3GP r/w | DVB r/w | JSON r | OFR r | RW2 r/w
21
+ A r | DVR-MS r | JXL r | OGG r | RWL r/w
22
+ AA r | DYLIB r | K25 r | OGV r | RWZ r
23
+ AAE r | EIP r | KDC r | ONP r | RM r
24
+ AAX r/w | EPS r/w | KEY r | OPUS r | SEQ r
25
+ ACR r | EPUB r | LA r | ORF r/w | SKETCH r
26
+ AFM r | ERF r/w | LFP r | ORI r/w | SO r
27
+ AI r/w | EXE r | LIF r | OTF r | SR2 r/w
28
+ AIFF r | EXIF r/w/c | LNK r | PAC r | SRF r
29
+ APE r | EXR r | LRV r/w | PAGES r | SRW r/w
30
+ ARQ r/w | EXV r/w/c | M2TS r | PBM r/w | SVG r
31
+ ARW r/w | F4A/V r/w | M4A/V r/w | PCD r | SWF r
32
+ ASF r | FFF r/w | MACOS r | PCX r | THM r/w
33
+ AVI r | FITS r | MAX r | PDB r | TIFF r/w
34
+ AVIF r/w | FLA r | MEF r/w | PDF r/w | TORRENT r
35
+ AZW r | FLAC r | MIE r/w/ | PEF r/w | TTC r
36
+ BMP r | FLIF r/w | MIFF r c | PFA r | TTF r
37
+ BPG r | FLV r | MKA r | PFB r | TXT r
38
+ BTF r | FPF r | MKS r | PFM r | VCF r
39
+ CHM r | FPX r | MKV r | PGF r | VRD r/w/c
40
+ COS r | GIF r/w | MNG r/w | PGM r/w | VSD r
41
+ CR2 r/w | GPR r/w | MOBI r | PLIST r | WAV r
42
+ CR3 r/w | GZ r | MODD r | PICT r | WDP r/w
43
+ CRM r/w | HDP r/w | MOI r | PMP r | WEBP r
44
+ CRW r/w | HDR r | MOS r/w | PNG r/w | WEBM r
45
+ CS1 r/w | HEIC r/w | MOV r/w | PPM r/w | WMA r
46
+ CSV r | HEIF r/w | MP3 r | PPT r | WMV r
47
+ CZI r | HTML r | MP4 r/w | PPTX r | WTV r
48
+ DCM r | ICC r/w/c | MPC r | PS r/w | WV r
49
+ DCP r/w | ICS r | MPG r | PSB r/w | X3F r/w
50
+ DCR r | IDML r | MPO r/w | PSD r/w | XCF r
51
+ DFONT r | IIQ r/w | MQV r/w | PSP r | XLS r
52
+ DIVX r | IND r/w | MRC r | QTIF r/w | XLSX r
53
+ DJVU r | INSP r/w | MRW r/w | R3D r | XMP r/w/c
54
+ DLL r | INSV r | MXF r | RA r | ZIP r
55
+ DNG r/w | INX r | NEF r/w | RAF r/w |
56
+ DOC r | ISO r | NRW r/w | RAM r |
57
+ DOCX r | ITC r | NUMBERS r | RAR r |
58
+ DPX r | J2C r | O r | RAW r/w |
58
59
 
59
60
  Meta Information
60
61
  ----------------------+----------------------+---------------------
@@ -106,8 +107,8 @@ your home directory, then you would type the following commands in a
106
107
  terminal window to extract and run ExifTool:
107
108
 
108
109
  cd ~/Desktop
109
- gzip -dc Image-ExifTool-12.18.tar.gz | tar -xf -
110
- cd Image-ExifTool-12.18
110
+ gzip -dc Image-ExifTool-12.33.tar.gz | tar -xf -
111
+ cd Image-ExifTool-12.33
111
112
  ./exiftool t/images/ExifTool.jpg
112
113
 
113
114
  Note: These commands extract meta information from one of the test images.
@@ -194,6 +195,7 @@ distribution package:
194
195
  age.config - Calculate Age of person in photo
195
196
  bibble.config - Definitions for writing Bibble XMP tags
196
197
  convert_regions.config - Convert between MWG, MP and IPTC regions
198
+ cuepointlist.config - Extract cue points and labels as a list
197
199
  depthmap.config - Extract Google DepthMap images
198
200
  example.config - General example showing config features
199
201
  fotoware.config - Definitions for writing Fotoware XMP tags
@@ -13,6 +13,7 @@
13
13
  # 2015/01/12 - PH Avoid copying from non-standard namespaces
14
14
  # 2016/09/26 - PH Write Composite SubSec tags
15
15
  # 2018/05/07 - PH Added support for GPSDestXxxRef tags
16
+ # 2021/09/30 - PH Removed erroneous "-" when copying CreatorTool
16
17
  #
17
18
  # References: http://www.metadataworkinggroup.org/specs/
18
19
  #
@@ -34,7 +35,7 @@
34
35
  -Composite:SubSecDateTimeOriginal < XMP-photoshop:DateCreated
35
36
  -Composite:SubSecCreateDate < XMP-xmp:CreateDate
36
37
  -Composite:SubSecModifyDate < XMP-xmp:ModifyDate
37
- -EXIF:Software < -XMP-xmp:CreatorTool
38
+ -EXIF:Software < XMP-xmp:CreatorTool
38
39
  -EXIF:Copyright < XMP-dc:Rights
39
40
  -EXIF:Artist < XMP-dc:Creator
40
41
  # XMP flash information is translated by the Composite Flash tag