exiftool-vendored.pl 13.0.1 → 13.17.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.
Files changed (216) hide show
  1. package/bin/Changes +269 -20
  2. package/bin/MANIFEST +10 -0
  3. package/bin/META.json +1 -1
  4. package/bin/META.yml +1 -1
  5. package/bin/README +3 -3
  6. package/bin/arg_files/exif2xmp.args +4 -0
  7. package/bin/arg_files/xmp2exif.args +2 -1
  8. package/bin/build_geolocation +1 -1
  9. package/bin/exiftool +356 -213
  10. package/bin/lib/File/RandomAccess.pm +1 -1
  11. package/bin/lib/File/RandomAccess.pod +2 -2
  12. package/bin/lib/Image/ExifTool/AAC.pm +1 -1
  13. package/bin/lib/Image/ExifTool/AES.pm +1 -1
  14. package/bin/lib/Image/ExifTool/AFCP.pm +6 -6
  15. package/bin/lib/Image/ExifTool/AIFF.pm +2 -2
  16. package/bin/lib/Image/ExifTool/APE.pm +2 -2
  17. package/bin/lib/Image/ExifTool/APP12.pm +1 -1
  18. package/bin/lib/Image/ExifTool/ASF.pm +2 -2
  19. package/bin/lib/Image/ExifTool/Apple.pm +11 -9
  20. package/bin/lib/Image/ExifTool/Audible.pm +1 -1
  21. package/bin/lib/Image/ExifTool/BMP.pm +1 -1
  22. package/bin/lib/Image/ExifTool/BPG.pm +1 -1
  23. package/bin/lib/Image/ExifTool/BZZ.pm +1 -1
  24. package/bin/lib/Image/ExifTool/BigTIFF.pm +1 -1
  25. package/bin/lib/Image/ExifTool/BuildTagLookup.pm +46 -26
  26. package/bin/lib/Image/ExifTool/CBOR.pm +5 -2
  27. package/bin/lib/Image/ExifTool/Canon.pm +68 -28
  28. package/bin/lib/Image/ExifTool/CanonCustom.pm +1 -1
  29. package/bin/lib/Image/ExifTool/CanonRaw.pm +1 -1
  30. package/bin/lib/Image/ExifTool/CanonVRD.pm +1 -1
  31. package/bin/lib/Image/ExifTool/CaptureOne.pm +1 -1
  32. package/bin/lib/Image/ExifTool/Casio.pm +1 -1
  33. package/bin/lib/Image/ExifTool/Charset.pm +1 -1
  34. package/bin/lib/Image/ExifTool/DICOM.pm +1 -1
  35. package/bin/lib/Image/ExifTool/DJI.pm +196 -30
  36. package/bin/lib/Image/ExifTool/DNG.pm +1 -1
  37. package/bin/lib/Image/ExifTool/DPX.pm +1 -1
  38. package/bin/lib/Image/ExifTool/DV.pm +1 -1
  39. package/bin/lib/Image/ExifTool/DarwinCore.pm +1 -1
  40. package/bin/lib/Image/ExifTool/DjVu.pm +1 -1
  41. package/bin/lib/Image/ExifTool/EXE.pm +138 -33
  42. package/bin/lib/Image/ExifTool/Exif.pm +29 -16
  43. package/bin/lib/Image/ExifTool/FITS.pm +3 -3
  44. package/bin/lib/Image/ExifTool/FLAC.pm +1 -1
  45. package/bin/lib/Image/ExifTool/FLIF.pm +3 -3
  46. package/bin/lib/Image/ExifTool/FLIR.pm +1 -1
  47. package/bin/lib/Image/ExifTool/Fixup.pm +1 -1
  48. package/bin/lib/Image/ExifTool/Flash.pm +1 -1
  49. package/bin/lib/Image/ExifTool/FlashPix.pm +17 -21
  50. package/bin/lib/Image/ExifTool/Font.pm +2 -2
  51. package/bin/lib/Image/ExifTool/FotoStation.pm +1 -1
  52. package/bin/lib/Image/ExifTool/FujiFilm.pm +1 -1
  53. package/bin/lib/Image/ExifTool/GE.pm +1 -1
  54. package/bin/lib/Image/ExifTool/GIF.pm +144 -93
  55. package/bin/lib/Image/ExifTool/GIMP.pm +1 -1
  56. package/bin/lib/Image/ExifTool/GM.pm +1 -1
  57. package/bin/lib/Image/ExifTool/GPS.pm +34 -30
  58. package/bin/lib/Image/ExifTool/GeoTiff.pm +1 -1
  59. package/bin/lib/Image/ExifTool/Geolocation.dat +0 -0
  60. package/bin/lib/Image/ExifTool/Geolocation.pm +19 -9
  61. package/bin/lib/Image/ExifTool/Geotag.pm +46 -12
  62. package/bin/lib/Image/ExifTool/GoPro.pm +120 -8
  63. package/bin/lib/Image/ExifTool/H264.pm +1 -1
  64. package/bin/lib/Image/ExifTool/HP.pm +2 -2
  65. package/bin/lib/Image/ExifTool/HTML.pm +1 -1
  66. package/bin/lib/Image/ExifTool/HtmlDump.pm +1 -1
  67. package/bin/lib/Image/ExifTool/ICC_Profile.pm +81 -2
  68. package/bin/lib/Image/ExifTool/ICO.pm +1 -1
  69. package/bin/lib/Image/ExifTool/ID3.pm +8 -8
  70. package/bin/lib/Image/ExifTool/IPTC.pm +10 -7
  71. package/bin/lib/Image/ExifTool/ISO.pm +1 -1
  72. package/bin/lib/Image/ExifTool/ITC.pm +1 -1
  73. package/bin/lib/Image/ExifTool/Import.pm +5 -4
  74. package/bin/lib/Image/ExifTool/InDesign.pm +2 -2
  75. package/bin/lib/Image/ExifTool/InfiRay.pm +1 -1
  76. package/bin/lib/Image/ExifTool/JPEG.pm +38 -5
  77. package/bin/lib/Image/ExifTool/JPEGDigest.pm +1 -1
  78. package/bin/lib/Image/ExifTool/JSON.pm +1 -1
  79. package/bin/lib/Image/ExifTool/JVC.pm +1 -1
  80. package/bin/lib/Image/ExifTool/Jpeg2000.pm +10 -9
  81. package/bin/lib/Image/ExifTool/Kodak.pm +1 -1
  82. package/bin/lib/Image/ExifTool/KyoceraRaw.pm +1 -1
  83. package/bin/lib/Image/ExifTool/LIF.pm +1 -1
  84. package/bin/lib/Image/ExifTool/LNK.pm +2 -2
  85. package/bin/lib/Image/ExifTool/Lang/cs.pm +1 -1
  86. package/bin/lib/Image/ExifTool/Lang/de.pm +1 -1
  87. package/bin/lib/Image/ExifTool/Lang/en_ca.pm +1 -1
  88. package/bin/lib/Image/ExifTool/Lang/en_gb.pm +1 -1
  89. package/bin/lib/Image/ExifTool/Lang/es.pm +1 -1
  90. package/bin/lib/Image/ExifTool/Lang/fi.pm +1 -1
  91. package/bin/lib/Image/ExifTool/Lang/fr.pm +1 -1
  92. package/bin/lib/Image/ExifTool/Lang/it.pm +1 -1
  93. package/bin/lib/Image/ExifTool/Lang/ja.pm +1 -1
  94. package/bin/lib/Image/ExifTool/Lang/ko.pm +1 -1
  95. package/bin/lib/Image/ExifTool/Lang/nl.pm +1 -1
  96. package/bin/lib/Image/ExifTool/Lang/pl.pm +1 -1
  97. package/bin/lib/Image/ExifTool/Lang/ru.pm +1 -1
  98. package/bin/lib/Image/ExifTool/Lang/sk.pm +1 -1
  99. package/bin/lib/Image/ExifTool/Lang/sv.pm +1 -1
  100. package/bin/lib/Image/ExifTool/Lang/tr.pm +1 -1
  101. package/bin/lib/Image/ExifTool/Lang/zh_cn.pm +1 -1
  102. package/bin/lib/Image/ExifTool/Lang/zh_tw.pm +1 -1
  103. package/bin/lib/Image/ExifTool/Leaf.pm +1 -1
  104. package/bin/lib/Image/ExifTool/LigoGPS.pm +409 -0
  105. package/bin/lib/Image/ExifTool/Lytro.pm +1 -1
  106. package/bin/lib/Image/ExifTool/M2TS.pm +57 -18
  107. package/bin/lib/Image/ExifTool/MIE.pm +15 -6
  108. package/bin/lib/Image/ExifTool/MIEUnits.pod +1 -1
  109. package/bin/lib/Image/ExifTool/MIFF.pm +1 -1
  110. package/bin/lib/Image/ExifTool/MISB.pm +1 -1
  111. package/bin/lib/Image/ExifTool/MNG.pm +1 -1
  112. package/bin/lib/Image/ExifTool/MOI.pm +1 -1
  113. package/bin/lib/Image/ExifTool/MPC.pm +1 -1
  114. package/bin/lib/Image/ExifTool/MPEG.pm +1 -1
  115. package/bin/lib/Image/ExifTool/MPF.pm +1 -1
  116. package/bin/lib/Image/ExifTool/MRC.pm +1 -1
  117. package/bin/lib/Image/ExifTool/MWG.pm +1 -1
  118. package/bin/lib/Image/ExifTool/MXF.pm +3 -3
  119. package/bin/lib/Image/ExifTool/MacOS.pm +3 -2
  120. package/bin/lib/Image/ExifTool/MakerNotes.pm +1 -1
  121. package/bin/lib/Image/ExifTool/Matroska.pm +22 -6
  122. package/bin/lib/Image/ExifTool/Microsoft.pm +2 -2
  123. package/bin/lib/Image/ExifTool/Minolta.pm +1 -1
  124. package/bin/lib/Image/ExifTool/MinoltaRaw.pm +1 -1
  125. package/bin/lib/Image/ExifTool/Motorola.pm +1 -1
  126. package/bin/lib/Image/ExifTool/Nikon.pm +457 -103
  127. package/bin/lib/Image/ExifTool/NikonCapture.pm +1 -1
  128. package/bin/lib/Image/ExifTool/NikonCustom.pm +6 -6
  129. package/bin/lib/Image/ExifTool/NikonSettings.pm +1 -1
  130. package/bin/lib/Image/ExifTool/Nintendo.pm +1 -1
  131. package/bin/lib/Image/ExifTool/OOXML.pm +8 -8
  132. package/bin/lib/Image/ExifTool/Ogg.pm +1 -1
  133. package/bin/lib/Image/ExifTool/Olympus.pm +1 -1
  134. package/bin/lib/Image/ExifTool/OpenEXR.pm +1 -1
  135. package/bin/lib/Image/ExifTool/Opus.pm +1 -1
  136. package/bin/lib/Image/ExifTool/Other.pm +1 -1
  137. package/bin/lib/Image/ExifTool/PCX.pm +1 -1
  138. package/bin/lib/Image/ExifTool/PDF.pm +49 -18
  139. package/bin/lib/Image/ExifTool/PGF.pm +1 -1
  140. package/bin/lib/Image/ExifTool/PICT.pm +1 -1
  141. package/bin/lib/Image/ExifTool/PLIST.pm +4 -4
  142. package/bin/lib/Image/ExifTool/PLUS.pm +1 -1
  143. package/bin/lib/Image/ExifTool/PNG.pm +20 -8
  144. package/bin/lib/Image/ExifTool/PPM.pm +12 -3
  145. package/bin/lib/Image/ExifTool/PSP.pm +1 -1
  146. package/bin/lib/Image/ExifTool/Palm.pm +1 -1
  147. package/bin/lib/Image/ExifTool/Panasonic.pm +27 -3
  148. package/bin/lib/Image/ExifTool/PanasonicRaw.pm +1 -1
  149. package/bin/lib/Image/ExifTool/Parrot.pm +1 -1
  150. package/bin/lib/Image/ExifTool/Pentax.pm +1 -1
  151. package/bin/lib/Image/ExifTool/PhaseOne.pm +4 -4
  152. package/bin/lib/Image/ExifTool/PhotoCD.pm +1 -1
  153. package/bin/lib/Image/ExifTool/PhotoMechanic.pm +1 -1
  154. package/bin/lib/Image/ExifTool/Photoshop.pm +65 -4
  155. package/bin/lib/Image/ExifTool/PostScript.pm +1 -1
  156. package/bin/lib/Image/ExifTool/PrintIM.pm +1 -1
  157. package/bin/lib/Image/ExifTool/Protobuf.pm +270 -0
  158. package/bin/lib/Image/ExifTool/Qualcomm.pm +1 -1
  159. package/bin/lib/Image/ExifTool/QuickTime.pm +327 -88
  160. package/bin/lib/Image/ExifTool/QuickTimeStream.pl +199 -195
  161. package/bin/lib/Image/ExifTool/README +12 -2
  162. package/bin/lib/Image/ExifTool/RIFF.pm +21 -6
  163. package/bin/lib/Image/ExifTool/RSRC.pm +1 -1
  164. package/bin/lib/Image/ExifTool/RTF.pm +2 -2
  165. package/bin/lib/Image/ExifTool/Radiance.pm +1 -1
  166. package/bin/lib/Image/ExifTool/Rawzor.pm +1 -1
  167. package/bin/lib/Image/ExifTool/Real.pm +1 -1
  168. package/bin/lib/Image/ExifTool/Reconyx.pm +1 -1
  169. package/bin/lib/Image/ExifTool/Red.pm +1 -1
  170. package/bin/lib/Image/ExifTool/Ricoh.pm +4 -4
  171. package/bin/lib/Image/ExifTool/Samsung.pm +6 -2
  172. package/bin/lib/Image/ExifTool/Sanyo.pm +1 -1
  173. package/bin/lib/Image/ExifTool/Scalado.pm +1 -1
  174. package/bin/lib/Image/ExifTool/Shift.pl +1 -1
  175. package/bin/lib/Image/ExifTool/Shortcuts.pm +1 -1
  176. package/bin/lib/Image/ExifTool/Sigma.pm +1 -1
  177. package/bin/lib/Image/ExifTool/SigmaRaw.pm +1 -1
  178. package/bin/lib/Image/ExifTool/Sony.pm +6 -5
  179. package/bin/lib/Image/ExifTool/SonyIDC.pm +1 -1
  180. package/bin/lib/Image/ExifTool/Stim.pm +1 -1
  181. package/bin/lib/Image/ExifTool/TagInfoXML.pm +6 -5
  182. package/bin/lib/Image/ExifTool/TagLookup.pm +7028 -6968
  183. package/bin/lib/Image/ExifTool/TagNames.pod +12079 -11630
  184. package/bin/lib/Image/ExifTool/Text.pm +4 -3
  185. package/bin/lib/Image/ExifTool/Theora.pm +1 -1
  186. package/bin/lib/Image/ExifTool/Torrent.pm +3 -3
  187. package/bin/lib/Image/ExifTool/Trailer.pm +318 -0
  188. package/bin/lib/Image/ExifTool/Unknown.pm +1 -1
  189. package/bin/lib/Image/ExifTool/VCard.pm +3 -3
  190. package/bin/lib/Image/ExifTool/Validate.pm +6 -6
  191. package/bin/lib/Image/ExifTool/Vorbis.pm +1 -1
  192. package/bin/lib/Image/ExifTool/WPG.pm +1 -1
  193. package/bin/lib/Image/ExifTool/WTV.pm +1 -1
  194. package/bin/lib/Image/ExifTool/WriteCanonRaw.pl +1 -1
  195. package/bin/lib/Image/ExifTool/WriteExif.pl +3 -3
  196. package/bin/lib/Image/ExifTool/WriteIPTC.pl +1 -1
  197. package/bin/lib/Image/ExifTool/WritePDF.pl +1 -1
  198. package/bin/lib/Image/ExifTool/WritePNG.pl +1 -1
  199. package/bin/lib/Image/ExifTool/WritePhotoshop.pl +1 -1
  200. package/bin/lib/Image/ExifTool/WritePostScript.pl +1 -1
  201. package/bin/lib/Image/ExifTool/WriteQuickTime.pl +170 -79
  202. package/bin/lib/Image/ExifTool/WriteRIFF.pl +17 -6
  203. package/bin/lib/Image/ExifTool/WriteXMP.pl +3 -3
  204. package/bin/lib/Image/ExifTool/Writer.pl +89 -96
  205. package/bin/lib/Image/ExifTool/XISF.pm +1 -1
  206. package/bin/lib/Image/ExifTool/XMP.pm +28 -13
  207. package/bin/lib/Image/ExifTool/XMP2.pl +106 -3
  208. package/bin/lib/Image/ExifTool/XMPStruct.pl +2 -3
  209. package/bin/lib/Image/ExifTool/ZIP.pm +2 -2
  210. package/bin/lib/Image/ExifTool/ZISRAW.pm +1 -1
  211. package/bin/lib/Image/ExifTool/iWork.pm +1 -1
  212. package/bin/lib/Image/ExifTool.pm +467 -228
  213. package/bin/lib/Image/ExifTool.pod +118 -72
  214. package/bin/perl-Image-ExifTool.spec +1 -1
  215. package/bin/windows_exiftool.txt +96 -51
  216. package/package.json +6 -6
