exiftool-vendored.pl 13.0.1 → 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 +6 -6
@@ -12,7 +12,7 @@ meta information extracted from or written to a file.
12
12
  =head1 TAG TABLES
13
13
 
14
14
  The tables listed below give the names of all tags recognized by ExifTool.
15
- They contain a total of 28165 tags, with 17491 unique tag names.
15
+ They contain a total of 28393 tags, with 17525 unique tag names.
16
16
 
17
17
  B<Tag ID>, B<Index#> or B<Sequence> is given in the first column of each
18
18
  table. A B<Tag ID> is the computer-readable equivalent of a tag name, and
@@ -115,6 +115,7 @@ L<https://www.w3.org/Graphics/JPEG/jfif3.pdf> for the JPEG specification.
115
115
  FPXR FlashPix
116
116
  MPF MPF
117
117
  InfiRayVersion InfiRay Version
118
+ UniformResourceName no
118
119
  PreviewImage no
119
120
  'APP3' Meta Kodak Meta
120
121
  Stim Stim
@@ -147,9 +148,12 @@ L<https://www.w3.org/Graphics/JPEG/jfif3.pdf> for the JPEG specification.
147
148
  DJI-DBG DJI Info
148
149
  'APP8' SPIFF JPEG SPIFF
149
150
  InfiRayIsothermal InfiRay Isothermal
151
+ SEAL XMP SEAL
150
152
  'APP9' MediaJukebox JPEG MediaJukebox
151
153
  InfiRaySensor InfiRay Sensor
154
+ SEAL XMP SEAL
152
155
  'APP10' Comment no
156
+ HDRGainCurve no
153
157
  'APP11' JPEG-HDR JPEG HDR
154
158
  JUMBF Jpeg2000
155
159
  'APP12' PictureInfo APP12 PictureInfo
@@ -167,6 +171,7 @@ L<https://www.w3.org/Graphics/JPEG/jfif3.pdf> for the JPEG specification.
167
171
  PhotoMechanic PhotoMechanic
168
172
  MIE MIE
169
173
  Samsung Samsung Trailer
174
+ Vivo Vivo
170
175
  EmbeddedVideo no
171
176
  Insta360 no
172
177
  NikonApp no
@@ -1053,6 +1058,7 @@ for the official EXIF 2.32 specification.
1053
1058
  0xcd49 JXLDistance IFD0 float
1054
1059
  0xcd4a JXLEffort IFD0 int32u
1055
1060
  0xcd4b JXLDecodeSpeed IFD0 int32u
1061
+ 0xcea1 SEAL IFD0 XMP SEAL
1056
1062
  0xea1c Padding ExifIFD undef!
1057
1063
  0xea1d OffsetSchema ExifIFD int32s!
1058
1064
  0xfde8 OwnerName ExifIFD string/
@@ -1367,6 +1373,7 @@ L<http://www.adobe.com/devnet/xmp/> for the official XMP specification.
1367
1373
  acdsee XMP acdsee
1368
1374
  acdsee-rs XMP ACDSeeRegions
1369
1375
  album XMP Album
1376
+ apdi XMP apdi
1370
1377
  apple-fi XMP apple_fi
1371
1378
  ast Nikon ast
1372
1379
  aux XMP aux
@@ -1399,6 +1406,7 @@ L<http://www.adobe.com/devnet/xmp/> for the official XMP specification.
1399
1406
  GPano XMP GPano
1400
1407
  GSpherical XMP GSpherical
1401
1408
  hdr XMP hdr
1409
+ HDRGainMap XMP HDRGainMap
1402
1410
  hdrgm XMP hdrgm
1403
1411
  ics XMP ics
1404
1412
  iptcCore XMP iptcCore
@@ -1427,6 +1435,7 @@ L<http://www.adobe.com/devnet/xmp/> for the official XMP specification.
1427
1435
  pur XMP pur
1428
1436
  rdf XMP rdf
1429
1437
  sdc Nikon sdc
1438
+ seal XMP seal
1430
1439
  swf XMP swf
1431
1440
  tiff XMP tiff
1432
1441
  x XMP x
@@ -1580,6 +1589,18 @@ These tags belong to the ExifTool XMP-album family 1 group.
1580
1589
  -------- --------
1581
1590
  Notes string
1582
1591
 
1592
+ =head3 XMP apdi Tags
1593
+
1594
+ Used in Apple HDR GainMap images.
1595
+
1596
+ These tags belong to the ExifTool XMP-apdi family 1 group.
1597
+
1598
+ Tag Name Writable
1599
+ -------- --------
1600
+ AuxiliaryImageType string
1601
+ NativeFormat string
1602
+ StoredFormat string
1603
+
1583
1604
  =head3 XMP apple_fi Tags
1584
1605
 
1585
1606
  Face information tags written by the Apple iPhone 5 inside the mwg-rs
@@ -5026,6 +5047,16 @@ These tags belong to the ExifTool XMP-hdr family 1 group.
5026
5047
  CCVWhiteXY string
5027
5048
  SceneReferred boolean
5028
5049
 
5050
+ =head3 XMP HDRGainMap Tags
5051
+
5052
+ Used in Apple HDR GainMap images.
5053
+
5054
+ These tags belong to the ExifTool XMP-HDRGainMap family 1 group.
5055
+
5056
+ Tag Name Writable
5057
+ -------- --------
5058
+ HDRGainMapVersion string
5059
+
5029
5060
  =head3 XMP hdrgm Tags
5030
5061
 
5031
5062
  Tags used in Adobe gain map images.
@@ -6152,6 +6183,41 @@ These tags belong to the ExifTool XMP-rdf family 1 group.
6152
6183
  -------- --------
6153
6184
  About string!
6154
6185
 
