exiftool-vendored.pl 12.38.0 → 12.41.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 (206) hide show
  1. package/LICENSE +10 -3
  2. package/bin/Changes +62 -0
  3. package/bin/MANIFEST +2 -0
  4. package/bin/META.json +1 -1
  5. package/bin/META.yml +1 -1
  6. package/bin/README +45 -45
  7. package/bin/arg_files/exif2xmp.args +5 -0
  8. package/bin/arg_files/xmp2exif.args +6 -0
  9. package/bin/config_files/acdsee.config +6 -6
  10. package/bin/config_files/photoshop_paths.config +30 -7
  11. package/bin/config_files/picasa_faces.config +1 -1
  12. package/bin/config_files/pix4d.config +2 -2
  13. package/bin/config_files/tiff_version.config +2 -2
  14. package/bin/exiftool +96 -65
  15. package/bin/lib/File/RandomAccess.pm +1 -1
  16. package/bin/lib/File/RandomAccess.pod +2 -2
  17. package/bin/lib/Image/ExifTool/AES.pm +1 -1
  18. package/bin/lib/Image/ExifTool/AFCP.pm +1 -1
  19. package/bin/lib/Image/ExifTool/AIFF.pm +1 -1
  20. package/bin/lib/Image/ExifTool/APE.pm +1 -1
  21. package/bin/lib/Image/ExifTool/APP12.pm +1 -1
  22. package/bin/lib/Image/ExifTool/ASF.pm +1 -1
  23. package/bin/lib/Image/ExifTool/Apple.pm +1 -1
  24. package/bin/lib/Image/ExifTool/Audible.pm +1 -1
  25. package/bin/lib/Image/ExifTool/BMP.pm +1 -1
  26. package/bin/lib/Image/ExifTool/BPG.pm +1 -1
  27. package/bin/lib/Image/ExifTool/BZZ.pm +1 -1
  28. package/bin/lib/Image/ExifTool/BigTIFF.pm +1 -1
  29. package/bin/lib/Image/ExifTool/BuildTagLookup.pm +6 -4
  30. package/bin/lib/Image/ExifTool/CBOR.pm +1 -1
  31. package/bin/lib/Image/ExifTool/Canon.pm +79 -5
  32. package/bin/lib/Image/ExifTool/CanonCustom.pm +1 -1
  33. package/bin/lib/Image/ExifTool/CanonRaw.pm +1 -1
  34. package/bin/lib/Image/ExifTool/CanonVRD.pm +1 -1
  35. package/bin/lib/Image/ExifTool/CaptureOne.pm +1 -1
  36. package/bin/lib/Image/ExifTool/Casio.pm +1 -1
  37. package/bin/lib/Image/ExifTool/Charset.pm +1 -1
  38. package/bin/lib/Image/ExifTool/DICOM.pm +1 -1
  39. package/bin/lib/Image/ExifTool/DJI.pm +1 -1
  40. package/bin/lib/Image/ExifTool/DNG.pm +1 -1
  41. package/bin/lib/Image/ExifTool/DPX.pm +1 -1
  42. package/bin/lib/Image/ExifTool/DV.pm +1 -1
  43. package/bin/lib/Image/ExifTool/DarwinCore.pm +1 -1
  44. package/bin/lib/Image/ExifTool/DjVu.pm +1 -1
  45. package/bin/lib/Image/ExifTool/EXE.pm +1 -1
  46. package/bin/lib/Image/ExifTool/Exif.pm +53 -21
  47. package/bin/lib/Image/ExifTool/FITS.pm +1 -1
  48. package/bin/lib/Image/ExifTool/FLAC.pm +1 -1
  49. package/bin/lib/Image/ExifTool/FLIF.pm +1 -1
  50. package/bin/lib/Image/ExifTool/FLIR.pm +16 -4
  51. package/bin/lib/Image/ExifTool/Fixup.pm +1 -1
  52. package/bin/lib/Image/ExifTool/Flash.pm +1 -1
  53. package/bin/lib/Image/ExifTool/FlashPix.pm +1 -1
  54. package/bin/lib/Image/ExifTool/Font.pm +1 -1
  55. package/bin/lib/Image/ExifTool/FotoStation.pm +1 -1
  56. package/bin/lib/Image/ExifTool/FujiFilm.pm +1 -1
  57. package/bin/lib/Image/ExifTool/GE.pm +1 -1
  58. package/bin/lib/Image/ExifTool/GIF.pm +1 -1
  59. package/bin/lib/Image/ExifTool/GIMP.pm +1 -1
  60. package/bin/lib/Image/ExifTool/GPS.pm +1 -1
  61. package/bin/lib/Image/ExifTool/GeoTiff.pm +1 -1
  62. package/bin/lib/Image/ExifTool/Geotag.pm +4 -3
  63. package/bin/lib/Image/ExifTool/GoPro.pm +1 -1
  64. package/bin/lib/Image/ExifTool/H264.pm +1 -1
  65. package/bin/lib/Image/ExifTool/HP.pm +1 -1
  66. package/bin/lib/Image/ExifTool/HTML.pm +1 -1
  67. package/bin/lib/Image/ExifTool/HtmlDump.pm +1 -1
  68. package/bin/lib/Image/ExifTool/ICC_Profile.pm +1 -1
  69. package/bin/lib/Image/ExifTool/ID3.pm +1 -1
  70. package/bin/lib/Image/ExifTool/IPTC.pm +1 -1
  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 +1 -1
  74. package/bin/lib/Image/ExifTool/InDesign.pm +1 -1
  75. package/bin/lib/Image/ExifTool/JPEG.pm +6 -2
  76. package/bin/lib/Image/ExifTool/JPEGDigest.pm +1 -1
  77. package/bin/lib/Image/ExifTool/JSON.pm +1 -1
  78. package/bin/lib/Image/ExifTool/JVC.pm +1 -1
  79. package/bin/lib/Image/ExifTool/Jpeg2000.pm +1 -1
  80. package/bin/lib/Image/ExifTool/Kodak.pm +1 -1
  81. package/bin/lib/Image/ExifTool/KyoceraRaw.pm +1 -1
  82. package/bin/lib/Image/ExifTool/LIF.pm +1 -1
  83. package/bin/lib/Image/ExifTool/LNK.pm +1 -1
  84. package/bin/lib/Image/ExifTool/Lang/cs.pm +1 -1
  85. package/bin/lib/Image/ExifTool/Lang/de.pm +1 -1
  86. package/bin/lib/Image/ExifTool/Lang/en_ca.pm +1 -1
  87. package/bin/lib/Image/ExifTool/Lang/en_gb.pm +1 -1
  88. package/bin/lib/Image/ExifTool/Lang/es.pm +1 -1
  89. package/bin/lib/Image/ExifTool/Lang/fi.pm +1 -1
  90. package/bin/lib/Image/ExifTool/Lang/fr.pm +1 -1
  91. package/bin/lib/Image/ExifTool/Lang/it.pm +1 -1
  92. package/bin/lib/Image/ExifTool/Lang/ja.pm +1 -1
  93. package/bin/lib/Image/ExifTool/Lang/ko.pm +1 -1
  94. package/bin/lib/Image/ExifTool/Lang/nl.pm +1 -1
  95. package/bin/lib/Image/ExifTool/Lang/pl.pm +1 -1
  96. package/bin/lib/Image/ExifTool/Lang/ru.pm +1 -1
  97. package/bin/lib/Image/ExifTool/Lang/sv.pm +1 -1
  98. package/bin/lib/Image/ExifTool/Lang/tr.pm +1 -1
  99. package/bin/lib/Image/ExifTool/Lang/zh_cn.pm +1 -1
  100. package/bin/lib/Image/ExifTool/Lang/zh_tw.pm +1 -1
  101. package/bin/lib/Image/ExifTool/Leaf.pm +1 -1
  102. package/bin/lib/Image/ExifTool/Lytro.pm +1 -1
  103. package/bin/lib/Image/ExifTool/M2TS.pm +1 -1
  104. package/bin/lib/Image/ExifTool/MIE.pm +1 -1
  105. package/bin/lib/Image/ExifTool/MIEUnits.pod +1 -1
  106. package/bin/lib/Image/ExifTool/MIFF.pm +1 -1
  107. package/bin/lib/Image/ExifTool/MNG.pm +1 -1
  108. package/bin/lib/Image/ExifTool/MOI.pm +1 -1
  109. package/bin/lib/Image/ExifTool/MPC.pm +1 -1
  110. package/bin/lib/Image/ExifTool/MPEG.pm +1 -1
  111. package/bin/lib/Image/ExifTool/MPF.pm +1 -1
  112. package/bin/lib/Image/ExifTool/MRC.pm +1 -1
  113. package/bin/lib/Image/ExifTool/MWG.pm +1 -1
  114. package/bin/lib/Image/ExifTool/MXF.pm +1 -1
  115. package/bin/lib/Image/ExifTool/MacOS.pm +10 -10
  116. package/bin/lib/Image/ExifTool/MakerNotes.pm +13 -2
  117. package/bin/lib/Image/ExifTool/Matroska.pm +9 -5
  118. package/bin/lib/Image/ExifTool/Microsoft.pm +1 -1
  119. package/bin/lib/Image/ExifTool/Minolta.pm +1 -1
  120. package/bin/lib/Image/ExifTool/MinoltaRaw.pm +1 -1
  121. package/bin/lib/Image/ExifTool/Motorola.pm +1 -1
  122. package/bin/lib/Image/ExifTool/Nikon.pm +924 -184
  123. package/bin/lib/Image/ExifTool/NikonCapture.pm +1 -1
  124. package/bin/lib/Image/ExifTool/NikonCustom.pm +519 -6
  125. package/bin/lib/Image/ExifTool/NikonSettings.pm +17 -18
  126. package/bin/lib/Image/ExifTool/Nintendo.pm +1 -1
  127. package/bin/lib/Image/ExifTool/OOXML.pm +1 -1
  128. package/bin/lib/Image/ExifTool/Ogg.pm +1 -1
  129. package/bin/lib/Image/ExifTool/Olympus.pm +8 -7
  130. package/bin/lib/Image/ExifTool/OpenEXR.pm +1 -1
  131. package/bin/lib/Image/ExifTool/Opus.pm +1 -1
  132. package/bin/lib/Image/ExifTool/Other.pm +1 -1
  133. package/bin/lib/Image/ExifTool/PCX.pm +1 -1
  134. package/bin/lib/Image/ExifTool/PDF.pm +1 -1
  135. package/bin/lib/Image/ExifTool/PGF.pm +1 -1
  136. package/bin/lib/Image/ExifTool/PICT.pm +1 -1
  137. package/bin/lib/Image/ExifTool/PLIST.pm +1 -1
  138. package/bin/lib/Image/ExifTool/PLUS.pm +1 -1
  139. package/bin/lib/Image/ExifTool/PNG.pm +28 -8
  140. package/bin/lib/Image/ExifTool/PPM.pm +1 -1
  141. package/bin/lib/Image/ExifTool/PSP.pm +1 -1
  142. package/bin/lib/Image/ExifTool/Palm.pm +1 -1
  143. package/bin/lib/Image/ExifTool/Panasonic.pm +1 -1
  144. package/bin/lib/Image/ExifTool/PanasonicRaw.pm +1 -1
  145. package/bin/lib/Image/ExifTool/Parrot.pm +1 -1
  146. package/bin/lib/Image/ExifTool/Pentax.pm +3 -2
  147. package/bin/lib/Image/ExifTool/PhaseOne.pm +1 -1
  148. package/bin/lib/Image/ExifTool/PhotoCD.pm +1 -1
  149. package/bin/lib/Image/ExifTool/PhotoMechanic.pm +1 -1
  150. package/bin/lib/Image/ExifTool/Photoshop.pm +1 -1
  151. package/bin/lib/Image/ExifTool/PostScript.pm +1 -1
  152. package/bin/lib/Image/ExifTool/PrintIM.pm +1 -1
  153. package/bin/lib/Image/ExifTool/Qualcomm.pm +1 -1
  154. package/bin/lib/Image/ExifTool/QuickTime.pm +10 -6
  155. package/bin/lib/Image/ExifTool/QuickTimeStream.pl +16 -5
  156. package/bin/lib/Image/ExifTool/RIFF.pm +1 -1
  157. package/bin/lib/Image/ExifTool/RSRC.pm +1 -1
  158. package/bin/lib/Image/ExifTool/RTF.pm +1 -1
  159. package/bin/lib/Image/ExifTool/Radiance.pm +1 -1
  160. package/bin/lib/Image/ExifTool/Rawzor.pm +1 -1
  161. package/bin/lib/Image/ExifTool/Real.pm +1 -1
  162. package/bin/lib/Image/ExifTool/Reconyx.pm +1 -1
  163. package/bin/lib/Image/ExifTool/Red.pm +1 -1
  164. package/bin/lib/Image/ExifTool/Ricoh.pm +1 -1
  165. package/bin/lib/Image/ExifTool/Samsung.pm +6 -2
  166. package/bin/lib/Image/ExifTool/Sanyo.pm +1 -1
  167. package/bin/lib/Image/ExifTool/Scalado.pm +1 -1
  168. package/bin/lib/Image/ExifTool/Shift.pl +3 -1
  169. package/bin/lib/Image/ExifTool/Shortcuts.pm +3 -2
  170. package/bin/lib/Image/ExifTool/Sigma.pm +1 -1
  171. package/bin/lib/Image/ExifTool/SigmaRaw.pm +1 -1
  172. package/bin/lib/Image/ExifTool/Sony.pm +11 -5
  173. package/bin/lib/Image/ExifTool/SonyIDC.pm +1 -1
  174. package/bin/lib/Image/ExifTool/Stim.pm +1 -1
  175. package/bin/lib/Image/ExifTool/TagInfoXML.pm +2 -2
  176. package/bin/lib/Image/ExifTool/TagLookup.pm +6382 -6290
  177. package/bin/lib/Image/ExifTool/TagNames.pod +340 -21
  178. package/bin/lib/Image/ExifTool/Text.pm +1 -1
  179. package/bin/lib/Image/ExifTool/Theora.pm +1 -1
  180. package/bin/lib/Image/ExifTool/Torrent.pm +1 -1
  181. package/bin/lib/Image/ExifTool/Unknown.pm +1 -1
  182. package/bin/lib/Image/ExifTool/VCard.pm +1 -1
  183. package/bin/lib/Image/ExifTool/Validate.pm +1 -1
  184. package/bin/lib/Image/ExifTool/Vorbis.pm +1 -1
  185. package/bin/lib/Image/ExifTool/WTV.pm +1 -1
  186. package/bin/lib/Image/ExifTool/WriteCanonRaw.pl +1 -1
  187. package/bin/lib/Image/ExifTool/WriteExif.pl +1 -1
  188. package/bin/lib/Image/ExifTool/WriteIPTC.pl +1 -1
  189. package/bin/lib/Image/ExifTool/WritePDF.pl +1 -1
  190. package/bin/lib/Image/ExifTool/WritePNG.pl +30 -10
  191. package/bin/lib/Image/ExifTool/WritePhotoshop.pl +1 -1
  192. package/bin/lib/Image/ExifTool/WritePostScript.pl +1 -1
  193. package/bin/lib/Image/ExifTool/WriteQuickTime.pl +9 -4
  194. package/bin/lib/Image/ExifTool/WriteXMP.pl +3 -1
  195. package/bin/lib/Image/ExifTool/Writer.pl +6 -5
  196. package/bin/lib/Image/ExifTool/XMP.pm +49 -23
  197. package/bin/lib/Image/ExifTool/XMP2.pl +3 -2
  198. package/bin/lib/Image/ExifTool/XMPStruct.pl +22 -8
  199. package/bin/lib/Image/ExifTool/ZIP.pm +10 -2
  200. package/bin/lib/Image/ExifTool/ZISRAW.pm +1 -1
  201. package/bin/lib/Image/ExifTool/iWork.pm +1 -1
  202. package/bin/lib/Image/ExifTool.pm +21 -5
  203. package/bin/lib/Image/ExifTool.pod +71 -69
  204. package/bin/perl-Image-ExifTool.spec +43 -43
  205. package/bin/pp_build_exe.args +5 -5
  206. package/package.json +14 -3
