exiftool_vendored 12.17.1 → 12.32.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 +225 -1
  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 +142 -87
  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 +30 -12
  19. data/bin/lib/Image/ExifTool/CBOR.pm +277 -0
  20. data/bin/lib/Image/ExifTool/Canon.pm +49 -18
  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 +28 -11
  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 +27 -4
  35. data/bin/lib/Image/ExifTool/Jpeg2000.pm +393 -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 +1 -1
  44. data/bin/lib/Image/ExifTool/Microsoft.pm +298 -82
  45. data/bin/lib/Image/ExifTool/Nikon.pm +19 -8
  46. data/bin/lib/Image/ExifTool/NikonSettings.pm +28 -11
  47. data/bin/lib/Image/ExifTool/Olympus.pm +6 -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 +247 -88
  56. data/bin/lib/Image/ExifTool/QuickTimeStream.pl +283 -141
  57. data/bin/lib/Image/ExifTool/README +3 -0
  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 +237 -78
  62. data/bin/lib/Image/ExifTool/TagInfoXML.pm +1 -0
  63. data/bin/lib/Image/ExifTool/TagLookup.pm +4125 -4028
  64. data/bin/lib/Image/ExifTool/TagNames.pod +644 -286
  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 +39 -14
  75. data/bin/lib/Image/ExifTool/XMP2.pl +2 -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 +223 -72
  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: d80826479c3ca8c2e3cfaf71aac23fb1d19de4d2b204fb5cce97d17315744c4c
4
- data.tar.gz: b42b14d289558856c2cef660d6ff16592c814fcf3ec8f106e5edb4b62dd26e5d
3
+ metadata.gz: 0bc0b6355809096e7387138e8c7f308c4936ec9b0cdb4ce1461aadcae9ae2381
4
+ data.tar.gz: 67a7595eb439fa6601eaf2a5e6bb90ec67de6f84094133a5c1f7490c5dd5b300
5
5
  SHA512:
6
- metadata.gz: 928b5a6323959d076b93102f6e7d980b2ef6936a90b77542fbbbb73e9ab767c5767c9a63d1073e8374aec816979d76f5c9e45342a50408426d43c1ee60a03b99
7
- data.tar.gz: b86d1b66ca9d01bb8d4261f25cf4daaed9698a407332211559cdb253fd997ea4eaaac9535f874ee55bb1131e7729f145e3aca26d5d0d85512d957bd018c6efc7
6
+ metadata.gz: 859265135559c94c11c104df0804ab031e8c0ffa648b3249e824ceaaa273420a4190b14e77f03855cd6a3e8685938e58a0d48a9b57aa2ceebca2314d20804676
7
+ data.tar.gz: 35e9504f1ae4d31477f721cd94dad5da1740f2324e53242930600eb7b12abe17e3501e7fa7fe19c3a947516d1169a37d12a6e54465a96a2e2a7e55f4b03f2656
data/bin/Changes CHANGED
@@ -4,9 +4,233 @@ 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
+ Sept. 30, 2021 - Version 12.32
11
+
12
+ - Added support for CBOR-format metadata in JUMBF (note that JUMBF support is
13
+ still experimental)
14
+ - Added a new Nikon LensID
15
+ - Added a new Pentax LensType
16
+ - Decode timed GPS for two more dashcam formats
17
+ - Support reference direction columns in -geotag CSV input
18
+ - Removed generation of GPSSpeedRef and GPSTrackRef tags in timed metadata for
19
+ most dashcam formats when speed is km/h and track is relative to true north
20
+ - Patched to allow writing of console output to named pipes
21
+ - Fixed formatting of InternalSerialNumber for some Panasonic cameras
22
+ - Fixed bug in arg_files/xmp2exif.args support file
23
+
24
+ Sept. 22, 2021 - Version 12.31
25
+
26
+ - Added a new SonyModelID and a couple of new Sony lenses (thanks Jos Roost)
27
+ - Added a new Canon LensType (thanks Chris Skopec)
28
+ - Added Composite GPSLatitude/Longitude tags for Sony videos to combine the
29
+ reference hemispheres as with the Composite tags for EXIF GPS
30
+ - Decode DPX AspectRatio
31
+ - Decode more GoPro MP4 tags
32
+ - Extract ICC_Profile from CS0 object in PDF files
33
+ - Extract encrypted GPS from Akaso V1 dashcam videos (can't yet decrypt)
34
+ - Improved handling of QuickTime iTunesInfo tags, and created new "iTunes"
35
+ family 1 group for these
36
+ - Patched so NoPDFList option also applies when writing
37
+ - Patched to allow user-defined PNG TextualData tags to be written only as iTXt
38
+ - Patched PDF reader to avoid concatenating values of multiple List-type tags
39
+ into a single tag
40
+
41
+ Aug. 12, 2021 - Version 12.30 (production release)
42
+
43
+ - Added read support for Portable FloatMap (PFM) images (this was a bit of a
44
+ pain because they have the same file extension as Printer Font Metrix files)
45
+ - Added a few new Nikon LensID values (thanks LibRaw)
46
+ - Added a new Canon LensType
47
+ - Added a new Olympus CameraType (thanks LibRaw)
48
+ - Added minor warning about unknown data between JPEG segments
49
+ - Added a couple of new NikonSettings tags (thanks Warren Hatch)
50
+ - Added a new Sony LensType (thanks Jos Roost)
51
+ - Decode 'id3 ' chunk in WAV audio files
52
+ - Decode timed GPS from concatenated Garmin dashcam videos
53
+ - Decode SamsungTrailer information from sefd atom in HEIC images
54
+ - Decode more Sony MakerNote tags for the ZV-E10 (thanks Jos Roost)
55
+ - Decode DepthMapTiff from JPEG images of more Samsung models
56
+ - Decode timed GPS from M2TS videos of yet another type of dashcam
57
+ - Extract PreviewImage from Xaiomi MP4 videos
58
+ - Changed name of second EmbeddedImage in Samsung trailer to EmbeddedImage2
59
+ - Improved Dutch translations for GPS tags (thanks Peter Dubbelman)
60
+ - Allow ICC_Profile to be "deleted" from AVIF files (actually, the profile
61
+ isn't really deleted. Instead, a zero-length profile is written to allow a
62
+ profile to be added back later since QuickTime item property containers
63
+ currently can't be created)
64
+ - Patched to remove 2 GB size limit when reading Photoshop ImageSourceData
65
+
66
+ July 9, 2021 - Version 12.29
67
+
68
+ - Added a few new Nikon and Olympus lenses (thanks LibRaw)
69
+ - Improved a QuickTime "File format error" message to be more meaningful, and
70
+ made it a minor error
71
+ - Changed PNG writer to add EXIF before IDAT
72
+ - Some changes the way JUMBF metadata is handled
73
+ - Patched to read timed GPS from a different type of INSV videos
74
+ - Patched a security issue
75
+ - Fixed problem where ExifTool could hang when processing mebx timed metadata
76
+
77
+ June 22, 2021 - Version 12.28
78
+
79
+ - Added read support for Leica Image File (LIF) images
80
+ - Added a new Olympus LensType (thanks LibRaw)
81
+ - Decode another Panasonic tag (thanks LibRaw)
82
+ - Decode more timed metadata from Sony MP4 videos
83
+ - Attempt to shorten tag names for metadata in CZI files
84
+ - Allow full QuickTime Keys tag ID's in UserDefined tags (fixes backward
85
+ incompatibility introduced in 12.02)
86
+ - Patched to handle special characters in Torrent tag values
87
+
88
+ June 9, 2021 - Version 12.27
89
+
90
+ - Added a new SonyModelID value
91
+ - Added two new Nikon LensID values (thanks Daniel)
92
+ - Added a new Pentax RawDevelopmentProcess value
93
+ - Added a few new Sony LensType values (thanks Jos Roost)
94
+ - Added warning if IPTCDigest is not current
95
+ - Decode a couple more Pentax tags (thanks LibRaw)
96
+ - Decode streaming GPS from Novatek INNOVV MP4 and TS videos
97
+ - Improved tag names in config_files/covert_regions.config (thanks StarGeek)
98
+ - Changed MIME types for MS Office macro-enabled formats to add the .12
99
+ - Patched Canon LensID logic to properly identify the Canon RF 24-105mm F4 L
100
+ IS USM lens
101
+ - Patched decoding of camm6 GPSDateTime to use a flexible epoch because other
102
+ apps don't seem to use a consistent time zero
103
+ - Fixed family 7 group names for QuickTime Keys tags
104
+ - Fixed problem reading BeatsPerMinute from some MP4 files
105
+ - Fixed hemisphere problem when extracting GPS from 70mai dashcam videos
106
+
107
+ May 20, 2021 - Version 12.26 (production release)
108
+
109
+ - Added support for JPEG Stereo (JPS) images
110
+ - Added a new Sony LensType (thanks LibRaw)
111
+ - Added a new PentaxModelID (thanks LibRaw)
112
+ - Changed ExifTool namespace URI to use exiftool.org instead of exiftool.ca in
113
+ the -X option output (exiftool.ca is still recognized when reading XML)
114
+ - Improved handling of large-array warnings in -htmldump output
115
+ - Changed handling of escaped characters in #[CSTR] lines of -@ argfile
116
+ - Patched security vulnerability in argument of -lang option
117
+ - Fixed problem which could cause a "Wide character" warning and generate a
118
+ corrupted output file when writing some illegal values
119
+
120
+ Apr. 22, 2021 - Version 12.25
121
+
122
+ - JPEG XL support is now official
123
+ - Added read support for Medical Research Council (MRC) image files
124
+ - Added ability to write a number of 3gp tags in video files
125
+ - Added a new Sony PictureProfile value (thanks Jos Roost)
126
+ - Added a new Sony LensType (thanks LibRaw)
127
+ - Added a new Nikon LensID (thanks Niels Kristian Bech Jensen)
128
+ - Added a new Canon LensType
129
+ - Decode more GPS information from Blackvue dashcam videos
130
+ - Decode a couple of new NikonSettings tags (thanks Warren Hatch)
131
+ - Decode a few new RIFF tags
132
+ - Improved Validate option to add minor warning if standard XMP is missing
133
+ xpacket wrapper
134
+ - Avoid decoding some large arrays in DNG images to improve performance unless
135
+ the -m option is used
136
+ - Patched bug that could give runtime warning when trying to write an empty
137
+ XMP structure
138
+ - Fixed decoding of ImageWidth/Height for JPEG XL images
139
+ - Fixed problem were Microsoft Xtra tags couldn't be deleted
140
+
141
+ Apr. 13, 2021 - Version 12.24
142
+
143
+ - Added a new PhaseOne RawFormat value (thanks LibRaw)
144
+ - Decode a new Sony tag (thanks Jos Roost)
145
+ - Decode a few new Panasonic and FujiFilm tags (thanks LibRaw and Greybeard)
146
+ - Updated acdsee.config in distribution (thanks StarGeek)
147
+ - Recognize AutoCAD DXF files
148
+ - More work on experimental JUMBF read support
149
+ - More work on experimental JPEG XL read/write support
150
+ - Patched security vulnerability in DjVu reader
151
+
152
+ Apr. 1, 2021 - Version 12.23
153
+
154
+ - Added support for Olympus ORI files
155
+ - Added experimental read/write support for JPEG XL images
156
+ - Added experimental read support for JUMBF metadata in JPEG and Jpeg2000
157
+ images
158
+ - Added built-in support for parsing GPS track from Denver ACG-8050 videos
159
+ with the -ee option
160
+ - Added a some new Sony lenses (thanks Jos Roost and LibRaw)
161
+ - Changed priority of Samsung trailer tags so the first DepthMapImage takes
162
+ precedence when -a is not used
163
+ - Improved identification of M4A audio files
164
+ - Patched to avoid escaping ',' in "Binary data" message when -struct is used
165
+ - Removed Unknown flag from MXF VideoCodingSchemeID tag
166
+ - Fixed -forcewrite=EXIF to apply to EXIF in binary header of EPS files
167
+ - API Changes:
168
+ - Added BlockExtract option
169
+
170
+ Mar. 17, 2021 - Version 12.22
171
+
172
+ - Added a few new Sony LensTypes and a new SonyModelID (thanks Jos Roost and
173
+ LibRaw)
174
+ - Added Extra BaseName tag
175
+ - Added a new CanonModelID (thanks LibRaw)
176
+ - Decode timed GPS from unlisted programs in M2TS videos with the -ee3 option
177
+ - Decode more Sony rtmd tags
178
+ - Decode some tags for the Sony ILME-FX3 (thanks Jos Roost)
179
+ - Allow negative values to be written to XMP-aux:LensID
180
+ - Recognize HEVC video program in M2TS files
181
+ - Enhanced -b option so --b suppresses tags with binary data
182
+ - Improved flexibility when writing GPS coordinates:
183
+ - Now pulls latitude and longitude from a combined GPSCoordinates string
184
+ - Recognize full word "South" and "West" to write negative coordinates
185
+ - Improved warning when trying to write an integer QuickTime date/time tag and
186
+ Time::Local is not available
187
+ - Convert GPSSpeed from mph to km/h in timed GPS from Garmin MP4 videos
188
+
189
+ Feb. 24, 2021 - Version 12.21
190
+
191
+ - Added a few new iOS QuickTime tags
192
+ - Decode a couple more Sony rtmd tags
193
+ - Patch to avoid possible "Use of uninitialized value" warning when attempting
194
+ to write QuickTime date/time tags with an invalid value
195
+ - Fixed problem writing Microsoft Xtra tags
196
+ - Fixed Windows daylight savings time patch for file times that was broken in
197
+ 12.19 (however directory times will not yet handle DST properly)
198
+
199
+ Feb. 23, 2021 - Version 12.20
200
+
201
+ - Added ability to write some Microsoft Xtra tags in MOV/MP4 videos
202
+ - Added two new Canon LensType values (thanks Norbert Wasser)
203
+ - Added a new Nikon LensID
204
+ - Fixed problem reading FITS comments that start before column 11
205
+
206
+ Feb. 18, 2021 - Version 12.19
207
+
208
+ - Added -list_dir option
209
+ - Added the "ls-l" Shortcut tag
210
+ - Extract Comment and History from FITS files
211
+ - Enhanced FilePermissions to include device type (similar to "ls -l")
212
+ - Changed the name of Apple ContentIdentifier tag to MediaGroupUUID
213
+ (thanks Neal Krawetz)
214
+ - Fixed a potential "substr outside of string" runtime error when reading
215
+ corrupted EXIF
216
+ - Fixed edge case where NikonScanIFD may not be copied properly when copying
217
+ MakerNotes to another file
218
+ - API Changes:
219
+ - Added ability to read/write System tags of directories
220
+ - Enhanced GetAllGroups() to support family 7 and take optional ExifTool
221
+ reference
222
+ - Changed QuickTimeHandler option default to 1
223
+
224
+ Feb. 9, 2021 - Version 12.18
225
+
226
+ - Added a new SonyModelID
227
+ - Decode a number of Sony tags for the ILCE-1 (thanks Jos Roost)
228
+ - Decode a couple of new Canon tags (thanks LibRaw)
229
+ - Patched to read differently formatted UserData:Keywords as written by iPhone
230
+ - Patched to tolerate out-of-order Nikon MakerNote IFD entries when obtaining
231
+ tags necessary for decryption
232
+ - Fixed a few possible Condition warnings for some NikonSettings tags
233
+
10
234
  Feb. 3, 2021 - Version 12.17
11
235
 
12
236
  - Added a new Canon FocusMode value
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.17"
50
+ "version" : "12.32"
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.17
31
+ version: 12.32
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.17.tar.gz | tar -xf -
110
- cd Image-ExifTool-12.17
110
+ gzip -dc Image-ExifTool-12.32.tar.gz | tar -xf -
111
+ cd Image-ExifTool-12.32
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