6186
+ =head3 XMP seal Tags
6187
+
6188
+ SEAL embedded in XMP.
6189
+
6190
+ These tags belong to the ExifTool XMP-seal family 1 group.
6191
+
6192
+ Tag Name Writable
6193
+ -------- --------
6194
+ Seal XMP SEAL
6195
+
6196
+ =head3 XMP SEAL Tags
6197
+
6198
+ These tags are used in SEAL (Secure Evidence Attribution Label) content
6199
+ authentification, which is actually XML format, not XMP. ExifTool has
6200
+ read/delete support for SEAL information in JPG, TIFF, XMP, PNG, WEBP, HEIC,
6201
+ PPM, MOV and MP4 files, and read-only support in PDF, MKV and WAV. Use
6202
+ C<-seal:all=> on the command line to delete SEAL information in supported
6203
+ formats. See L<https://github.com/hackerfactor/SEAL> for the specification.
6204
+
6205
+ Tag ID Tag Name Writable
6206
+ ------ -------- --------
6207
+ 'b' ByteRange no
6208
+ 'copyright' Copyright no
6209
+ 'd' Domain no
6210
+ 'da' DigestAlgorithm no
6211
+ 'id' Identifier no
6212
+ 'info' SEALComment no
6213
+ 'ka' KeyAlgorithm no
6214
+ 'kv' KeyVersion no
6215
+ 's' Signature no
6216
+ 'seal' SEALVersion no
6217
+ 'sf' SignatureFormat no
6218
+ 'sl' SignatureLength no
6219
+ 'uid' UniqueIdentifier no
6220
+
6155
6221
  =head3 XMP swf Tags
6156
6222
 
6157
6223
  Adobe SWF namespace tags.
@@ -7366,6 +7432,7 @@ These tags are used in Panasonic/Leica cameras.
7366
7432
  0x00d6 NoiseReductionStrength rational64s
7367
7433
  0x00e4 LensTypeModel int16u
7368
7434
  0x00e8 MinimumISO int32u
7435
+ 0x00e9 AFSubjectDetection int16u
7369
7436
  0x00ee DynamicRangeBoost int16u
7370
7437
  0x0e00 PrintIM PrintIM
7371
7438
  0x2003 TimeInfo Panasonic TimeInfo
@@ -8578,6 +8645,7 @@ specification.
8578
8645
  'cept' ColorEncodingParams no
8579
8646
  'chad' ChromaticAdaptation no
8580
8647
  'chrm' Chromaticity ICC_Profile Chromaticity
8648
+ 'cicp' ColorRepresentation ICC_Profile ColorRep
8581
8649
  'ciis' ColorimetricIntentImageState no
8582
8650
  'clio' ColorantInfoOut no
8583
8651
  'cloo' ColorantOrderOut no
@@ -8616,6 +8684,7 @@ specification.
8616
8684
  'gdb1' GamutBoundaryDescription1 no
8617
8685
  'gdb2' GamutBoundaryDescription2 no
8618
8686
  'gdb3' GamutBoundaryDescription3 no
8687
+ 'hdgm' HDGainMapInfo no
8619
8688
  'kTRC' GrayTRC no
8620
8689
  'lumi' Luminance no
8621
8690
  'mcta' MultiplexTypeArray no
@@ -8697,6 +8766,15 @@ specification.
8697
8766
  28 ChromaticityChannel3 no
8698
8767
  36 ChromaticityChannel4 no
8699
8768
 
8769
+ =head3 ICC_Profile ColorRep Tags
8770
+
8771
+ Index1 Tag Name Writable
8772
+ ------ -------- --------
8773
+ 8 ColorPrimaries no
8774
+ 9 TransferCharacteristics no
8775
+ 10 MatrixCoefficients no
8776
+ 11 VideoFullRangeFlag no
8777
+
8700
8778
  =head3 ICC_Profile ColorantTable Tags
8701
8779
 
8702
8780
  Index1 Tag Name Writable
@@ -8838,7 +8916,7 @@ access to this information.
8838
8916
  0x0432 MeasurementScale? no
8839
8917
  0x0433 TimelineInfo? no
8840
8918
  0x0434 SheetDisclosure? no
8841
- 0x0435 DisplayInfo? no
8919
+ 0x0435 ChannelOptions Photoshop ChannelOptions
8842
8920
  0x0436 OnionSkins? no
8843
8921
  0x0438 CountInfo? no
8844
8922
  0x043a PrintInfo2? no
@@ -8901,6 +8979,17 @@ access to this information.
8901
8979
  ------ -------- --------
8902
8980
  4 PixelAspectRatio no
8903
8981
 
8982
+ =head3 Photoshop ChannelOptions Tags
8983
+
8984
+ These tags relate only to the appearance of a channel.
8985
+
8986
+ Index1 Tag Name Writable
8987
+ ------ -------- --------
8988
+ 0 ChannelColorSpace no
8989
+ 2 ChannelColorData no
8990
+ 11 ChannelOpacity no
8991
+ 12 ChannelColorIndicates no
8992
+
8904
8993
  =head3 Photoshop DocumentData Tags
8905
8994
 
8906
8995
  Tag ID Tag Name Writable
@@ -9260,6 +9349,7 @@ Unknown only to reduce the volume of the normal output.
9260
9349
  CanonCameraInfo1100D Canon CameraInfo600D
9261
9350
  CanonCameraInfo1200D Canon CameraInfo60D
9262
9351
  CanonCameraInfoR6 Canon CameraInfoR6
9352
+ CanonCameraInfoR6m2 Canon CameraInfoR6m2
9263
9353
  CanonCameraInfoG5XII Canon CameraInfoG5XII
9264
9354
  CanonCameraInfoPowerShot Canon CameraInfoPowerShot
9265
9355
  CanonCameraInfoPowerShot2 Canon CameraInfoPowerShot2
@@ -10256,6 +10346,14 @@ CameraInfo tags for the EOS R5 and R6.
10256
10346
  ------ -------- --------
10257
10347
  2801 ShutterCount int32u