@@ -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 25521 tags, with 16386 unique tag names.
15
+ They contain a total of 25775 tags, with 16465 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
@@ -156,6 +156,7 @@ L<https://www.w3.org/Graphics/JPEG/jfif3.pdf> for the JPEG specification.
156
156
  Samsung Samsung Trailer
157
157
  EmbeddedVideo no
158
158
  Insta360 no
159
+ NikonApp no
159
160
  PreviewImage yes
160
161
 
161
162
  =head3 JPEG AVI1 Tags
@@ -668,6 +669,7 @@ for the official EXIF 2.32 specification.
668
669
  MakerNoteNintendo ExifIFD Nintendo
669
670
  MakerNoteOlympus ExifIFD Olympus
670
671
  MakerNoteOlympus2 ExifIFD Olympus
672
+ MakerNoteOlympus3 ExifIFD Olympus
671
673
  MakerNoteLeica ExifIFD Panasonic
672
674
  MakerNoteLeica2 ExifIFD Panasonic Leica2
673
675
  MakerNoteLeica3 ExifIFD Panasonic Leica3
@@ -1251,6 +1253,7 @@ L<http://www.adobe.com/devnet/xmp/> for the official XMP specification.
1251
1253
  acdsee XMP acdsee
1252
1254
  album XMP Album