package/bin/Changes CHANGED
@@ -4,9 +4,251 @@ 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.00. (Other versions are
7
+ Note: The most recent production release is Version 13.10. (Other versions are
8
8
  considered development releases, and are not uploaded to MetaCPAN.)
9
9
 
10
+ Jan. 29, 2025 - Version 13.17
11
+
12
+ - Added support for reading more embedded images and videos written in the
13
+ JPEG trailer by some phones
14
+ - Added support for reading JPEG trailer written by some OnePlus phones
15
+ - Added a -validate warning for QuickTime 'wide' atoms with an invalid size
16
+ - Added a new CanonLensType
17
+ - Extract more embedded videos and depth/gain maps from JPEG images written
18
+ - Avoid decoding Sony 0x9050 data for the ILCE-1M2 because the encoding has
19
+ changed since the ILCE-1 and the new encoding is not yet known
20
+ - Fixed issue that could cause runtime error when using -j with -b
21
+ - Fixed some issues decoding AFPointsUsed for some newer Nikon models
22
+ - Fixed problem corrupting QuickTime-format videos when writing if they
23
+ contain a 'wide' atom with an invalid size
24
+
25
+ Jan. 25, 2025 - Version 13.16
26
+
27
+ - Added a couple of new Nikon Z lenses (thanks Warren Hatch)
28
+ - Added a new Canon RFLensType (thanks Norbert Wasser)
29
+ - Added support for a MIE trailer on QuickTime-format files
30
+ - Added a number of new EXE MachineType values (github #309)
31
+ - Made "iTunes" a deletable group
32
+ - Updated decoding of many Nikon tags for the Z9 firmware version 5.1 (thanks
33
+ Warren Hatch)
34
+ - Fixed issue where -diff option would miss showing 1 tag from a group that
35
+ exists in the difference file but not in the source file
36
+ - Fixed issue where tag exclusions for alternate files weren't honoured in a
37
+ -p formatting expression when using "$file#:all:all" in the expression and
38
+ the -file#, -x, and -p options all together
39
+ - Fixed FileTypeDescription for lossless extended WebP images
40
+
41
+ Jan. 23, 2025 - Version 13.15
42
+
43
+ - Added a few new Panasonic AFSubjectDetection values (thanks Andrew J)
44
+ - Added " (lossless)" to FileType for lossless WebP images
45
+ - Avoid treating the QuickTime 'eng' language code as the default 'und' unless
46
+ the country code is also the default
47
+ - Fixed issue where writing metadata to a non-extended lossless WebP image
48
+ with an alpha channel could mess up rendering of the transparency
49
+ - Fixed problem decoding ID3 WXXX frames (github #307)
50
+
51
+ Jan. 20, 2025 - Version 13.14
52
+
53
+ - Changed so that deleting QuickTime ItemList group no longer deletes Keys
54
+ - Fixed bug where new ItemList tags weren't created when also creating new
55
+ AudioKeys or VideoKeys tags in the same command if neither tag group
56
+ pre-existed in the file
57
+
58
+ Jan. 20, 2025 - Version 13.13
59
+
60
+ - Added ability to write tags to the audio/video tracks of MOV/MP4 videos
61
+ using the new AudioKeys and VideoKeys group names
62
+ - Added support for another DJI protobuf format (Mavic 3)
63
+ - Decode yet another type of LIGOGPSINFO timed GPS from a dashcam video
64
+ - Extract some proprietary information from JPEG images of Vivo phones
65
+ - Enhanced Geolocation feature to allow the nearest cities to a specified city
66
+ to be returned
67
+ - Updated xmp2exif.args and exif2xmp.args to properly handle time zones in
68
+ XMP-exif date/time tags
69
+ - Changed family 1 group names for Keys, ItemList and UserData tags in a track
70
+ - Patched github #306 issue where a torrent file would return a format error
71
+ when reading if it didn't contain an "announce" or "created by" entry
72
+ - Fixed "uninitialized value" runtime warning when reading some EXE files
73
+ - Fixed -diff output to add colon missing from some lines when used with -g
74
+
75
+ Jan. 13, 2025 - Version 13.12
76
+
77
+ - Added a few new Panasonic AFAreaMode values (thanks Andrew J)
78
+ - Added a couple of new Canon RFLensType values (thanks Norbert Wasser)
79
+ - Added a -validate warning for duplicate IPTC tags
80
+ - Decode AF points for some newer Nikon models (thanks Warren Hatch)
81
+ - Decode a new Panasonic tag (thanks Andrew J)
82
+ - Decode a couple of previously unknown tags from LIGOGPSINFO records
83
+ - Extract some PDB information if available from Win32 EXE files (github #303)
84
+ - Improved handling of duplicate tags in -diff output
85
+ - Improved handling of QuickTime zero date/time values
86
+ - Enchanced -csv= and -json= options to allow group names and wildcards to be
87
+ used when specifying which tags to import
88
+ - Updated some EXIF:Compression values (github #304)
89
+ - Changed wording of warning when file time couldn't be updated
90
+ - Fixed bug introduced in 13.11 reading EXIF from some EXV files
91
+ - Fixed bug introduced in 12.99 where empty entries in a CSV file weren't
92
+ ignored as they should be when importing with -csv=
93
+ - Fixed problem where MWG module wasn't loaded automatically when specifying
94
+ Composite:MWG:TAG instead of MWG:TAG
95
+ - Fixed bug where -diff option was inconsistent in its treatment of List
96
+ values when used with the -sep option
97
+
98
+ Jan. 1, 2025 - Version 13.11
99
+
100
+ - Added warning for an unknown DJI protobuf schema
101
+ - Decode timed GPS from DJI Osmo Action 5 videos
102
+ - Decode yet another type of LIGOGPSINFO timed GPS from a dashcam video
103
+ - Made Matroska Keywords and Instruments List-type tags
104
+ - Fixed problem were EXIF couldn't be added to some AVIF files
105
+ - API Changes:
106
+ - Added GPSQuadrant option
107
+
108
+ Dec. 20, 2024 - Version 13.10 (production release)
109
+
110
+ - Added warnings for out-of-order entries in 'iinf' and 'ipma' boxes of HEIC
111
+ images
112
+ - Added support for date/time formatting codes %f and %z in the inverse
113
+ print conversion when writing tags
114
+ - Updated Geolocation databases from current geonames.org files
115
+ - Improved verbose output to show values stored with construction method 1 in
116
+ MP4-based files
117
+ - Enhanced the date/time timezone format specifier %z so that %:z returns the
118
+ time zone with a colon separator (eg. "-05:00")
119
+ - Fixed bug where the existing tag wasn't being removed when writing a new
120
+ value for an Unknown QuickTime UserData or ItemList tag
121
+
122
+ Dec. 17, 2024 - Version 13.09
123
+
124
+ - Added a new QuickTime tag (thanks Matti)
125
+ - Added a missing format check on a few tags when writing
126
+ - Decode a couple of new ICC_Profile tags
127
+ - Patched HEIC writer so newly added XMP or EXIF refers to the 'tmap' item as
128
+ well as the primary item of an HDRGainMap image (since iPhone 15 and 16 do
129
+ it this way)
130
+ - Fixed compatibility issue where Apple Preview would no longer show the gain
131
+ map image after adding new XMP to an HEIC with an HDR gain map
132
+
133
+ Dec. 14, 2024 - Version 13.08
134
+
135
+ - Decode ShutterCount for Canon EOS R6 Mark II (thanks Agoston Kapitany)
136
+ - Decode a few new Photoshop tags
137
+ - Suppress all duplicate Warning tags and add count to end of message
138
+ - Changed format of bitmask keys in -listx output
139
+ - Internal streamlining of LIGOGPSINFO decoding
140
+ - Fixed issue where some tags were incorrectly shown as writable in -listx
141
+ output
142
+ - Fixed incorrect scaling for GPSSpeed in one LIGOGPSINFO variant
143
+ - Fixed an issue with filename encoding when the -L option is used and the API
144
+ WindowsLongPath option is active
145
+
146
+ Dec. 11, 2024 - Version 13.07
147
+
148
+ - Decode a number of LIGOGPSINFO encrypted and enciphered timed GPS types
149
+ (long overdue, but it took me a couple of years to acquire enough sample
150
+ videos to have a good cross-section of the different formats)
151
+ - Fixed another place where FileSequence could be incremented twice when a -if
152
+ condition was used
153
+ - Fixed a few places where character 0x7f may not have been escaped in string
154
+ values
155
+ - API Changes:
156
+ - Changed default WindowsLongPath option back to 1 after adding a patch to
157
+ fix issue with piping from stdin
158
+
159
+ Dec. 5, 2024 - Version 13.06
160
+
161
+ - Decode timed metadata from MP4 videos of yet another dashcam model
162
+ - Patched issue where FileSequence could increment twice for each file when a
163
+ -if condition was used
164
+ - API Changes:
165
+ - Revert default WindowsLongPath option to the pre-13.05 setting
166
+ until we can solve the pipe problem
167
+
168
+ Dec. 4, 2024 - Version 13.05
169
+
170
+ - Added a new SonyModelID
171
+ - Added support for XMP HDRGainMap and apdi namespaces
172
+ - Decode DJI timed djmd and dbgi protobuf-format metadata
173
+ - Decode APP10 AROT HDRGainCurve and APP2 URN UniformResourceName
174
+ - Decode a couple of new GoPro tags
175
+ - API Changes:
176
+ - Changed default WindowsLongPath option to 1 (please report if this
177
+ causes any problems)
178
+
179
+ Nov. 26, 2024 - Version 13.04
180
+
181
+ - Added the ability to write GPSDOP and GPSMeasureMode from the -geotag option
182
+ if hdop or pdop information exists in the input track file
183
+ - Added a few new Canon RFLensTypes (thanks Norbert Wasser)
184
+ - Decode timed GPS from GoPro Hero 13 videos
185
+ - Improved writing of GPSDestLatitudeRef and GPSDestLongitudeRef tags to allow
186
+ signed numbers to be written in the same way as GPSLatitudeRef and
187
+ GPSLongitudeRef
188
+ - Warn if using an Image::ExifTool library that doesn't match the application
189
+ version
190
+ - Renamed an Unknown Photoshop tag
191
+ - Convert GoPro GPSSpeed and GPSSpeed3D from m/s to km/h
192
+ - Patched to tolerate XML header in DOCX xml files
193
+ - Fixed incorrect file offsets for tags in some embedded files of -htmldump
194
+ output
195
+ - Fixed -htmldump output to show the same names for unknown EXIF tags as with
196
+ the -u option
197
+
198
+ Nov. 12, 2024 - Version 13.03
199
+
200
+ - Added ability to include or exclude tags from CSV and JSON imports
201
+ (-csv=CSVFILE and -json=JSONFILE) by adding -TAG or --TAG options
202
+ - Added read/delete support for SEAL metadata in JPG, TIFF, XMP, PNG, WEBP,
203
+ HEIC, PPM, MOV and MP4 files, and read support in PDF, MKV and WAV files
204
+ - Added support for user-defined application extensions in GIF images
205
+ - Added print conversion for QuickTime VideoFullRangeFlag
206
+ - Apply API LimitLongValues option to hex field in -j output
207
+ - Avoid extracting some large AES-encrypted data from PDF files for
208
+ performance reasons unless the -m option is used (current limits are 100 kB
209
+ for XMP and 10 kB for everything else)
210
+ - Fixed WindowsLongPath option to support wide characters (thanks Frank B)
211
+ - Fixed problem writing ICC_Profile to a GIF image which already had one
212
+ - Fixed problem writing Apple:FocusDistanceRange
213
+ - API Changes:
214
+ - Enchanced GlobalTimeShift option to allow the base tag to be specified,
215
+ otherwise use the first specified source date/time tag when copying tags
216
+
217
+ Nov. 5, 2024 - Version 13.02
218
+
219
+ - Enhanced -j -l output to add optional "fmt" and "hex" fields
220
+ - Enhanced -geotag option to support Android "Export Timeline data" JSON
221
+ format
222
+ - Changed ProductVersion of Windows launcher to match ExifTool version
223
+ - Patched to use empty group name instead of "Copy0" for family 4 group name
224
+ of missing tag when the -f option is used
225
+ - Patched to avoid showing "Unknown" for group of primary tag when -g4 or -G4
226
+ was used with the -j or -csv option
227
+ - Patched to avoid using Encode module in Windows because it can hang if run
228
+ from a working directory with a long path name
229
+ - Patched to use -csv output if -j also used
230
+ - Fixed a few problems with the new WindowsLongPath option
231
+ - Fixed problem setting FileCreateDate with Xcode 16 command line tools if the
232
+ date/time contains a time zone
233
+ - Fixed problem in -csv output when combined with -g
234
+ - API Changes:
235
+ - Added SaveBin option
236
+
237
+ Nov. 1, 2024 - Version 13.01
238
+
239
+ - NOTE: Please test the new API WindowsLongPath option because the idea is to
240
+ enable this by default if everything works out well
241
+ - Fixed bug which could result in runtime warning if when API IgnoreTags
242
+ option is set to "all" when reading a TXT file format
243
+ - Fixed problem reading some information from LNK files
244
+ - Fixed verbose output to show "Binary data" message for SCALAR values
245
+ - Fixed bug where part of the hex dump from a -v3 output could go to stdout
246
+ instead of the file specified by a -w option
247
+ - API Changes:
248
+ - Added WindowsLongPath option for testing
249
+ - Changed CharsetFileName option to automatically assume UTF8 if the file
250
+ name contains special characters and is valid UTF8
251
+
10
252
  Oct. 29, 2024 - Version 13.00 (production release)
11
253
 
12
254
  - Added support for reading GPS from Autel Evo II drone videos
@@ -109,7 +351,7 @@ July 24, 2024 - Version 12.92
109
351
 
110
352
  July 24, 2024 - Version 12.91
111
353
 
112
- - Added a couple of new OpenEXR Compression values (github#276)
354
+ - Added a couple of new OpenEXR Compression values (github #276)
113
355
  - Updated 2 test files that were causing failed tests (ExifTool itself is
114
356
  unchanged)
115
357
 
@@ -576,7 +818,7 @@ Aug. 10, 2023 - Version 12.65
576
818
  provided
577
819
  - Lowered priority of IFD1 tags in ARW images so IFD0/SubIFD take precedence
578
820
  - Changed QuickTime tag names for atID (AlbumTitleID to ArtistID) and plID
579
- (PlayListID to AlbumID) (github issue #216), and added cmID (ComposerID)
821
+ (PlayListID to AlbumID) (github #216), and added cmID (ComposerID)
580
822
  - Changed Apple:MediaGroupUUID tag name back to ContentIdentifier
581
823
  - Patched the -d option to handle the %s format code internally when writing
582
824
  (avoids problems due to inconsistent behaviour of this format code in the
@@ -1127,7 +1369,15 @@ Dec. 8, 2021 - Version 12.37
1127
1369
  - Extract TransparentColor from GIF images
1128
1370
  - Improved parsing of input time values for GPSTimeStamp to properly handle a
1129
1371
  "." separator
1130
- - Improved warning when incorrectly using "
1372
+ - Improved warning when incorrectly using "<" instead of "=" to assign a tag
1373
+ value
1374
+ - Shortened a few of the new obscenely-long XMP-crs tag names
1375
+ - Avoid writing XMP-dwc:EventID and XMP-tiff:NativeDigest
1376
+ - Avoid printing same structure twice in -j and -X output when -l is used
1377
+ - Fixed typo in a QuickTime tag name (thanks Hubert)
1378
+ - Fixed two XMP-crs tag names and typo in a NikonSettings value (thanks Herb)
1379
+ - Fixed patch of version 12.25 to avoid writing XMP which contains an
1380
+ undefined namespace
1131
1381
 
1132
1382
  Nov. 16, 2021 - Version 12.36
1133
1383
 
@@ -1439,7 +1689,7 @@ Feb. 3, 2021 - Version 12.17
1439
1689
  - Avoid extracting audio/video data from AVI videos when -ee -u is used
1440
1690
  - Patched decoding of Canon ContinuousShootingSpeed for newer firmware
1441
1691
  versions of the EOS-1DXmkIII
1442
- - Re-worked LensID patch of version 12.00 (github issue #51)
1692
+ - Re-worked LensID patch of version 12.00 (github #51)
1443
1693
  - Fixed a few typos in newly-added NikonSettings tags (thanks Herb)
1444
1694
  - Fixed problem where group could not be specified for PNG-pHYs tags when
1445
1695
  writing
@@ -1510,7 +1760,7 @@ Nov. 27, 2020 - Version 12.11
1510
1760
 
1511
1761
  - Added -csvDelim option
1512
1762
  - Added new Canon and Olympus LensType values (thanks LibRaw)
1513
- - Added a warning if ICC_Profile is deleted from an image (github issue #63)
1763
+ - Added a warning if ICC_Profile is deleted from an image (github #63)
1514
1764
  - EndDir() function for -if option now works when -fileOrder is used
1515
1765
  - Changed FileSize conversion to use binary prefixes since that is how the
1516
1766
  conversion is currently done (eg. MiB instead of MB)
@@ -1884,7 +2134,7 @@ Jan. 8, 2020 - Version 11.82
1884
2134
  - Added a new Canon LensType
1885
2135
  - Added a new CanonModelID (thanks LibRaw)
1886
2136
  - Added ability to process SubDirectories in QuickTime Keys tags
1887
- - Removed minor error when writing PDF 2.0 files (github issue #30)
2137
+ - Removed minor error when writing PDF 2.0 files (github #30)
1888
2138
  - Fixed problem where trailing null bytes were removed from binary values in
1889
2139
  the -php output when the -b option was used
1890
2140
 
@@ -1898,8 +2148,7 @@ Jan. 2, 2020 - Version 11.81
1898
2148
  - Patched Composite sub-second date/time tags to do additional validation of
1899
2149
  source EXIF date/time tags before adding sub seconds
1900
2150
  - Fixed problem where -json output could produce invalid JSON when -struct was
1901
- used and the structure field names contained special characters (github
1902
- issue #32)
2151
+ used and the structure field names contained special characters (github #32)
1903
2152
  - Fixed spelling in a Panasonic SceneMode value (thanks Hubert)
1904
2153
 
1905
2154
  Dec. 17, 2019 - Version 11.80
@@ -1919,7 +2168,7 @@ Dec. 12, 2019 - Version 11.79
1919
2168
 
1920
2169
  - Added support for AVIF files
1921
2170
  - Added new Canon, Sigma and Sony LensType values (thanks LibRaw)
1922
- - Made PDF 2.0 writable at your own risk with the -m option (github issue #30)
2171
+ - Made PDF 2.0 writable at your own risk with the -m option (github #30)
1923
2172
  - Enhanced -validate feature to warn about duplicate languages in an XMP
1924
2173
  lang-alt list
1925
2174
  - Fixed inconsistency between documentation and ExifTool capabilities for
@@ -2005,7 +2254,7 @@ Oct. 16, 2019 - Version 11.71
2005
2254
  Oct. 10, 2019 - Version 11.70 (production release)
2006
2255
 
2007
2256
  - Added a new CanonModelID (thanks Laurent Clevy)
2008
- - Improved identification of Office Open XML files (github issue #27)
2257
+ - Improved identification of Office Open XML files (github #27)
2009
2258
  - Removed RAF version check when writing FujiFilm RAF files
2010
2259
  - Limited the number of accelerometer records that ExifTool will read by
2011
2260
  default with the -ee option from INSV files to avoid excessive processing
@@ -2087,7 +2336,7 @@ Aug. 20, 2019 - Version 11.63 - "PNG Early Text"
2087
2336
  - Added a few new Sigma lenses (thanks LibRaw)
2088
2337
  - Improved handling of Canon CNTH atom in MOV/MP4 videos
2089
2338
  - Changed PNG writer to place all text chunks before IDAT (not just XMP)
2090
- (github issue #23)
2339
+ (github #23)
2091
2340
  - Issue minor warning for any text chunk after PNG IDAT (not just XMP)
2092
2341
  - Enhanced ForceWrite feature to allow "PNG" to be specified (to move existing
2093
2342
  text chunks to before IDAT without editing any metadata)
@@ -2244,7 +2493,7 @@ June 17, 2019 - Version 11.52
2244
2493
  - Fixed problem where reading a large, corrupt AIFF file may could take an
2245
2494
  excessively long time
2246
2495
  - API Changes:
2247
- - Enhanced Compact option to add levels 3, 4 and 5 (github issue #16)
2496
+ - Enhanced Compact option to add levels 3, 4 and 5 (github #16)
2248
2497
 
2249
2498
  June 13, 2019 - Version 11.51
2250
2499
 
@@ -2382,7 +2631,7 @@ May 3, 2019 - Version 11.39 - "Create QuickTime tags"
2382
2631
  - Decode Canon EOS D60 black levels
2383
2632
  - Split off some QuickTime tags into different family 1 groups
2384
2633
  - Fixed "Chunk offset outside movie data" error when writing some HEIC files
2385
- - Fixed decoding of Pentax AutoBracketing for K-1 and K-5 (github issue #15)
2634
+ - Fixed decoding of Pentax AutoBracketing for K-1 and K-5 (github #15)
2386
2635
  - Fixed some QuickTime family 2 group names
2387
2636
  - Fixed bug introduced in 11.38 that broke extraction of thumbnail images from
2388
2637
  Canon MOV videos
@@ -2486,7 +2735,7 @@ Mar. 14, 2019 - Version 11.32
2486
2735
  Mar. 7, 2019 - Version 11.31
2487
2736
 
2488
2737
  - Added read support for FITS images
2489
- - Another try at removing spaces from some DICOM values (github issues #10/12)
2738
+ - Another try at removing spaces from some DICOM values (github #10 and #12)
2490
2739
 
2491
2740
  Mar. 6, 2019 - Version 11.30 (production release)
2492
2741
 
@@ -2495,7 +2744,7 @@ Mar. 6, 2019 - Version 11.30 (production release)
2495
2744
  - Decode Reconyx HF2 PRO maker notes
2496
2745
  - Decode ColorData for some new Canon models (thanks LibRaw)
2497
2746
  - Enhanced -geotag feature to set AmbientTemperature if available
2498
- - Remove non-significant spaces from some DICOM values (github issues #10/12)
2747
+ - Remove non-significant spaces from some DICOM values (github #10 and #12)
2499
2748
  - Fixed possible "'x' outside of string" error when reading corrupted EXIF
2500
2749
  - Fixed incorrect write group for GeoTIFF tags added in version 11.24
2501
2750
 
@@ -2503,13 +2752,13 @@ Feb. 28, 2019 - Version 11.29
2503
2752
 
2504
2753
  - Added support for Ricoh GR III maker notes
2505
2754
  - Added a new Canon LensType (thanks Claude Jolicoeur)
2506
- - Added a new XMP-crs tag (github issue #8)
2755
+ - Added a new XMP-crs tag (github #8)
2507
2756
  - Enhanced -csv option to output base64-encoded binary data when combined with
2508
2757
  -b or when the -charset option is used and the text has invalid characters
2509
- (github issue #11)
2510
- - Remove trailing space from even-length DICOM values (github issue #9)
2758
+ (github #11)
2759
+ - Remove trailing space from even-length DICOM values (github #9)
2511
2760
  - Patched to avoid "Hexadecimal number > 0xffffffff non-portable" warning
2512
- (github issue #6)
2761
+ (github #6)
2513
2762
  - Fixed meta charset attribute in -htmlDump output
2514
2763
 
2515
2764
  Feb. 21, 2019 - Version 11.28
package/bin/MANIFEST CHANGED
@@ -178,6 +178,7 @@ html/TagNames/Stim.html
178
178
  html/TagNames/Text.html
179
179
  html/TagNames/Theora.html
180
180
  html/TagNames/Torrent.html
181
+ html/TagNames/Trailer.html
181
182
  html/TagNames/Unknown.html
182
183
  html/TagNames/VCard.html
183
184
  html/TagNames/Vorbis.html
@@ -345,6 +346,7 @@ lib/Image/ExifTool/Lang/tr.pm
345
346
  lib/Image/ExifTool/Lang/zh_cn.pm
346
347
  lib/Image/ExifTool/Lang/zh_tw.pm
347
348
  lib/Image/ExifTool/Leaf.pm
349
+ lib/Image/ExifTool/LigoGPS.pm
348
350
  lib/Image/ExifTool/Lytro.pm
349
351
  lib/Image/ExifTool/M2TS.pm
350
352
  lib/Image/ExifTool/MIE.pm
@@ -397,6 +399,7 @@ lib/Image/ExifTool/PhotoMechanic.pm
397
399
  lib/Image/ExifTool/Photoshop.pm
398
400
  lib/Image/ExifTool/PostScript.pm
399
401
  lib/Image/ExifTool/PrintIM.pm
402
+ lib/Image/ExifTool/Protobuf.pm
400
403
  lib/Image/ExifTool/Qualcomm.pm
401
404
  lib/Image/ExifTool/QuickTime.pm
402
405
  lib/Image/ExifTool/QuickTimeStream.pl
@@ -426,6 +429,7 @@ lib/Image/ExifTool/TagNames.pod
426
429
  lib/Image/ExifTool/Text.pm
427
430
  lib/Image/ExifTool/Theora.pm
428
431
  lib/Image/ExifTool/Torrent.pm
432
+ lib/Image/ExifTool/Trailer.pm
429
433
  lib/Image/ExifTool/Unknown.pm
430
434
  lib/Image/ExifTool/VCard.pm
431
435
  lib/Image/ExifTool/Validate.pm
@@ -824,7 +828,12 @@ t/QuickTime_14.out
824
828
  t/QuickTime_15.out
825
829
  t/QuickTime_16.out
826
830
  t/QuickTime_17.out
831
+ t/QuickTime_18.out
832
+ t/QuickTime_19.out
827
833
  t/QuickTime_2.out
834
+ t/QuickTime_20.out
835
+ t/QuickTime_21.out
836
+ t/QuickTime_22.out
828
837
  t/QuickTime_3.out
829
838
  t/QuickTime_4.out
830
839
  t/QuickTime_5.out
@@ -936,6 +945,7 @@ t/Writer_58.out
936
945
  t/Writer_59.out
937
946
  t/Writer_6.out
938
947
  t/Writer_60.out
948
+ t/Writer_61.out
939
949
  t/Writer_7.out
940
950
  t/Writer_9.out
941
951
  t/XISF.t
package/bin/META.json CHANGED
@@ -50,5 +50,5 @@
50
50
  }
51
51
  },
52
52
  "release_status" : "stable",
53
- "version" : "13.00"
53
+ "version" : "13.17"
54
54
  }
package/bin/META.yml CHANGED
@@ -31,4 +31,4 @@ recommends:
31
31
  Time::HiRes: '0'
32
32
  requires:
33
33
  perl: '5.004'
34
- version: '13.00'
34
+ version: '13.17'
package/bin/README CHANGED
@@ -109,8 +109,8 @@ your home directory, then you would type the following commands in a
109
109
  terminal window to extract and run ExifTool:
110
110
 
111
111
  cd ~/Desktop
112
- gzip -dc Image-ExifTool-13.00.tar.gz | tar -xf -
113
- cd Image-ExifTool-13.00
112
+ gzip -dc Image-ExifTool-13.17.tar.gz | tar -xf -
113
+ cd Image-ExifTool-13.17
114
114
  ./exiftool t/images/ExifTool.jpg
115
115
 
116
116
  Note: These commands extract meta information from one of the test images.
@@ -167,7 +167,7 @@ for calculating digest values and providing other features listed below:
167
167
 
168
168
  COPYRIGHT AND LICENSE
169
169
 
170
- Copyright 2003-2024, Phil Harvey
170
+ Copyright 2003-2025, Phil Harvey
171
171
 
172
172
  This is free software; you can redistribute it and/or modify it under the
173
173
  same terms as Perl itself.
@@ -14,6 +14,7 @@
14
14
  # 2018/05/07 - PH Added support for GPSDestXxxRef tags
15
15
  # 2022/03/31 - PH IPTC Photometadata Mapping Guidelines 2202.1 update
16
16
  # 2024/10/24 - PH Additions for the 2024 EXIF for XMP spec
17
+ # 2025/01/16 - PH Copy Composite SubSec tags to XMP-exif
17
18
  #
18
19
  # References: http://www.metadataworkinggroup.org/specs/
19
20
  # https://iptc.org/std/photometadata/documentation/mappingguidelines/
@@ -54,4 +55,7 @@
54
55
  # new for the 2024 EXIF for XMP specification
55
56
  -XMP-exifEX:PhotographicSensitivity < EXIF:ISO
56
57
  -XMP-exif:DateTimeDigitized < EXIF:CreateDate
58
+ # add sub-seconds and time-zone to XMP-exif tags if available
59
+ -XMP-exif:DateTimeOriginal < Composite:SubSecDateTimeOriginal
60
+ -XMP-exif:DateTimeDigitized < Composite:SubSecCreateDate
57
61
  # end
@@ -18,6 +18,7 @@
18
18
  # 2023/01/30 - PH Also write Composite:SubSecDateTimeOriginal from
19
19
  # XMP-exif:DateTimeOriginal
20
20
  # 2024/10/24 - PH Additions for the 2024 EXIF for XMP spec
21
+ # 2025/01/16 - PH Write Composite:SubSecCreateDate from XMP-exif
21
22
  #
22
23
  # References: http://www.metadataworkinggroup.org/specs/
23
24
  # https://iptc.org/std/photometadata/documentation/mappingguidelines/
@@ -39,11 +40,11 @@
39
40
  -EXIF:DateTimeOriginal < XMP-photoshop:DateCreated
40
41
  # new for the 2024 EXIF for XMP specification
41
42
  -EXIF:ISO < XMP-exifEX:PhotographicSensitivity
42
- -EXIF:CreateDate < XMP-exif:DateTimeDigitized
43
43
  # the following SubSec tags also write/delete the corresponding EXIF
44
44
  # SubSecTime and OffsetTime tags as appropriate
45
45
  -Composite:SubSecDateTimeOriginal < XMP-exif:DateTimeOriginal
46
46
  -Composite:SubSecDateTimeOriginal < XMP-photoshop:DateCreated
47
+ -Composite:SubSecCreateDate < XMP-exif:DateTimeDigitized
47
48
  -Composite:SubSecCreateDate < XMP-xmp:CreateDate
48
49
  -Composite:SubSecModifyDate < XMP-xmp:ModifyDate
49
50
  -EXIF:Software < XMP-xmp:CreatorTool
@@ -228,7 +228,7 @@ Options:
228
228
  feature-code list may begin with a dash to remove entries from
229
229
  the default list, or a plus sign to add entries. May be
230
230
  multiple -c options for each intput DBFILE. Country/region and
231
- feature names are case insensitive. Default is "$defaults{def_codes}".
231
+ feature names are case insensitive. Default is "$defaults{def_codes}".
232
232
  -cp CODE - Additional features to include if above minimum population.
233
233
  Default is "$defcp".
234
234
  -l LANG - Alternate languages to read from $altNamesFile if