10258
10348
 
10349
+ =head3 Canon CameraInfoR6m2 Tags
10350
+
10351
+ CameraInfo tags for the EOS R6 Mark II.
10352
+
10353
+ Index1 Tag Name Writable
10354
+ ------ -------- --------
10355
+ 3369 ShutterCount int32u
10356
+
10259
10357
  =head3 Canon CameraInfoG5XII Tags
10260
10358
 
10261
10359
  CameraInfo tags for the PowerShot G5 X Mark II.
@@ -12873,6 +12971,75 @@ Thermal parameters extracted from APP4 of some DJI RJPEG files.
12873
12971
  8 Emissivity no
12874
12972
  10 ReflectedTemperature no
12875
12973
 
12974
+ =head3 DJI Protobuf Tags
12975
+
12976
+ Tags found in protobuf-format DJI djmd and dbgi timed metadata. The known
12977
+ tags listed below are extracted by default, but unknown djmd tags may be
12978
+ extracted as well by setting the Unknown option to 1, or 2 to also extract
12979
+ unknown dbgi debug tags. Tag ID's are composed of the corresponding .proto
12980
+ file name combined with the hierarchical protobuf field numbers.
12981
+
12982
+ ExifTool currently extracts timed GPS plus a few other tags from DJI devices
12983
+ which use the following protocols: dvtm_AVATA2.proto (Avanta 2),
12984
+ dvtm_ac203.proto (Osmo Action 4), dvtm_ac204.proto (Osmo Action 5) and
12985
+ dvtm_wm265e.proto (Mavic 3).
12986
+
12987
+ Note that with the protobuf format, numerical tags missing from the output
12988
+ for a given protocol should be considered to have the default value of 0.
12989
+
12990
+ Tag ID Tag Name Writable
12991
+ ------ -------- --------
12992
+ 'Protocol' Protocol no
12993
+ 'dvtm_AVATA2_1-1-5' SerialNumber no
12994
+ 'dvtm_AVATA2_1-1-10' Model no
12995
+ 'dvtm_AVATA2_2-2-3-1' SerialNumber2 no
12996
+ 'dvtm_AVATA2_2-3' FrameInfo DJI FrameInfo
12997
+ 'dvtm_AVATA2_3-1-2' TimeStamp no
12998
+ 'dvtm_AVATA2_3-4-4-1' GPSInfo DJI GPSInfo
12999
+ 'dvtm_ac203_1-1-5' SerialNumber no
13000
+ 'dvtm_ac203_1-1-10' Model no
13001
+ 'dvtm_ac203_2-3' FrameInfo DJI FrameInfo
13002
+ 'dvtm_ac203_3-4-2-1' GPSInfo DJI GPSInfo
13003
+ 'dvtm_ac203_3-4-2-2' GPSAltitude no
13004
+ 'dvtm_ac203_3-4-2-6-1' GPSDateTime no
13005
+ 'dvtm_ac204_1-1-5' SerialNumber no
13006
+ 'dvtm_ac204_1-1-10' Model no
13007
+ 'dvtm_ac204_2-3' FrameInfo DJI FrameInfo
13008
+ 'dvtm_ac204_3-4-2-1' GPSInfo DJI GPSInfo
13009
+ 'dvtm_ac204_3-4-2-2' GPSAltitude no
13010
+ 'dvtm_ac204_3-4-2-6-1' GPSDateTime no
13011
+ 'dvtm_wm265e_1-1-5' SerialNumber no
13012
+ 'dvtm_wm265e_1-1-10' Model no
13013
+ 'dvtm_wm265e_2-2' FrameInfo DJI FrameInfo
13014
+ 'dvtm_wm265e_3-2-2-1' ISO no
13015
+ 'dvtm_wm265e_3-2-3-1' ShutterSpeed no
13016
+ 'dvtm_wm265e_3-2-6-1' DigitalZoom no
13017
+ 'dvtm_wm265e_3-3-3-1' DroneRoll no
13018
+ 'dvtm_wm265e_3-3-3-2' DronePitch no
13019
+ 'dvtm_wm265e_3-3-3-3' DroneYaw no
13020
+ 'dvtm_wm265e_3-3-4-1' GPSInfo DJI GPSInfo
13021
+ 'dvtm_wm265e_3-3-4-2' AbsoluteAltitude no
13022
+ 'dvtm_wm265e_3-3-5-1' RelativeAltitude no
13023
+ 'dvtm_wm265e_3-4-3-1' GimbalPitch no
13024
+ 'dvtm_wm265e_3-4-3-2' GimbalRoll no
13025
+ 'dvtm_wm265e_3-4-3-3' GimbalYaw no
13026
+
13027
+ =head3 DJI FrameInfo Tags
13028
+
13029
+ Tag ID Tag Name Writable
13030
+ ------ -------- --------
13031
+ 1 FrameWidth no
13032
+ 2 FrameHeight no
13033
+ 3 FrameRate no
13034
+
13035
+ =head3 DJI GPSInfo Tags
13036
+
13037
+ Tag ID Tag Name Writable
13038
+ ------ -------- --------
13039
+ 1 CoordinateUnits no
13040
+ 2 GPSLatitude no
13041
+ 3 GPSLongitude no
13042
+
12876
13043
  =head2 FLIR Tags
12877
13044
 
12878
13045
  Information extracted from the maker notes of JPEG images from thermal
@@ -17070,6 +17237,8 @@ These tags are extracted from encrypted data in images from the Z9.
17070
17237
  MenuSettingsOffsetZ9v4 Nikon MenuSettingsZ9v3
17071
17238
  -
17072
17239
  Nikon MenuSettingsZ9v4
17240
+ -
17241
+ Nikon MenuSettingsZ9v5
17073
17242
 
17074
17243
  =head3 Nikon MenuSettingsZ9 Tags
17075
17244
 