1253
1255
  apple-fi XMP apple_fi
1256
+ ast Nikon ast
1254
1257
  aux XMP aux
1255
1258
  cc XMP cc
1256
1259
  cell XMP cell
@@ -1290,6 +1293,7 @@ L<http://www.adobe.com/devnet/xmp/> for the official XMP specification.
1290
1293
  mwg-coll MWG Collections
1291
1294
  mwg-kw MWG Keywords
1292
1295
  mwg-rs MWG Regions
1296
+ nine Nikon nine
1293
1297
  pdf XMP pdf
1294
1298
  pdfx XMP pdfx
1295
1299
  photomech PhotoMechanic XMP
@@ -1302,6 +1306,7 @@ L<http://www.adobe.com/devnet/xmp/> for the official XMP specification.
1302
1306
  prm XMP prm
1303
1307
  pur XMP pur
1304
1308
  rdf XMP rdf
1309
+ sdc Nikon sdc
1305
1310
  swf XMP swf
1306
1311
  tiff XMP tiff
1307
1312
  x XMP x
@@ -7116,7 +7121,7 @@ Unknown only to reduce the volume of the normal output.
7116
7121
  0x00de LimitSelectableImageArea16To9? no
7117
7122
  0x00df ApplySettingsToLiveView no
7118
7123
  0x00e0 FocusPeakingLevel no
7119
- 0x00e9 LensControlRing no
7124
+ 0x00ea LensControlRing no
7120
7125
  0x00ed MovieMultiSelector no
7121
7126
  0x00ee MovieAFSpeed no
