exiftool-vendored.pl 13.0.0 → 13.16.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 +254 -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 +36 -22
  26. package/bin/lib/Image/ExifTool/CBOR.pm +5 -2
  27. package/bin/lib/Image/ExifTool/Canon.pm +66 -27
  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 +32 -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 +495 -39
  127. package/bin/lib/Image/ExifTool/NikonCapture.pm +1 -1
  128. package/bin/lib/Image/ExifTool/NikonCustom.pm +2 -2
  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 +326 -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 +2 -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 +5 -4
  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 +7023 -6968
  183. package/bin/lib/Image/ExifTool/TagNames.pod +445 -29
  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/Unknown.pm +1 -1
  188. package/bin/lib/Image/ExifTool/VCard.pm +3 -3
  189. package/bin/lib/Image/ExifTool/Validate.pm +6 -6
  190. package/bin/lib/Image/ExifTool/Vivo.pm +124 -0
  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 +166 -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 +103 -1
  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 +335 -163
  213. package/bin/lib/Image/ExifTool.pod +119 -73
  214. package/bin/perl-Image-ExifTool.spec +1 -1
  215. package/bin/windows_exiftool.txt +96 -51
  216. package/package.json +9 -9
package/bin/Changes CHANGED
@@ -4,9 +4,236 @@ 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. 25, 2025 - Version 13.16
11
+
12
+ - Added a couple of new Nikon Z lenses (thanks Warren Hatch)
13
+ - Added a new Canon RFLensType (thanks Norbert Wasser)
14
+ - Added support for a MIE trailer on QuickTime-format files
15
+ - Added a number of new EXE MachineType values (github #309)
16
+ - Made "iTunes" a deletable group
17
+ - Updated decoding of many Nikon tags for the Z9 firmware version 5.1 (thanks
18
+ Warren Hatch)
19
+ - Fixed issue where -diff option would miss showing 1 tag from a group that
20
+ exists in the difference file but not in the source file
21
+ - Fixed issue where tag exclusions for alternate files weren't honoured in a
22
+ -p formatting expression when using "$file#:all:all" in the expression and
23
+ the -file#, -x, and -p options all together
24
+ - Fixed FileTypeDescription for lossless extended WebP images
25
+
26
+ Jan. 23, 2025 - Version 13.15
27
+
28
+ - Added a few new Panasonic AFSubjectDetection values (thanks Andrew J)
29
+ - Added " (lossless)" to FileType for lossless WebP images
30
+ - Avoid treating the QuickTime 'eng' language code as the default 'und' unless
31
+ the country code is also the default
32
+ - Fixed issue where writing metadata to a non-extended lossless WebP image
33
+ with an alpha channel could mess up rendering of the transparency
34
+ - Fixed problem decoding ID3 WXXX frames (github #307)
35
+
36
+ Jan. 20, 2025 - Version 13.14
37
+
38
+ - Changed so that deleting QuickTime ItemList group no longer deletes Keys
39
+ - Fixed bug where new ItemList tags weren't created when also creating new
40
+ AudioKeys or VideoKeys tags in the same command if neither tag group
41
+ pre-existed in the file
42
+
43
+ Jan. 20, 2025 - Version 13.13
44
+
45
+ - Added ability to write tags to the audio/video tracks of MOV/MP4 videos
46
+ using the new AudioKeys and VideoKeys group names
47
+ - Added support for another DJI protobuf format (Mavic 3)
48
+ - Decode yet another type of LIGOGPSINFO timed GPS from a dashcam video
49
+ - Extract some proprietary information from JPEG images of Vivo phones
50
+ - Enhanced Geolocation feature to allow the nearest cities to a specified city
51
+ to be returned
52
+ - Updated xmp2exif.args and exif2xmp.args to properly handle time zones in
53
+ XMP-exif date/time tags
54
+ - Changed family 1 group names for Keys, ItemList and UserData tags in a track
55
+ - Patched github #306 issue where a torrent file would return a format error
56
+ when reading if it didn't contain an "announce" or "created by" entry
57
+ - Fixed "uninitialized value" runtime warning when reading some EXE files
58
+ - Fixed -diff output to add colon missing from some lines when used with -g
59
+
60
+ Jan. 13, 2025 - Version 13.12
61
+
62
+ - Added a few new Panasonic AFAreaMode values (thanks Andrew J)
63
+ - Added a couple of new Canon RFLensType values (thanks Norbert Wasser)
64
+ - Added a -validate warning for duplicate IPTC tags
65
+ - Decode AF points for some newer Nikon models (thanks Warren Hatch)
66
+ - Decode a new Panasonic tag (thanks Andrew J)
67
+ - Decode a couple of previously unknown tags from LIGOGPSINFO records
68
+ - Extract some PDB information if available from Win32 EXE files (github #303)
69
+ - Improved handling of duplicate tags in -diff output
70
+ - Improved handling of QuickTime zero date/time values
71
+ - Enchanced -csv= and -json= options to allow group names and wildcards to be
72
+ used when specifying which tags to import
73
+ - Updated some EXIF:Compression values (github #304)
74
+ - Changed wording of warning when file time couldn't be updated
75
+ - Fixed bug introduced in 13.11 reading EXIF from some EXV files
76
+ - Fixed bug introduced in 12.99 where empty entries in a CSV file weren't
77
+ ignored as they should be when importing with -csv=
78
+ - Fixed problem where MWG module wasn't loaded automatically when specifying
79
+ Composite:MWG:TAG instead of MWG:TAG
80
+ - Fixed bug where -diff option was inconsistent in its treatment of List
81
+ values when used with the -sep option
82
+
83
+ Jan. 1, 2025 - Version 13.11
84
+
85
+ - Added warning for an unknown DJI protobuf schema
86
+ - Decode timed GPS from DJI Osmo Action 5 videos
87
+ - Decode yet another type of LIGOGPSINFO timed GPS from a dashcam video
88
+ - Made Matroska Keywords and Instruments List-type tags
89
+ - Fixed problem were EXIF couldn't be added to some AVIF files
90
+ - API Changes:
91
+ - Added GPSQuadrant option
92
+
93
+ Dec. 20, 2024 - Version 13.10 (production release)
94
+
95
+ - Added warnings for out-of-order entries in 'iinf' and 'ipma' boxes of HEIC
96
+ images
97
+ - Added support for date/time formatting codes %f and %z in the inverse
98
+ print conversion when writing tags
99
+ - Updated Geolocation databases from current geonames.org files
100
+ - Improved verbose output to show values stored with construction method 1 in
101
+ MP4-based files
102
+ - Enhanced the date/time timezone format specifier %z so that %:z returns the
103
+ time zone with a colon separator (eg. "-05:00")
104
+ - Fixed bug where the existing tag wasn't being removed when writing a new
105
+ value for an Unknown QuickTime UserData or ItemList tag
106
+
107
+ Dec. 17, 2024 - Version 13.09
108
+
109
+ - Added a new QuickTime tag (thanks Matti)
110
+ - Added a missing format check on a few tags when writing
111
+ - Decode a couple of new ICC_Profile tags
112
+ - Patched HEIC writer so newly added XMP or EXIF refers to the 'tmap' item as
113
+ well as the primary item of an HDRGainMap image (since iPhone 15 and 16 do
114
+ it this way)
115
+ - Fixed compatibility issue where Apple Preview would no longer show the gain
116
+ map image after adding new XMP to an HEIC with an HDR gain map
117
+
118
+ Dec. 14, 2024 - Version 13.08
119
+
120
+ - Decode ShutterCount for Canon EOS R6 Mark II (thanks Agoston Kapitany)
121
+ - Decode a few new Photoshop tags
122
+ - Suppress all duplicate Warning tags and add count to end of message
123
+ - Changed format of bitmask keys in -listx output
124
+ - Internal streamlining of LIGOGPSINFO decoding
125
+ - Fixed issue where some tags were incorrectly shown as writable in -listx
126
+ output
127
+ - Fixed incorrect scaling for GPSSpeed in one LIGOGPSINFO variant
128
+ - Fixed an issue with filename encoding when the -L option is used and the API
129
+ WindowsLongPath option is active
130
+
131
+ Dec. 11, 2024 - Version 13.07
132
+
133
+ - Decode a number of LIGOGPSINFO encrypted and enciphered timed GPS types
134
+ (long overdue, but it took me a couple of years to acquire enough sample
135
+ videos to have a good cross-section of the different formats)
136
+ - Fixed another place where FileSequence could be incremented twice when a -if
137
+ condition was used
138
+ - Fixed a few places where character 0x7f may not have been escaped in string
139
+ values
140
+ - API Changes:
141
+ - Changed default WindowsLongPath option back to 1 after adding a patch to
142
+ fix issue with piping from stdin
143
+
144
+ Dec. 5, 2024 - Version 13.06
145
+
146
+ - Decode timed metadata from MP4 videos of yet another dashcam model
147
+ - Patched issue where FileSequence could increment twice for each file when a
148
+ -if condition was used
149
+ - API Changes:
150
+ - Revert default WindowsLongPath option to the pre-13.05 setting
151
+ until we can solve the pipe problem
152
+
153
+ Dec. 4, 2024 - Version 13.05
154
+
155
+ - Added a new SonyModelID
156
+ - Added support for XMP HDRGainMap and apdi namespaces
157
+ - Decode DJI timed djmd and dbgi protobuf-format metadata
158
+ - Decode APP10 AROT HDRGainCurve and APP2 URN UniformResourceName
159
+ - Decode a couple of new GoPro tags
160
+ - API Changes:
161
+ - Changed default WindowsLongPath option to 1 (please report if this
162
+ causes any problems)
163
+
164
+ Nov. 26, 2024 - Version 13.04
165
+
166
+ - Added the ability to write GPSDOP and GPSMeasureMode from the -geotag option
167
+ if hdop or pdop information exists in the input track file
168
+ - Added a few new Canon RFLensTypes (thanks Norbert Wasser)
169
+ - Decode timed GPS from GoPro Hero 13 videos
170
+ - Improved writing of GPSDestLatitudeRef and GPSDestLongitudeRef tags to allow
171
+ signed numbers to be written in the same way as GPSLatitudeRef and
172
+ GPSLongitudeRef
173
+ - Warn if using an Image::ExifTool library that doesn't match the application
174
+ version
175
+ - Renamed an Unknown Photoshop tag
176
+ - Convert GoPro GPSSpeed and GPSSpeed3D from m/s to km/h
177
+ - Patched to tolerate XML header in DOCX xml files
178
+ - Fixed incorrect file offsets for tags in some embedded files of -htmldump
179
+ output
180
+ - Fixed -htmldump output to show the same names for unknown EXIF tags as with
181
+ the -u option
182
+
183
+ Nov. 12, 2024 - Version 13.03
184
+
185
+ - Added ability to include or exclude tags from CSV and JSON imports
186
+ (-csv=CSVFILE and -json=JSONFILE) by adding -TAG or --TAG options
187
+ - Added read/delete support for SEAL metadata in JPG, TIFF, XMP, PNG, WEBP,
188
+ HEIC, PPM, MOV and MP4 files, and read support in PDF, MKV and WAV files
189
+ - Added support for user-defined application extensions in GIF images
190
+ - Added print conversion for QuickTime VideoFullRangeFlag
191
+ - Apply API LimitLongValues option to hex field in -j output
192
+ - Avoid extracting some large AES-encrypted data from PDF files for
193
+ performance reasons unless the -m option is used (current limits are 100 kB
194
+ for XMP and 10 kB for everything else)
195
+ - Fixed WindowsLongPath option to support wide characters (thanks Frank B)
196
+ - Fixed problem writing ICC_Profile to a GIF image which already had one
197
+ - Fixed problem writing Apple:FocusDistanceRange
198
+ - API Changes:
199
+ - Enchanced GlobalTimeShift option to allow the base tag to be specified,
200
+ otherwise use the first specified source date/time tag when copying tags
201
+
202
+ Nov. 5, 2024 - Version 13.02
203
+
204
+ - Enhanced -j -l output to add optional "fmt" and "hex" fields
205
+ - Enhanced -geotag option to support Android "Export Timeline data" JSON
206
+ format
207
+ - Changed ProductVersion of Windows launcher to match ExifTool version
208
+ - Patched to use empty group name instead of "Copy0" for family 4 group name
209
+ of missing tag when the -f option is used
210
+ - Patched to avoid showing "Unknown" for group of primary tag when -g4 or -G4
211
+ was used with the -j or -csv option
212
+ - Patched to avoid using Encode module in Windows because it can hang if run
213
+ from a working directory with a long path name
214
+ - Patched to use -csv output if -j also used
215
+ - Fixed a few problems with the new WindowsLongPath option
216
+ - Fixed problem setting FileCreateDate with Xcode 16 command line tools if the
217
+ date/time contains a time zone
218
+ - Fixed problem in -csv output when combined with -g
219
+ - API Changes:
220
+ - Added SaveBin option
221
+
222
+ Nov. 1, 2024 - Version 13.01
223
+
224
+ - NOTE: Please test the new API WindowsLongPath option because the idea is to
225
+ enable this by default if everything works out well
226
+ - Fixed bug which could result in runtime warning if when API IgnoreTags
227
+ option is set to "all" when reading a TXT file format
228
+ - Fixed problem reading some information from LNK files
229
+ - Fixed verbose output to show "Binary data" message for SCALAR values
230
+ - Fixed bug where part of the hex dump from a -v3 output could go to stdout
231
+ instead of the file specified by a -w option
232
+ - API Changes:
233
+ - Added WindowsLongPath option for testing
234
+ - Changed CharsetFileName option to automatically assume UTF8 if the file
235
+ name contains special characters and is valid UTF8
236
+
10
237
  Oct. 29, 2024 - Version 13.00 (production release)
11
238
 
12
239
  - Added support for reading GPS from Autel Evo II drone videos
@@ -109,7 +336,7 @@ July 24, 2024 - Version 12.92
109
336
 
110
337
  July 24, 2024 - Version 12.91
111
338
 
112
- - Added a couple of new OpenEXR Compression values (github#276)
339
+ - Added a couple of new OpenEXR Compression values (github #276)
113
340
  - Updated 2 test files that were causing failed tests (ExifTool itself is
114
341
  unchanged)
115
342
 
@@ -576,7 +803,7 @@ Aug. 10, 2023 - Version 12.65
576
803
  provided
577
804
  - Lowered priority of IFD1 tags in ARW images so IFD0/SubIFD take precedence
578
805
  - Changed QuickTime tag names for atID (AlbumTitleID to ArtistID) and plID
579
- (PlayListID to AlbumID) (github issue #216), and added cmID (ComposerID)
806
+ (PlayListID to AlbumID) (github #216), and added cmID (ComposerID)
580
807
  - Changed Apple:MediaGroupUUID tag name back to ContentIdentifier
581
808
  - Patched the -d option to handle the %s format code internally when writing
582
809
  (avoids problems due to inconsistent behaviour of this format code in the
@@ -1127,7 +1354,15 @@ Dec. 8, 2021 - Version 12.37
1127
1354
  - Extract TransparentColor from GIF images
1128
1355
  - Improved parsing of input time values for GPSTimeStamp to properly handle a
1129
1356
  "." separator
1130
- - Improved warning when incorrectly using "
1357
+ - Improved warning when incorrectly using "<" instead of "=" to assign a tag
1358
+ value
1359
+ - Shortened a few of the new obscenely-long XMP-crs tag names
1360
+ - Avoid writing XMP-dwc:EventID and XMP-tiff:NativeDigest
1361
+ - Avoid printing same structure twice in -j and -X output when -l is used
1362
+ - Fixed typo in a QuickTime tag name (thanks Hubert)
1363
+ - Fixed two XMP-crs tag names and typo in a NikonSettings value (thanks Herb)
1364
+ - Fixed patch of version 12.25 to avoid writing XMP which contains an
1365
+ undefined namespace
1131
1366
 
1132
1367
  Nov. 16, 2021 - Version 12.36
1133
1368
 
@@ -1439,7 +1674,7 @@ Feb. 3, 2021 - Version 12.17
1439
1674
  - Avoid extracting audio/video data from AVI videos when -ee -u is used
1440
1675
  - Patched decoding of Canon ContinuousShootingSpeed for newer firmware
1441
1676
  versions of the EOS-1DXmkIII
1442
- - Re-worked LensID patch of version 12.00 (github issue #51)
1677
+ - Re-worked LensID patch of version 12.00 (github #51)
1443
1678
  - Fixed a few typos in newly-added NikonSettings tags (thanks Herb)
1444
1679
  - Fixed problem where group could not be specified for PNG-pHYs tags when
1445
1680
  writing
@@ -1510,7 +1745,7 @@ Nov. 27, 2020 - Version 12.11
1510
1745
 
1511
1746
  - Added -csvDelim option
1512
1747
  - Added new Canon and Olympus LensType values (thanks LibRaw)
1513
- - Added a warning if ICC_Profile is deleted from an image (github issue #63)
1748
+ - Added a warning if ICC_Profile is deleted from an image (github #63)
1514
1749
  - EndDir() function for -if option now works when -fileOrder is used
1515
1750
  - Changed FileSize conversion to use binary prefixes since that is how the
1516
1751
  conversion is currently done (eg. MiB instead of MB)
@@ -1884,7 +2119,7 @@ Jan. 8, 2020 - Version 11.82
1884
2119
  - Added a new Canon LensType
1885
2120
  - Added a new CanonModelID (thanks LibRaw)
1886
2121
  - Added ability to process SubDirectories in QuickTime Keys tags
1887
- - Removed minor error when writing PDF 2.0 files (github issue #30)
2122
+ - Removed minor error when writing PDF 2.0 files (github #30)
1888
2123
  - Fixed problem where trailing null bytes were removed from binary values in
1889
2124
  the -php output when the -b option was used
1890
2125
 
@@ -1898,8 +2133,7 @@ Jan. 2, 2020 - Version 11.81
1898
2133
  - Patched Composite sub-second date/time tags to do additional validation of
1899
2134
  source EXIF date/time tags before adding sub seconds
1900
2135
  - 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)
2136
+ used and the structure field names contained special characters (github #32)
1903
2137
  - Fixed spelling in a Panasonic SceneMode value (thanks Hubert)
1904
2138
 
1905
2139
  Dec. 17, 2019 - Version 11.80
@@ -1919,7 +2153,7 @@ Dec. 12, 2019 - Version 11.79
1919
2153
 
1920
2154
  - Added support for AVIF files
1921
2155
  - 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)
2156
+ - Made PDF 2.0 writable at your own risk with the -m option (github #30)
1923
2157
  - Enhanced -validate feature to warn about duplicate languages in an XMP
1924
2158
  lang-alt list
1925
2159
  - Fixed inconsistency between documentation and ExifTool capabilities for
@@ -2005,7 +2239,7 @@ Oct. 16, 2019 - Version 11.71
2005
2239
  Oct. 10, 2019 - Version 11.70 (production release)
2006
2240
 
2007
2241
  - Added a new CanonModelID (thanks Laurent Clevy)
2008
- - Improved identification of Office Open XML files (github issue #27)
2242
+ - Improved identification of Office Open XML files (github #27)
2009
2243
  - Removed RAF version check when writing FujiFilm RAF files
2010
2244
  - Limited the number of accelerometer records that ExifTool will read by
2011
2245
  default with the -ee option from INSV files to avoid excessive processing
@@ -2087,7 +2321,7 @@ Aug. 20, 2019 - Version 11.63 - "PNG Early Text"
2087
2321
  - Added a few new Sigma lenses (thanks LibRaw)
2088
2322
  - Improved handling of Canon CNTH atom in MOV/MP4 videos
2089
2323
  - Changed PNG writer to place all text chunks before IDAT (not just XMP)
2090
- (github issue #23)
2324
+ (github #23)
2091
2325
  - Issue minor warning for any text chunk after PNG IDAT (not just XMP)
2092
2326
  - Enhanced ForceWrite feature to allow "PNG" to be specified (to move existing
2093
2327
  text chunks to before IDAT without editing any metadata)
@@ -2244,7 +2478,7 @@ June 17, 2019 - Version 11.52
2244
2478
  - Fixed problem where reading a large, corrupt AIFF file may could take an
2245
2479
  excessively long time
2246
2480
  - API Changes:
2247
- - Enhanced Compact option to add levels 3, 4 and 5 (github issue #16)
2481
+ - Enhanced Compact option to add levels 3, 4 and 5 (github #16)
2248
2482
 
2249
2483
  June 13, 2019 - Version 11.51
2250
2484
 
@@ -2382,7 +2616,7 @@ May 3, 2019 - Version 11.39 - "Create QuickTime tags"
2382
2616
  - Decode Canon EOS D60 black levels
2383
2617
  - Split off some QuickTime tags into different family 1 groups
2384
2618
  - 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)
2619
+ - Fixed decoding of Pentax AutoBracketing for K-1 and K-5 (github #15)
2386
2620
  - Fixed some QuickTime family 2 group names
2387
2621
  - Fixed bug introduced in 11.38 that broke extraction of thumbnail images from
2388
2622
  Canon MOV videos
@@ -2486,7 +2720,7 @@ Mar. 14, 2019 - Version 11.32
2486
2720
  Mar. 7, 2019 - Version 11.31
2487
2721
 
2488
2722
  - Added read support for FITS images
2489
- - Another try at removing spaces from some DICOM values (github issues #10/12)
2723
+ - Another try at removing spaces from some DICOM values (github #10 and #12)
2490
2724
 
2491
2725
  Mar. 6, 2019 - Version 11.30 (production release)
2492
2726
 
@@ -2495,7 +2729,7 @@ Mar. 6, 2019 - Version 11.30 (production release)
2495
2729
  - Decode Reconyx HF2 PRO maker notes
2496
2730
  - Decode ColorData for some new Canon models (thanks LibRaw)
2497
2731
  - Enhanced -geotag feature to set AmbientTemperature if available
2498
- - Remove non-significant spaces from some DICOM values (github issues #10/12)
2732
+ - Remove non-significant spaces from some DICOM values (github #10 and #12)
2499
2733
  - Fixed possible "'x' outside of string" error when reading corrupted EXIF
2500
2734
  - Fixed incorrect write group for GeoTIFF tags added in version 11.24
2501
2735
 
@@ -2503,13 +2737,13 @@ Feb. 28, 2019 - Version 11.29
2503
2737
 
2504
2738
  - Added support for Ricoh GR III maker notes
2505
2739
  - Added a new Canon LensType (thanks Claude Jolicoeur)
2506
- - Added a new XMP-crs tag (github issue #8)
2740
+ - Added a new XMP-crs tag (github #8)
2507
2741
  - Enhanced -csv option to output base64-encoded binary data when combined with
2508
2742
  -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)
2743
+ (github #11)
2744
+ - Remove trailing space from even-length DICOM values (github #9)
2511
2745
  - Patched to avoid "Hexadecimal number > 0xffffffff non-portable" warning
2512
- (github issue #6)
2746
+ (github #6)
2513
2747
  - Fixed meta charset attribute in -htmlDump output
2514
2748
 
2515
2749
  Feb. 21, 2019 - Version 11.28
package/bin/MANIFEST CHANGED
@@ -180,6 +180,7 @@ html/TagNames/Theora.html
180
180
  html/TagNames/Torrent.html
181
181
  html/TagNames/Unknown.html
182
182
  html/TagNames/VCard.html
183
+ html/TagNames/Vivo.html
183
184
  html/TagNames/Vorbis.html
184
185
  html/TagNames/WPG.html
185
186
  html/TagNames/WTV.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
@@ -429,6 +432,7 @@ lib/Image/ExifTool/Torrent.pm
429
432
  lib/Image/ExifTool/Unknown.pm
430
433
  lib/Image/ExifTool/VCard.pm
431
434
  lib/Image/ExifTool/Validate.pm
435
+ lib/Image/ExifTool/Vivo.pm
432
436
  lib/Image/ExifTool/Vorbis.pm
433
437
  lib/Image/ExifTool/WPG.pm
434
438
  lib/Image/ExifTool/WTV.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.16"
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.16'
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.16.tar.gz | tar -xf -
113
+ cd Image-ExifTool-13.16
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