@@ -17231,7 +17400,7 @@ These tags are used by the Z9 firmware 3.00.
17231
17400
 
17232
17401
  =head3 Nikon MenuSettingsZ9v4 Tags
17233
17402
 
17234
- These tags are used by the Z9 firmware 4.0.0 and 4.1.0
17403
+ These tags are used by the Z9 firmware 4.0.0 and 4.1.0.
17235
17404
 
17236
17405
  Index1 Tag Name Writable
17237
17406
  ------ -------- --------
@@ -17371,6 +17540,148 @@ These tags are used by the Z9 firmware 4.0.0 and 4.1.0
17371
17540
  2070 BracketButtonPlaybackMode int8u
17372
17541
  2072 FlashModeButtonPlaybackMode int8u
17373
17542
 
17543
+ =head3 Nikon MenuSettingsZ9v5 Tags
17544
+
17545
+ These tags are used by the Z9 firmware 5.1.
17546
+
17547
+ Index1 Tag Name Writable
17548
+ ------ -------- --------
17549
+ 72 HighFrameRate int8u
17550
+ 158 MultipleExposureMode int8u
17551
+ 160 MultiExposureShots int8u
17552
+ 208 Intervals int32u
17553
+ 212 ShotsPerInterval int32u
17554
+ 252 FocusShiftNumberShots int8u
17555
+ 256 FocusShiftStepWidth int8u
17556
+ 260 FocusShiftInterval int8u~
17557
+ 264 FocusShiftExposureLock? int8u
17558
+ 294 PhotoShootingMenuBank int8u
17559
+ 296 ExtendedMenuBanks int8u
17560
+ 332 PhotoShootingMenuBankImageArea int8u
17561
+ 346 AutoISO int8u
17562
+ 348 ISOAutoHiLimit? int16u
17563
+ 350 ISOAutoFlashLimit? int16u
17564
+ 358 ISOAutoShutterTime no
17565
+ 440 MovieVignetteControl? int8u
17566
+ 442 DiffractionCompensation int8u
17567
+ 444 FlickerReductionShooting int8u
17568
+ 448 FlashControlMode int8u
17569
+ 450 FlashMasterCompensation? int8s
17570
+ 454 FlashGNDistance? no
17571
+ 458 FlashOutput? int8u
17572
+ 552 AFAreaMode int8u
17573
+ 554 VRMode int8u
17574
+ 558 BracketSet int8u
17575
+ 560 BracketProgram int8u
17576
+ 562 BracketIncrement int8u
17577
+ 574 HDR int8u
17578
+ 580 SecondarySlotFunction int8u
17579
+ 586 HDRLevel int8u
17580
+ 590 Slot2JpgSize? int8u
17581
+ 596 DXCropAlert int8u
17582
+ 598 SubjectDetection int8u
17583
+ 600 DynamicAFAreaSize int8u
17584
+ 640 HighFrequencyFlickerReduction? int8u
17585
+ 650 MovieImageArea? int8u & 0x01
17586
+ 660 MovieType? int8u
17587
+ 662 MovieISOAutoHiLimit? int16u
17588
+ 664 MovieISOAutoControlManualMode? int8u
17589
+ 666 MovieISOAutoManualMode? int16u
17590
+ 740 MovieActiveD-Lighting? int8u
17591
+ 742 MovieHighISONoiseReduction? int8u
17592
+ 748 MovieFlickerReduction int8u
17593
+ 750 MovieMeteringMode? int8u
17594
+ 752 MovieFocusMode? int8u
17595
+ 754 MovieAFAreaMode int8u
17596
+ 756 MovieVRMode? int8u
17597
+ 760 MovieElectronicVR? int8u
17598
+ 762 MovieSoundRecording? int8u
17599
+ 764 MicrophoneSensitivity? int8u
17600
+ 766 MicrophoneAttenuator? int8u
17601
+ 768 MicrophoneFrequencyResponse? int8u
17602
+ 770 WindNoiseReduction? int8u
17603
+ 792 MovieToneMap? int8u
17604
+ 798 MovieFrameSize? int8u
17605
+ 800 MovieFrameRate? int8u
17606
+ 806 MicrophoneJackPower? int8u
17607
+ 807 MovieDXCropAlert? int8u
17608
+ 808 MovieSubjectDetection? int8u
17609
+ 816 MovieHighResZoom? int8u
17610
+ 851 CustomSettingsZ9v4 NikonCustom SettingsZ9v4
17611
+ 1502 Language? int8u
17612
+ 1504 TimeZone int8u
17613
+ 1510 MonitorBrightness? int8u
17614
+ 1532 AFFineTune? int8u
17615
+ 1536 NonCPULens1FocalLength? int16s~
17616
+ 1540 NonCPULens2FocalLength? int16s~
17617
+ 1542 NonCPULens3FocalLength? int16s~
17618
+ 1548 NonCPULens4FocalLength? int16s~
17619
+ 1552 NonCPULens5FocalLength? int16s~
17620
+ 1556 NonCPULens6FocalLength? int16s~
17621
+ 1560 NonCPULens7FocalLength? int16s~
17622
+ 1564 NonCPULens8FocalLength? int16s~
17623
+ 1568 NonCPULens9FocalLength? int16s~
17624
+ 1572 NonCPULens10FocalLength? int16s~
17625
+ 1576 NonCPULens11FocalLength? int16s~
17626
+ 1580 NonCPULens12FocalLength? int16s~
17627
+ 1584 NonCPULens13FocalLength? int16s~
17628
+ 1588 NonCPULens14FocalLength? int16s~
17629
+ 1592 NonCPULens15FocalLength? int16s~
17630
+ 1596 NonCPULens16FocalLength? int16s~
17631
+ 1600 NonCPULens17FocalLength? int16s~
17632
+ 1604 NonCPULens18FocalLength? int16s~
17633
+ 1608 NonCPULens19FocalLength? int16s~
17634
+ 1612 NonCPULens20FocalLength? int16s~
17635
+ 1616 NonCPULens1MaxAperture? int16s~
17636
+ 1620 NonCPULens2MaxAperture? int16s~
17637
+ 1624 NonCPULens3MaxAperture? int16s~
17638
+ 1628 NonCPULens4MaxAperture? int16s~
17639
+ 1632 NonCPULens5MaxAperture? int16s~
17640
+ 1636 NonCPULens6MaxAperture? int16s~
17641
+ 1640 NonCPULens7MaxAperture? int16s~
17642
+ 1644 NonCPULens8MaxAperture? int16s~
17643
+ 1648 NonCPULens9MaxAperture? int16s~
17644
+ 1652 NonCPULens10MaxAperture? int16s~
17645
+ 1656 NonCPULens11MaxAperture? int16s~
17646
+ 1660 NonCPULens12MaxAperture? int16s~
17647
+ 1664 NonCPULens13MaxAperture? int16s~
17648
+ 1668 NonCPULens14MaxAperture? int16s~
17649
+ 1672 NonCPULens15MaxAperture? int16s~
17650
+ 1676 NonCPULens16MaxAperture? int16s~
17651
+ 1680 NonCPULens17MaxAperture? int16s~
17652
+ 1684 NonCPULens18MaxAperture? int16s~
17653
+ 1688 NonCPULens19MaxAperture? int16s~
17654
+ 1692 NonCPULens20MaxAperture? int16s~
17655
+ 1708 HDMIOutputResolution int8u
17656
+ 1721 SetClockFromLocationData? int8u
17657
+ 1728 AirplaneMode? int8u
17658
+ 1729 EmptySlotRelease? int8u
17659
+ 1764 EnergySavingMode? int8u
17660
+ 1788 RecordLocationData? int8u
17661
+ 1792 USBPowerDelivery? int8u
17662
+ 1801 SensorShield? int8u
17663
+ 1866 AutoCapturePreset int8u
17664
+ 1868 FocusShiftAutoReset? int8u
17665
+ 1926 PreReleaseBurstLength int8u
17666
+ 1928 PostReleaseBurstLength int8u
17667
+ 1942 VerticalISOButton int8u
17668
+ 1944 ExposureCompensationButton int8u
17669
+ 1946 ISOButton int8u
17670
+ 2006 ViewModeShowEffectsOfSettings? int8u
17671
+ 2008 DispButton int8u
17672
+ 2052 ExposureDelay fixed32u~
17673
+ 2056 CommandDialFrameAdvanceZoom? int8u
17674
+ 2058 SubCommandDialFrameAdvanceZoom? int8u
17675
+ 2060 PlaybackButton int8u
17676
+ 2062 WBButton int8u
17677
+ 2064 BracketButton int8u
17678
+ 2066 FlashModeButton int8u
17679
+ 2068 LensFunc1ButtonPlaybackMode int8u
17680
+ 2070 LensFunc2ButtonPlaybackMode int8u
17681
+ 2072 PlaybackButtonPlaybackMode int8u
17682
+ 2074 BracketButtonPlaybackMode int8u
17683
+ 2076 FlashModeButtonPlaybackMode int8u
17684
+
17374
17685
  =head3 Nikon ShotInfo Tags