7122
7127
  0x00ef MovieAFSpeedApply no
@@ -7342,6 +7347,7 @@ Unknown only to reduce the volume of the normal output.
7342
7347
  0x4021 MultiExp Canon MultiExp
7343
7348
  0x4024 FilterInfo Canon FilterInfo
7344
7349
  0x4025 HDRInfo Canon HDRInfo
7350
+ 0x4026 LogInfo Canon LogInfo
7345
7351
  0x4028 AFConfig Canon AFConfig
7346
7352
  0x403f RawBurstModeRoll Canon RawBurstInfo
7347
7353
 
@@ -9511,6 +9517,18 @@ Information about creative filter settings.
9511
9517
  1 HDR int32s
9512
9518
  2 HDREffect int32s
9513
9519
 
9520
+ =head3 Canon LogInfo Tags
9521
+
9522
+ Index4 Tag Name Writable
9523
+ ------ -------- --------
9524
+ 4 CompressionFormat int32s
9525
+ 6 Sharpness int32s
9526
+ 7 Saturation int32s
9527
+ 8 ColorTone int32s
9528
+ 9 ColorSpace2 int32s
9529
+ 10 ColorMatrix int32s
9530
+ 11 CanonLogVersion int32s
9531
+
9514
9532
  =head3 Canon AFConfig Tags
9515
9533
 
9516
9534
  Index4 Tag Name Writable
@@ -10884,8 +10902,10 @@ FLIR Picture in Picture tags.
10884
10902
  64 GPSDOP no
10885
10903
  68 GPSSpeedRef no
10886
10904
  70 GPSTrackRef no
10905
+ 72 GPSImgDirectionRef no
10887
10906
  76 GPSSpeed no
10888
10907
  80 GPSTrack no
10908
+ 84 GPSImgDirection no
10889
10909
  88 GPSMapDatum no
10890
10910
 
10891
10911
  =head3 FLIR MeterLink Tags
@@ -13497,7 +13517,7 @@ DiMAGE X and Xt.
13497
13517
  ShotInfoD500 Nikon ShotInfoD500
13498
13518
  ShotInfoD6 Nikon ShotInfoD6
13499
13519
  ShotInfoD610 Nikon ShotInfoD610
13500
- ShotInfoZ7_2 Nikon ShotInfoZ7_2
13520
+ ShotInfoZ7II Nikon ShotInfoZ7II
13501
13521
  ShotInfoZ9 Nikon ShotInfoZ9
13502
13522
  ShotInfo02xx Nikon ShotInfo
13503
13523
  ShotInfoUnknown Nikon ShotInfo
@@ -13554,7 +13574,8 @@ DiMAGE X and Xt.
13554
13574
  0x00b1 HighISONoiseReduction int16u
13555
13575
  0x00b3 ToningEffect string
13556
13576
  0x00b6 PowerUpTime undef
13557
- 0x00b7 AFInfo2 Nikon AFInfo2
13577
+ 0x00b7 AFInfo2 Nikon AFInfo2V0400
13578
+ Nikon AFInfo2
13558
13579
  0x00b8 FileInfo Nikon FileInfo
13559
13580
  Nikon FileInfo
13560
13581
  0x00b9 AFTune Nikon AFTune
@@ -13573,6 +13594,63 @@ DiMAGE X and Xt.
13573
13594
  0x0e1e NikonCaptureOutput Nikon CaptureOutput
13574
13595
  0x0e22 NEFBitDepth int16u[4]!
13575
13596
 
13597
+ =head3 Nikon ast Tags
13598
+
13599
+ Tags used by Nikon NX Studio in Nikon NKSC sidecar files and trailers.
13600
+
13601
+ These tags belong to the ExifTool XMP-ast family 1 group.
13602
+
13603
+ Tag Name Writable
13604
+ -------- --------
13605
+ About no
13606
+ GPSAltitude no
13607
+ GPSAltitudeRef no
13608
+ GPSImgDirection no
13609
+ GPSImgDirectionRef no
13610
+ GPSLatitude no
13611
+ GPSLatitudeRef no
13612
+ GPSLongitude no
13613
+ GPSLongitudeRef no
13614
+ GPSMapDatum no
13615
+ GPSVersionID no
13616
+ IPTC IPTC
13617
+ Version no
13618
+ XMLPackets XMP
13619
+
13620
+ =head3 Nikon nine Tags
13621
+
13622
+ These tags belong to the ExifTool XMP-nine family 1 group.
13623
+
13624
+ Tag Name Writable
13625
+ -------- --------
13626
+ About no
13627
+ Label no
13628
+ NineEdits Nikon NineEdits
13629
+ Rating no
13630
+ Trim no
13631
+ Version no
13632
+
13633
+ =head3 Nikon NineEdits Tags
13634
+
13635
+ XML-based tags used to store editing information.
13636
+
13637
+ Tag Name Writable
13638
+ -------- --------
13639
+ FilterParametersBinary no
13640
+ FilterParametersCustomCustomData no
13641
+ FilterParametersExportExportData no
13642
+
13643
+ =head3 Nikon sdc Tags
13644
+
13645
+ These tags belong to the ExifTool XMP-sdc family 1 group.
13646
+
13647
+ Tag Name Writable
13648
+ -------- --------
13649
+ About no
13650
+ AppName no
13651
+ AppVersion no
13652
+ Version no
13653
+
13576
13654
  =head3 Nikon PreviewIFD Tags
13577
13655
 
13578
13656
  Tag ID Tag Name Writable
@@ -14150,9 +14228,9 @@ These tags are extracted from encrypted data in images from the D610.
14150
14228
  4 FirmwareVersion no
14151
14229
  1999 CustomSettingsD610 NikonCustom SettingsD610
14152
14230
 
14153
- =head3 Nikon ShotInfoZ7_2 Tags
14231
+ =head3 Nikon ShotInfoZ7II Tags
14154
14232
 
14155
- These tags are extracted from encrypted data in images from the Z7_2.
14233
+ These tags are extracted from encrypted data in images from the Z7II.
14156
14234
 
14157
14235
  Index Tag Name Writable
14158
14236
  ----- -------- --------
@@ -14163,12 +14241,12 @@ These tags are extracted from encrypted data in images from the Z7_2.
14163
14241
  52786 RollAngle fixed32u
14164
14242
  52790 PitchAngle fixed32u
14165
14243
  52794 YawAngle fixed32u
14166
- 52918 ZMenuSettingsOffset int8u
14167
- 52920 ZMenuSettings Nikon ZMenuSettings
14244
+ 52918 MenuSettingsZ7IIOffset int8u
14245
+ 52920 MenuSettingsZ7II Nikon MenuSettingsZ7II
14168
14246
 
14169
- =head3 Nikon ZMenuSettings Tags
14247
+ =head3 Nikon MenuSettingsZ7II Tags
14170
14248
 
14171
- These tags are used by the Z5 Z6 Z7 Z6II Z7II Z50 Zfc
14249
+ These tags are used by the Z5, Z6, Z7, Z6II, Z7II, Z50 and Zfc.
14172
14250
 
14173
14251
  Index1 Tag Name Writable
14174
14252
  ------ -------- --------
@@ -14185,7 +14263,7 @@ These tags are used by the Z5 Z6 Z7 Z6II Z7II Z50 Zfc
14185
14263
  232 FocusShiftExposureLock int8u
14186
14264
  322 DiffractionCompensation int8u
14187
14265
  323 AutoDistortionControl int8u
14188
- 326 NikonMeteringMode? int8u
14266
+ 326 NikonMeteringMode int8u
14189
14267
  328 FlashControlMode int8u
14190
14268
  334 FlashGNDistance? no
14191
14269
  338 FlashOutput? int8u
@@ -14198,7 +14276,7 @@ These tags are used by the Z5 Z6 Z7 Z6II Z7II Z50 Zfc
14198
14276
  504 MovieFrameRate? int8u
14199
14277
  506 MovieSlowMotion? int8u
14200
14278
  510 MovieType? int8u
14201
- 516 MovieISOAutoManualMode? no
14279
+ 516 MovieISOAutoManualMode? int16u
14202
14280
  568 MovieActiveD-Lighting? int8u
14203
14281
  572 MovieHighISONoiseReduction? int8u
14204
14282
  574 MovieVignetteControl? int8u
@@ -14218,9 +14296,88 @@ These tags are extracted from encrypted data in images from the Z9.
14218
14296
  ----- -------- --------
14219
14297
  0 ShotInfoVersion no
14220
14298
  4 FirmwareVersion no
14299
+ 27800 IntervalShooting int16u~
14300
+ 30788 FocusShiftShooting int8u~
14221
14301
  60139 RollAngle fixed32u
14222
14302
  60143 PitchAngle fixed32u
14223
14303
  60147 YawAngle fixed32u
14304
+ 60491 MenuSettingsZ9 Nikon MenuSettingsZ9
14305
+
14306
+ =head3 Nikon MenuSettingsZ9 Tags
14307
+
14308
+ These tags are used by the Z9.
14309
+
14310
+ Index1 Tag Name Writable
14311
+ ------ -------- --------
14312
+ 140 MultipleExposureMode int8u
14313
+ 142 MultiExposureShots int8u
14314
+ 188 Intervals int32u
14315
+ 192 ShotsPerInterval int32u
14316
+ 232 FocusShiftNumberShots int8u
14317
+ 236 FocusShiftStepWidth int8u
14318
+ 240 FocusShiftInterval int8u~
14319
+ 244 FocusShiftExposureLock? int8u
14320
+ 274 PhotoShootingMenuBank int8u
14321
+ 276 ExtendedMenuBanks int8u
14322
+ 308 PhotoShootingMenuBankImageArea int8u
14323
+ 322 AutoISO int8u
14324
+ 324 ISOAutoHiLimit? int16u
14325
+ 326 ISOAutoFlashLimit? int16u
14326
+ 334 ISOAutoShutterTime no
14327
+ 416 MovieVignetteControl? int8u
14328
+ 418 DiffractionCompensation int8u
14329
+ 420 FlickerReductionShooting int8u
14330
+ 424 FlashControlMode int8u
14331
+ 426 FlashMasterCompensation? int8s
14332
+ 430 FlashGNDistance? no
14333
+ 434 FlashOutput? int8u
14334
+ 444 FlashRemoteControl? int8u
14335
+ 456 FlashWirelessOption? int8u
14336
+ 528 AFAreaMode int8u
14337
+ 530 VRMode int8u
14338
+ 534 BracketSet int8u
14339
+ 536 BracketProgram int8u
14340
+ 538 BracketIncrement int8u
14341
+ 556 SecondarySlotFunction int8u
14342
+ 572 DXCropAlert int8u
14343
+ 574 SubjectDetection int8u
14344
+ 604 MovieImageArea? int8u & 0x01
14345
+ 614 MovieType? int8u
14346
+ 616 MovieISOAutoHiLimit? int16u
14347
+ 618 MovieISOAutoControlManualMode? int8u
14348
+ 620 MovieISOAutoManualMode? int16u
14349
+ 696 MovieActiveD-Lighting? int8u
14350
+ 698 MovieHighISONoiseReduction? int8u
14351
+ 704 MovieFlickerReduction int8u
14352
+ 706 MovieMeteringMode? int8u
14353
+ 708 MovieFocusMode? int8u
14354
+ 710 MovieAFAreaMode int8u
14355
+ 712 MovieVRMode? int8u
14356
+ 716 MovieElectronicVR? int8u
14357
+ 718 MovieSoundRecording? int8u
14358
+ 720 MicrophoneSensitivity? int8u
14359
+ 722 MicrophoneAttenuator? int8u
14360
+ 724 MicrophoneFrequencyResponse? int8u
14361
+ 726 WindNoiseReduction? int8u
14362
+ 748 MovieToneMap? int8u
14363
+ 754 MovieFrameSize? int8u
14364
+ 756 MovieFrameRate? int8u
14365
+ 762 MicrophoneJackPower? int8u
14366
+ 763 MovieDXCropAlert? int8u
14367
+ 764 MovieSubjectDetection? int8u
14368
+ 799 CustomSettingsZ9 NikonCustom SettingsZ9
14369
+ 1426 Language? int8u
14370
+ 1428 TimeZone int8u
14371
+ 1434 MonitorBrightness? no
14372
+ 1456 AFFineTune? int8u
14373
+ 1552 HDMIOutputResolution int8u
14374
+ 1565 SetClockFromLocationData? int8u
14375
+ 1572 AirplaneMode? int8u
14376
+ 1573 EmptySlotRelease? int8u
14377
+ 1608 EnergySavingMode? int8u
14378
+ 1632 RecordLocationData? int8u
14379
+ 1636 USBPowerDelivery? int8u
14380
+ 1645 SensorShield? int8u
14224
14381
 