17375
17686
 
17376
17687
  This information is encrypted for ShotInfoVersion 02xx, and some tags are
@@ -17754,17 +18065,20 @@ These tags are used by the D4S, D750, D810, D5500, D7200 (FlashInfoVersion
17754
18065
 
17755
18066
  =head3 Nikon AFInfo2V0400 Tags
17756
18067
 
18068
+ AF information for Nikon cameras with the Expeed 7 processor: The Zf, Z6_3,
18069
+ Z8, Z9 and Z50_3.
18070
+
17757
18071
  Index1 Tag Name Writable
17758
18072
  ------ -------- --------
17759
18073
  0 AFInfo2Version no
17760
18074
  5 AFAreaMode int8u
17761
18075
  10 AFPointsUsed undef[51]
18076
+ AFPointsUsed undef[35]
18077
+ AFPointsUsed undef[27]
17762
18078
  62 AFImageWidth int16u
17763
18079
  64 AFImageHeight int16u
17764
18080
  66 AFAreaXPosition int16u
17765
- 67 FocusPositionHorizontal int8u~
17766
18081
  68 AFAreaYPosition int16u
17767
- 69 FocusPositionVertical int8u~
17768
18082
  70 AFAreaWidth int16u
17769
18083
  72 AFAreaHeight int16u
17770
18084
  74 FocusResult int8u
@@ -23532,6 +23846,16 @@ Tags written by the Sony Image Data Converter utility in ARW images.
23532
23846
  0xd100 VersionCreateDate string
23533
23847
  0xd101 VersionModifyDate string
23534
23848
 
23849
+ =head2 Vivo Tags
23850
+
23851
+ Proprietary information written by some Vivo phones.
23852
+
23853
+ Tag Name Writable
23854
+ -------- --------
23855
+ HDRImage no
23856
+ HiddenData no
23857
+ JSONInfo no
23858
+
23535
23859
  =head2 Unknown Tags
23536
23860
 
23537
23861
  The following tags are decoded in unsupported maker notes. Use the Unknown
@@ -24680,6 +25004,7 @@ L<https://github.com/gopro/gpmf-parser> for details about this format.
24680
25004
  'GLPI' GPSPos GoPro GLPI
24681
25005
  'GPRI' GPSRaw? GoPro GPRI
24682
25006
  'GPS5' GPSInfo GoPro GPS5
25007
+ 'GPS9' GPSInfo9 GoPro GPS9
24683
25008
  'GPSA' GPSAltitudeSystem no
24684
25009
  'GPSF' GPSMeasureMode no
24685
25010
  'GPSP' GPSHPositioningError no
@@ -24725,11 +25050,14 @@ L<https://github.com/gopro/gpmf-parser> for details about this format.
24725
25050
  'TMPC' CameraTemperature no
24726
25051
  'TSMP' TotalSamples? no
24727
25052
  'TYPE' StructureType? no
25053
+ 'TZON' TimeZone no
24728
25054
  'UNIF' InputUniformity no
24729
25055
  'UNIT' Units? no
24730
25056
  'VERS' MetadataVersion no
24731
25057
  'VFOV' FieldOfView no
25058
+ 'VFPS' VideoFrameRate no
24732
25059
  'VFRH' VisualFlightRulesHUD no
25060
+ 'VRES' VideoFrameSize no
24733
25061
  'WBAL' ColorTemperatures no
24734
25062
  'WNDM' WindProcessing no
24735
25063
  'WRGB' WhiteBalanceRGB no
@@ -24769,6 +25097,19 @@ L<https://github.com/gopro/gpmf-parser> for details about this format.
24769
25097
  3 GPSSpeed no
24770
25098
  4 GPSSpeed3D no
24771
25099
 
25100
+ =head3 GoPro GPS9 Tags
25101
+
25102
+ Index Tag Name Writable
25103
+ ----- -------- --------
25104
+ 0 GPSLatitude no
25105
+ 1 GPSLongitude no
25106
+ 2 GPSAltitude no
25107
+ 3 GPSSpeed no
25108
+ 4 GPSSpeed3D no
25109
+ 6 GPSDateTime no
25110
+ 7 GPSDOP no
25111
+ 8 GPSMeasureMode no
25112
+
24772
25113
  =head3 GoPro KBAT Tags
24773
25114
 
24774
25115
  Battery status information found in GoPro Karma videos.
@@ -28129,6 +28470,7 @@ check if speed is more of a concern.
28129
28470
  'sPLT' SuggestedPalette no
28130
28471
  'sRGB' SRGBRendering yes!
28131
28472
  'sTER' StereoImage PNG StereoImage
28473
+ 'seAl' SEAL XMP SEAL
28132
28474
  'tEXt' TextualData PNG TextualData
28133
28475
  'tIME' ModifyDate yes
28134
28476
  'tRNS' Transparency no
@@ -29232,7 +29574,7 @@ C2PA JUMBF metadata extracted from "/C2PA_Manifest" file.
29232
29574
 
29233
29575
  Tag ID Tag Name Writable
29234
29576
  ------ -------- --------
29235
- '_stream' _stream Photoshop
29577
+ '_stream' PhotoshopStream Photoshop
29236
29578
 
29237
29579
  =head3 PDF Illustrator Tags
29238
29580
 
@@ -29255,7 +29597,7 @@ C2PA JUMBF metadata extracted from "/C2PA_Manifest" file.
29255
29597
 
29256
29598
  Tag ID Tag Name Writable
29257
29599
  ------ -------- --------
29258
- '_stream' _stream PostScript
29600
+ '_stream' AIStream PostScript
29259
29601
 
29260
29602
  =head3 PDF Resources Tags
29261
29603
 
@@ -29284,7 +29626,7 @@ C2PA JUMBF metadata extracted from "/C2PA_Manifest" file.
29284
29626
 
29285
29627
  Tag ID Tag Name Writable
29286
29628
  ------ -------- --------
29287
- '_stream' _stream ICC_Profile
29629
+ '_stream' ICC_Profile ICC_Profile
29288
29630
 
29289
29631
  =head3 PDF Properties Tags
29290
29632
 
@@ -29802,15 +30144,16 @@ appropriate table in the config file (see
29802
30144
  example.config in the full distribution for an
29803
30145
  example). Note that some tags with the same name but different ID's may
29804
30146
  exist in the same location, but the family 7 group names may be used to
29805
- differentiate these. ExifTool currently writes only top-level metadata in
29806
- QuickTime-based files; it extracts other track-specific and timed metadata,
29807
- but can not yet edit tags in these locations (with the exception of
29808
- track-level date/time tags).
30147
+ differentiate these.
29809
30148
 
29810
- Beware that the Keys tags are actually stored inside the ItemList in the
29811
- file, so deleting the ItemList group as a block (ie. C<-ItemList:all=>) also
29812
- deletes Keys tags. Instead, to preserve Keys tags the ItemList tags may be
29813
- deleted individually with C<-QuickTime:ItemList:all=>.
30149
+ ExifTool currently writes
30150
+ L<ItemList|Image::ExifTool::TagNames/QuickTime ItemList Tags> and
30151
+ L<UserData|Image::ExifTool::TagNames/QuickTime UserData Tags> only as
30152
+ top-level metadata, but select Keys tags are may be written to the audio or
30153
+ video track. See the
30154
+ L<AudioKeys|Image::ExifTool::TagNames/QuickTime AudioKeys Tags> and
30155
+ L<VideoKeys|Image::ExifTool::TagNames/QuickTime VideoKeys Tags> tags for
30156
+ more information.
29814
30157
 
29815
30158
  Alternate language tags may be accessed for
29816
30159
  L<ItemList|Image::ExifTool::TagNames/QuickTime ItemList Tags> and
@@ -29822,8 +30165,8 @@ L<UserData|Image::ExifTool::TagNames/QuickTime UserData Tags> tags support a
29822
30165
  language code, but without a country code. If no language code is specified
29823
30166
  when writing, the default language is written and alternate languages for
29824
30167
  the tag are deleted. Use the "und" language code to write the default
29825
- language without deleting alternate languages. Note that "eng" is treated
29826
- as a default language when reading, but not when writing.
30168
+ language without deleting alternate languages. Note that when reading,
30169
+ "eng" is also treated as the default language if there is no country code.
29827
30170
 
29828
30171
  According to the specification, integer-format QuickTime date/time tags
29829
30172
  should be stored as UTC. Unfortunately, digital cameras often store local
@@ -29852,6 +30195,7 @@ for the official QuickTime specification.
29852
30195
  'GPS ' GPSDataList2? no
29853
30196
  'IDIT' DateTimeOriginal string
29854
30197
  'PICT' PreviewPICT no
30198
+ 'SEAL' SEAL XMP SEAL
29855
30199
  '_htc' HTCInfo QuickTime HTCInfo
29856
30200
  'ardt' ARDroneFile no
29857
30201
  'cust' CustomInfo no
@@ -29880,13 +30224,14 @@ for the official QuickTime specification.
29880
30224
  'sefd' SamsungTrailer Samsung Trailer
29881
30225
  'skip' CanonSkip Canon Skip
29882
30226
  PreviewImage no
29883
- SkipInfo -
30227
+ SkipInfo QuickTime Stream
30228
+ LigoGPSInfo -
29884
30229
  Skip? no
29885
30230
  'thm ' ThumbnailImage no
29886
30231
  'thum' ThumbnailImage no
29887
30232
  'udat' GPSLog no
29888
30233
  'udta' KenwoodData QuickTime Stream
29889
- LIGO_JSON QuickTime Stream
30234
+ LigoJSON QuickTime Stream
29890
30235
  FLIRData FLIR UserData
29891
30236
  'uuid' XMP XMP
29892
30237
  UUID-PROF QuickTime Profile
@@ -29906,7 +30251,7 @@ for the official QuickTime specification.
29906
30251
  The tags below are extracted from timed metadata in QuickTime and other
29907
30252
  formats of video files when the ExtractEmbedded option is used. Although
29908
30253
  most of these tags are combined into the single table below, ExifTool
29909
- currently reads 78 different formats of timed GPS metadata from video files.
30254
+ currently reads 100 different types of timed GPS metadata from video files.
29910
30255
 
29911
30256
  Tag Name Writable
29912
30257
  -------- --------
@@ -29917,6 +30262,8 @@ currently reads 78 different formats of timed GPS metadata from video files.
29917
30262
  CameraDateTime no
29918
30263
  CameraModel no
29919
30264
  Car no
30265
+ DJIDebug? DJI Protobuf
30266
+ DJIMetadata DJI Protobuf
29920
30267
  DateTimeOriginal no
29921
30268
  DateTimeStamp no
29922
30269
  Distance no
@@ -29942,6 +30289,7 @@ currently reads 78 different formats of timed GPS metadata from video files.
29942
30289
  ISO no
29943
30290
  JpgFromRaw no
29944
30291
  KiloCalories no
30292
+ MagneticVariation no
29945
30293
  PreviewImage no
29946
30294
  PreviewInfo QuickTime PreviewInfo
29947
30295
  RVMI_gReV QuickTime RVMI_gReV
@@ -30106,15 +30454,11 @@ changed via the config file.
30106
30454
  'artist' Artist yes
30107
30455
  'artwork' Artwork yes
30108
30456
  'author' Author yes
30109
- 'camera.framereadouttimeinmicroseconds'
30110
- FrameReadoutTime yes
30111
- 'camera.identifier' CameraIdentifier yes
30112
30457
  'collection.user' UserCollection yes
30113
30458
  'com.android.capture.fps' AndroidCaptureFPS float
30114
30459
  'com.android.manufacturer' AndroidMake yes
30115
30460
  'com.android.model' AndroidModel yes
30116
30461
  'com.android.version' AndroidVersion yes
30117
- 'com.apple.photos.captureMode' CaptureMode yes
30118
30462
  'com.xiaomi.hdr10' XiaomiHDR10 int32s
30119
30463
  'com.xiaomi.preview_video_cover'
30120
30464
  XiaomiPreviewVideoCover int32s
@@ -30137,6 +30481,8 @@ changed via the config file.
30137
30481
  'director' Director yes
30138
30482
  'displayname' DisplayName yes
30139
30483
  'encoder' Encoder yes
30484
+ 'full-frame-rate-playback-intent'
30485
+ FullFrameRatePlaybackIntent yes
30140
30486
  'genre' Genre yes
30141
30487
  'information' Information yes
30142
30488
  'keywords' Keywords yes
@@ -30181,6 +30527,35 @@ changed via the config file.
30181
30527
  'xiaomi.exifInfo.videoinfo' XiaomiExifInfo yes
30182
30528
  'year' Year yes
30183
30529
 
30530
+ =head3 QuickTime AudioKeys Tags
30531
+
30532
+ Keys tags written in the audio track by some Apple devices. These tags
30533
+ belong to the ExifTool AudioKeys family 1 gorup.
30534
+
30535
+ Tag ID Tag Name Writable
30536
+ ------ -------- --------
30537
+ 'player.movie.audio.balance' Balance yes
30538
+ 'player.movie.audio.bass' Bass yes
30539
+ 'player.movie.audio.gain' AudioGain yes
30540
+ 'player.movie.audio.mute' Mute int8u
30541
+ 'player.movie.audio.pitchshift' PitchShift yes
30542
+ 'player.movie.audio.treble' Treble yes
30543
+
30544
+ =head3 QuickTime VideoKeys Tags
30545
+
30546
+ Keys tags written in the video track. These tags belong to the ExifTool
30547
+ VideoKeys family 1 gorup.
30548
+
30549
+ Tag ID Tag Name Writable
30550
+ ------ -------- --------
30551
+ 'camera.focal_length.35mm_equivalent'
30552
+ FocalLengthIn35mmFormat yes
30553
+ 'camera.framereadouttimeinmicroseconds'
30554
+ FrameReadoutTime yes
30555
+ 'camera.identifier' CameraIdentifier yes
30556
+ 'camera.lens_model' LensModel yes
30557
+ 'com.apple.photos.captureMode' CaptureMode yes
30558
+
30184
30559
  =head3 QuickTime FaceInfo Tags
30185
30560
 
30186
30561
  Tag ID Tag Name Writable
@@ -30269,6 +30644,7 @@ Tags found in Pittasoft Blackvue dashcam "free" data.
30269
30644
  'bxml' BinaryXML? no
30270
30645
  'dinf' DataInfo QuickTime DataInfo
30271
30646
  'free' Free? no
30647
+ 'grpl' Unknown_grpl QuickTime grpl
30272
30648
  'hdlr' Handler QuickTime Handler
30273
30649
  'idat' MetaImageSize no
30274
30650
  'iinf' ItemInformation QuickTime ItemInfo
@@ -30279,7 +30655,9 @@ Tags found in Pittasoft Blackvue dashcam "free" data.
30279
30655
  'ipro' ItemProtection? no
30280
30656
  'iprp' ItemProperties QuickTime ItemProp
30281
30657
  'iref' ItemReference QuickTime ItemRef
30282
- 'keys' Keys QuickTime Keys
30658
+ 'keys' AudioKeys QuickTime AudioKeys
30659
+ VideoKeys QuickTime VideoKeys
30660
+ Keys QuickTime Keys
30283
30661
  'pitm' PrimaryItemReference no
30284
30662
  'uuid' MetaVersion no
30285
30663
  UUID-Unknown? no
@@ -30303,6 +30681,12 @@ MP4 data reference box.
30303
30681
  'url ' URL no
30304
30682
  'urn ' URN no
30305
30683
 
30684
+ =head3 QuickTime grpl Tags
30685
+
30686
+ Tag ID Tag Name Writable
30687
+ ------ -------- --------
30688
+ [no tags known]
30689
+
30306
30690
  =head3 QuickTime Handler Tags
30307
30691
 
30308
30692
  Index1 Tag Name Writable
@@ -31651,6 +32035,7 @@ metadata to WEBP images, but can't yet write to other RIFF-based formats.
31651
32035
  'LIST_hydt' PentaxData Pentax AVI
31652
32036
  'LIST_ncdt' NikonData Nikon AVI
31653
32037
  'LIST_pntx' PentaxData2 Pentax AVI
32038
+ 'SEAL' SEAL XMP SEAL
31654
32039
  'SGLT' BikeBroAccel QuickTime Stream
31655
32040
  'SLLT' BikeBroGPS QuickTime Stream
31656
32041
  'VP8 ' VP8Bitstream RIFF VP8
@@ -31940,6 +32325,7 @@ This chunk is found in lossless WebP files.
31940
32325
  ------ -------- --------
31941
32326
  1 ImageWidth no
31942
32327
  2 ImageHeight no
32328
+ 4 AlphaIsUsed no
31943
32329
 
31944
32330
  =head3 RIFF VP8X Tags
31945
32331
 
@@ -33258,6 +33644,7 @@ Matroska specification.
33258
33644
  0xb538667 SignatureSlot Matroska
33259
33645
  0xc53bb6b Cues Matroska
33260
33646
  0xf43b675 Cluster Matroska
33647
+ 0x5345414c SEAL XMP SEAL
33261
33648
 
33262
33649
  =head3 Matroska Projection Tags
33263
33650
 
@@ -33328,10 +33715,10 @@ L<https://www.matroska.org/technical/tagging.html>).
33328
33715
  'GENRE' Genre no
33329
33716
  'IMDB' IMDB no
33330
33717
  'INITIAL_KEY' InitialKey no
33331
- 'INSTRUMENTS' Instruments no
33718
+ 'INSTRUMENTS' Instruments no+
33332
33719
  'ISBN' ISBN no
33333
33720
  'ISRC' ISRC no
33334
- 'KEYWORDS' Keywords no
33721
+ 'KEYWORDS' Keywords no+
33335
33722
  'LABEL' Label no
33336
33723
  'LABEL_CODE' LabelCode no
33337
33724
  'LAW_RATING' LawRating no
@@ -39500,6 +39887,35 @@ existing StringFileInfo tags even if not listed in this table.
39500
39887
  ProductVersion no
39501
39888
  SpecialBuild no
39502
39889
 
39890
+ =head3 EXE DebugRSDS Tags
39891
+
39892
+ CodeView RSDS debug information found in some Windows EXE files.
39893
+
39894
+ Index1 Tag Name Writable
39895
+ ------ -------- --------
39896
+ 0 PDBModifyDate no
39897
+ 20 PDBAge no
39898
+ 24 PDBFileName no
39899
+
39900
+ =head3 EXE DebugNB10 Tags
39901
+
39902
+ CodeView NB10 debug information found in some Windows EXE files.
39903
+
39904
+ Index1 Tag Name Writable
39905
+ ------ -------- --------
39906
+ 0 PDBModifyDate no
39907
+ 8 PDBCreateDate no
39908
+ 12 PDBAge no
39909
+ 16 PDBFileName no
39910
+
39911
+ =head3 EXE Misc Tags
39912
+
39913
+ Miscellaneous CodeView debug information in Windows EXE files.
39914
+
39915
+ Index1 Tag Name Writable
39916
+ ------ -------- --------
39917
+ 12 EXEFileName no
39918
+
39503
39919
  =head3 EXE MachO Tags
39504
39920
 
39505
39921
  Information extracted from Mach-O (Mac OS X) executable files and DYLIB
@@ -41353,7 +41769,7 @@ L<Image::ExifTool::BuildTagLookup|Image::ExifTool::BuildTagLookup>.
41353
41769
 
41354
41770
  =head1 AUTHOR
41355
41771
 
41356
- Copyright 2003-2024, Phil Harvey (philharvey66 at gmail.com)
41772
+ Copyright 2003-2025, Phil Harvey (philharvey66 at gmail.com)
41357
41773
 
41358
41774
  This library is free software; you can redistribute it and/or modify it
41359
41775
  under the same terms as Perl itself.