14225
14382
  =head3 Nikon ShotInfo Tags
14226
14383
 
@@ -14546,7 +14703,7 @@ These tags are used by the D4S, D750, D810, D5500, D7200 (FlashInfoVersion
14546
14703
  0 FlashInfoVersion no
14547
14704
  4 FlashSource int8u
14548
14705
  6 ExternalFlashFirmware int8u[2]
14549
- 27 FlashCompensation int8s
14706
+ 10 FlashCompensation int8s
14550
14707
 
14551
14708
  =head3 Nikon FlashInfoUnknown Tags
14552
14709
 
@@ -14563,6 +14720,18 @@ These tags are used by the D4S, D750, D810, D5500, D7200 (FlashInfoVersion
14563
14720
  2 MultiExposureShots int32u
14564
14721
  3 MultiExposureAutoGain int32u
14565
14722
 
14723
+ =head3 Nikon AFInfo2V0400 Tags
14724
+
14725
+ Index1 Tag Name Writable
14726
+ ------ -------- --------
14727
+ 0 AFInfo2Version no
14728
+ 62 AFImageWidth int16u
14729
+ 64 AFImageHeight int16u
14730
+ 67 FocusPositionHorizontal int8u~
14731
+ 69 FocusPositionVertical int8u~
14732
+ 70 AFAreaWidth int16u
14733
+ 72 AFAreaHeight int16u
14734
+
14566
14735
  =head3 Nikon AFInfo2 Tags
14567
14736
 
14568
14737
  These tags are written by Nikon DSLR's which have the live view feature.
@@ -15914,6 +16083,151 @@ Custom settings for the D610.
15914
16083
  21.2 ShootingInfoMonitorOffTime int8u & 0x1c
15915
16084
  35.1 PlaybackMonitorOffTime int8u & 0xe0
15916
16085
 
16086
+ =head3 NikonCustom SettingsZ9 Tags
16087
+
16088
+ Custom settings for the Z9.
16089
+
16090
+ Index1 Tag Name Writable
16091
+ ------ -------- --------
16092
+ 1 CustomSettingsBank int8u
16093
+ 3 AF-CPrioritySelection int8u
16094
+ 5 AF-SPrioritySelection int8u
16095
+ 7 BlockShotAFResponse int8u
16096
+ 11 AFPointSel int8u
16097
+ 13 StoreByOrientation int8u
16098
+ 15 AFActivation int8u
16099
+ 16 AF-OnOutOfFocusRelease? int8u
16100
+ 17 LimitAF-AreaModeSelPinpoint? int8u
16101
+ 19 LimitAF-AreaModeSelWideAF_S? int8u
16102
+ 20 LimitAF-AreaModeSelWideAF_L? int8u
16103
+ 21 LimitAFAreaModeSelAuto? int8u
16104
+ 22 FocusPointWrap? int8u
16105
+ 23 ManualFocusPointIllumination? int8u
16106
+ 24 DynamicAreaAFAssist? int8u
16107
+ 25 AF-AssistIlluminator int8u
16108
+ 26 ManualFocusRingInAFMode int8u
16109
+ 27 ExposureControlStepSize int8u
16110
+ 29 EasyExposureCompensation int8u
16111
+ 31 CenterWeightedAreaSize int8u
16112
+ 33 FineTuneOptMatrixMetering int8s
16113
+ 35 FineTuneOptCenterWeighted int8s
16114
+ 37 FineTuneOptSpotMetering int8s
16115
+ 39 FineTuneOptHighlightWeighted int8s
16116
+ 41 ShutterReleaseButtonAE-L int8u
16117
+ 43 SelfTimerTime int8u
16118
+ 45 SelfTimerShotCount int8u
16119
+ 49 SelfTimerShotInterval int8u
16120
+ 51 PlaybackMonitorOffTime int8u
16121
+ 53 MenuMonitorOffTime int8u
16122
+ 55 ShootingInfoMonitorOffTime int8u
16123
+ 57 ImageReviewMonitorOffTime int8u
16124
+ 59 CLModeShootingSpeed int8u
16125
+ 61 MaxContinuousRelease no
16126
+ 65 SyncReleaseMode? int8u
16127
+ 69 LimitSelectableImageAreaDX? int8u
16128
+ 70 LimitSelectableImageArea1To1? int8u
16129
+ 71 LimitSelectableImageArea16To9? int8u
16130
+ 72 FileNumberSequence int8u
16131
+ 73 FocusPeakingLevel? int8u
16132
+ 75 FocusPeakingHighlightColor? int8u
16133
+ 81 ContinuousModeDisplay int8u
16134
+ 83 FlashSyncSpeed no
16135
+ 85 HighSpeedSync int8u
16136
+ 87 FlashShutterSpeed no
16137
+ 89 FlashExposureCompArea int8u
16138
+ 91 AutoFlashISOSensitivity int8u
16139
+ 93 ModelingFlash int8u
16140
+ 95 AutoBracketModeM int8u
16141
+ 97 AutoBracketOrder int8u
16142
+ 99 Func1Button int8u
16143
+ 115 Func2Button int8u
16144
+ 131 AFOnButton int8u
16145
+ 143 SubSelector? int8u
16146
+ 155 AssignMovieRecordButton? int8u
16147
+ 159 LensFunc1Button int8u
16148
+ 167 LensFunc2Button int8u
16149
+ 173 LensControlRing int8u
16150
+ 175 MultiSelectorShootMode int8u
16151
+ 179 MultiSelectorPlaybackMode int8u
16152
+ 183 ShutterSpeedLock int8u
16153
+ 184 ApertureLock int8u
16154
+ 186 CmdDialsReverseRotation int8u
16155
+ 191 UseDialWithoutHold? int8u
16156
+ 193 ReverseIndicators? int8u
16157
+ 195 MovieFunc1Button int8u
16158
+ 203 MovieAF-OnButton int8u
16159
+ 217 MovieMultiSelector? int8u
16160
+ 221 MovieAFSpeed int8u
16161
+ 223 MovieAFSpeedApply int8u
16162
+ 225 MovieAFTrackingSensitivity int8u
16163
+ 257 LCDIllumination? int8u
16164
+ 258 ExtendedShutterSpeeds int8u
16165
+ 259 SubjectMotion int8u
16166
+ 261 FocusPointPersistence int8u
16167
+ 263 AutoFocusModeRestrictions? int8u
16168
+ 267 CHModeShootingSpeed int8u
16169
+ 269.1 LimitReleaseModeSelCL? int8u & 0x02
16170
+ 269.2 LimitReleaseModeSelCH? int8u & 0x04
16171
+ 269.3 LimitReleaseModeSelC30? int8u & 0x10
16172
+ 269.4 LimitReleaseModeSelC120? int8u & 0x40
16173
+ 269.5 LimitReleaseModeSelSelf? int8u & 0x80
16174
+ 273 FlashBurstPriority? int8u
16175
+ 277 VerticalFuncButton int8u
16176
+ 281 Func3Button int8u
16177
+ 285 VerticalAFOnButton int8u
16178
+ 293 VerticalMultiSelectorPlaybackMode? int8u
16179
+ 295 MovieFunc3Button int8u
16180
+ 335 LimitAF-AreaModeSelDynamic_S? int8u
16181
+ 336 LimitAF-AreaModeSelDynamic_M? int8u
16182
+ 337 LimitAF-AreaModeSelDynamic_L? int8u
16183
+ 339 LimitAF-AreaModeSel3DTracking? int8u
16184
+ 341 PlaybackFlickUp? int8u
16185
+ 345 PlaybackFlickDown? int8u
16186
+ 349 ISOStepSize int8u
16187
+ 355 ReverseFocusRing int8u
16188
+ 356 EVFImageFrame? int8u
16189
+ 357 EVFGrid? int8u
16190
+ 359 VirtualHorizonStyle? int8u
16191
+ 373 Func4Button? int8u
16192
+ 379 AudioButton? int8u
16193
+ 381 QualityButton? int8u
16194
+ 399 VerticalMultiSelector? int8u
16195
+ 421 Func1ButtonPlaybackMode? int8u
16196
+ 423 Func2ButtonPlaybackMode? int8u
16197
+ 425 Func3ButtonPlaybackMode? int8u
16198
+ 431 Func4ButtonPlaybackMode? int8u
16199
+ 437 MovieRecordButtonPlaybackMode? int8u
16200
+ 439 VerticalFuncButtonPlaybackMode? int8u
16201
+ 441 AudioButtonPlaybackMode? int8u
16202
+ 447 QualityButtonPlaybackMode? int8u
16203
+ 453 WhiteBalanceButtonPlaybackMode? int8u
16204
+ 459 CommandDialPlaybackMode? int8u
16205
+ 463 SubCommandDialPlaybackMode? int8u
16206
+ 467 FocusPointLock? int8u
16207
+ 469 ControlRingResponse int8u
16208
+ 481 VerticalMovieFuncButton? int8u
16209
+ 505 VerticalMovieAFOnButton? int8u
16210
+ 515 MovieAFAreaMode? int8u
16211
+ 527 HDMIViewAssist? int8u
16212
+ 529 ZebraPatternToneRange? int8u
16213
+ 531 MovieZebraPattern? int8u
16214
+ 533 MovieHighlightDisplayThreshold? int8u
16215
+ 535 MovieMidtoneDisplayValue? int8u
16216
+ 537 MovieMidtoneDisplayRange? int8u~
16217
+ 541 MovieEVFGrid? int8u
16218
+ 549 MovieShutterSpeedLock? int8u
16219
+ 550 MovieFocusPointLock? int8u
16220
+ 563 MatrixMetering? int8u
16221
+ 564 AF-CFocusDisplay int8u
16222
+ 565 FocusPeakingDisplay? int8u
16223
+ 567 KeepExposure int8u
16224
+ 585 StarlightView? int8u
16225
+ 587 EVFWarmDisplayMode? int8u
16226
+ 589 EVFWarmDisplayBrightness? int8s
16227
+ 591 EVFReleaseIndicator? int8u
16228
+ 601 MovieApertureLock? int8u
16229
+ 607 FlickAdvanceDirection? int8u
16230
+
15917
16231
  =head2 NikonCapture Tags
15918
16232
 
15919
16233
  This information is written by the Nikon Capture software in tag 0x0e01 of
@@ -20681,6 +20995,7 @@ still proprietary) Adobe format.
20681
20995
  MakerNoteNintendo Nintendo
20682
20996
  MakerNoteOlympus Olympus
20683
20997
  MakerNoteOlympus2 Olympus
20998
+ MakerNoteOlympus3 Olympus
20684
20999
  MakerNoteLeica Panasonic
20685
21000
  MakerNoteLeica2 Panasonic Leica2
20686
21001
  MakerNoteLeica3 Panasonic Leica3
@@ -25195,13 +25510,13 @@ check if speed is more of a concern.
25195
25510
  'dSIG' DigitalSignature no
25196
25511
  'eXIf' eXIf EXIF
25197
25512
  'fRAc' FractalParameters no
25198
- 'gAMA' Gamma no
25513
+ 'gAMA' Gamma yes!
25199
25514
  'gIFg' GIFGraphicControlExtension no
25200
25515
  'gIFt' GIFPlainTextExtension no
25201
25516
  'gIFx' GIFApplicationExtension no
25202
25517
  'hIST' PaletteHistogram no
25203
25518
  'iCCP' ICC_Profile ICC_Profile
25204
- 'iCCP-name' ProfileName no
25519
+ 'iCCP-name' ProfileName yes
25205
25520
  'iDOT' AppleDataOffsets no
25206
25521
  'iTXt' InternationalText PNG TextualData
25207
25522
  'oFFs' ImageOffset no
@@ -25210,7 +25525,7 @@ check if speed is more of a concern.
25210
25525
  'sBIT' SignificantBits no
25211
25526
  'sCAL' SubjectScale PNG SubjectScale
25212
25527
  'sPLT' SuggestedPalette no
25213
- 'sRGB' SRGBRendering no
25528
+ 'sRGB' SRGBRendering yes!
25214
25529
  'sTER' StereoImage PNG StereoImage
25215
25530
  'tEXt' TextualData PNG TextualData
25216
25531
  'tIME' ModifyDate yes
@@ -29294,9 +29609,10 @@ for the specification.
29294
29609
  0x7671 ProjectionType no
29295
29610
  0x7672 EquirectangularProj QuickTime equi
29296
29611
  CubemapProj QuickTime cbmp
29297
- 0x7673 ProjectionPosYaw no
29298
- 0x7674 ProjectionPosPitch no
29299
- 0x7675 ProjectionPosRoll no
29612
+ ProjectionPrivate no
29613
+ 0x7673 ProjectionPoseYaw no
29614
+ 0x7674 ProjectionPosePitch no
29615
+ 0x7675 ProjectionPoseRoll no
29300
29616
 
29301
29617
  =head2 MOI Tags
29302
29618
 
@@ -36256,6 +36572,7 @@ document number (ie. the exiftool C<-g3> option).
36256
36572
  9 ZipCompressedSize no
36257
36573
  11 ZipUncompressedSize no
36258
36574
  15 ZipFileName no
36575
+ '_com' ZipFileComment no
36259
36576
 
36260
36577
  =head3 ZIP GZIP Tags
36261
36578
 
@@ -36711,6 +37028,7 @@ FileName.
36711
37028
  NewGUID ExifTool no
36712
37029
  Now ExifTool no
36713
37030
  OtherImage File no
37031
+ PageCount File no
36714
37032
  PreviewImage File yes
36715
37033
  PreviewPDF File no
36716
37034
  PreviewPNG File no
@@ -36884,7 +37202,7 @@ values, may created via the ExifTool configuration file.
36884
37202
  GPSLongitude Sony:GPSLongitude no
36885
37203
  Sony:GPSLongitudeRef
36886
37204
  GPSLongitudeRef XMP-exif:GPSLongitude no
36887
- GPSPosition GPSLatitude yes
37205
+ GPSPosition GPSLatitude yes!
36888
37206
  GPSLongitude
36889
37207
  HyperfocalDistance FocalLength no
36890
37208
  Aperture
@@ -37218,6 +37536,7 @@ for more details.
37218
37536
  MakerNoteNintendo
37219
37537
  MakerNoteOlympus
37220
37538
  MakerNoteOlympus2
37539
+ MakerNoteOlympus3
37221
37540
  MakerNoteLeica
37222
37541
  MakerNoteLeica2
37223
37542
  MakerNoteLeica3
@@ -37564,7 +37883,7 @@ L<Image::ExifTool::BuildTagLookup|Image::ExifTool::BuildTagLookup>.
37564
37883
 
37565
37884
  =head1 AUTHOR
37566
37885
 
37567
- Copyright 2003-2021, Phil Harvey (philharvey66 at gmail.com)
37886
+ Copyright 2003-2022, Phil Harvey (philharvey66 at gmail.com)
37568
37887
 
37569
37888
  This library is free software; you can redistribute it and/or modify it
37570
37889
  under the same terms as Perl itself.
@@ -223,7 +223,7 @@ characteristics of TXT and CSV files.
223
223
 
224
224
  =head1 AUTHOR
225
225
 
226
- Copyright 2003-2021, Phil Harvey (philharvey66 at gmail.com)
226
+ Copyright 2003-2022, Phil Harvey (philharvey66 at gmail.com)
227
227
 
228
228
  This library is free software; you can redistribute it and/or modify it
229
229
  under the same terms as Perl itself.
@@ -122,7 +122,7 @@ information from Theora video streams.
122
122
 
123
123
  =head1 AUTHOR
124
124
 
125
- Copyright 2003-2021, Phil Harvey (philharvey66 at gmail.com)
125
+ Copyright 2003-2022, Phil Harvey (philharvey66 at gmail.com)
126
126
 
127
127
  This library is free software; you can redistribute it and/or modify it
128
128
  under the same terms as Perl itself.
@@ -310,7 +310,7 @@ bencoded information from BitTorrent files.
310
310
 
311
311
  =head1 AUTHOR
312
312
 
313
- Copyright 2003-2021, Phil Harvey (philharvey66 at gmail.com)
313
+ Copyright 2003-2022, Phil Harvey (philharvey66 at gmail.com)
314
314
 
315
315
  This library is free software; you can redistribute it and/or modify it
316
316
  under the same terms as Perl itself.
@@ -53,7 +53,7 @@ unknown manufacturers.
53
53
 
54
54
  =head1 AUTHOR
55
55
 
56
- Copyright 2003-2021, Phil Harvey (philharvey66 at gmail.com)
56
+ Copyright 2003-2022, Phil Harvey (philharvey66 at gmail.com)
57
57
 
58
58
  This library is free software; you can redistribute it and/or modify it
59
59
  under the same terms as Perl itself.
@@ -416,7 +416,7 @@ information from vCard VCF and iCalendar ICS files.
416
416
 
417
417
  =head1 AUTHOR
418
418
 
419
- Copyright 2003-2021, Phil Harvey (philharvey66 at gmail.com)
419
+ Copyright 2003-2022, Phil Harvey (philharvey66 at gmail.com)
420
420
 
421
421
  This library is free software; you can redistribute it and/or modify it
422
422
  under the same terms as Perl itself.
@@ -659,7 +659,7 @@ ExifTool Validate option is enabled.
659
659
 
660
660
  =head1 AUTHOR
661
661
 
662
- Copyright 2003-2021, Phil Harvey (philharvey66 at gmail.com)
662
+ Copyright 2003-2022, Phil Harvey (philharvey66 at gmail.com)
663
663
 
664
664
  This library is free software; you can redistribute it and/or modify it
665
665
  under the same terms as Perl itself.
@@ -228,7 +228,7 @@ information from Ogg Vorbis audio headers.
228
228
 
229
229
  =head1 AUTHOR
230
230
 
231
- Copyright 2003-2021, Phil Harvey (philharvey66 at gmail.com)
231
+ Copyright 2003-2022, Phil Harvey (philharvey66 at gmail.com)
232
232
 
233
233
  This library is free software; you can redistribute it and/or modify it
234
234
  under the same terms as Perl itself.
@@ -297,7 +297,7 @@ This module contains definitions required by Image::ExifTool to read WTV
297
297
 
298
298
  =head1 AUTHOR
299
299
 
300
- Copyright 2003-2021, Phil Harvey (philharvey66 at gmail.com)
300
+ Copyright 2003-2022, Phil Harvey (philharvey66 at gmail.com)
301
301
 
302
302
  This library is free software; you can redistribute it and/or modify it
303
303
  under the same terms as Perl itself.
@@ -623,7 +623,7 @@ JPEG files, and would lead to far fewer problems with corrupted metadata.
623
623
 
624
624
  =head1 AUTHOR
625
625
 
626
- Copyright 2003-2021, Phil Harvey (philharvey66 at gmail.com)
626
+ Copyright 2003-2022, Phil Harvey (philharvey66 at gmail.com)
627
627
 
628
628
  This library is free software; you can redistribute it and/or modify it
629
629
  under the same terms as Perl itself.