exiftool-vendored.pl 12.60.0 → 12.65.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 (59) hide show
  1. package/bin/Changes +110 -0
  2. package/bin/LICENSE +674 -0
  3. package/bin/MANIFEST +11 -0
  4. package/bin/META.json +5 -3
  5. package/bin/META.yml +5 -3
  6. package/bin/Makefile.PL +7 -1
  7. package/bin/README +50 -45
  8. package/bin/config_files/guano.config +161 -0
  9. package/bin/exiftool +163 -103
  10. package/bin/lib/Image/ExifTool/7Z.pm +793 -0
  11. package/bin/lib/Image/ExifTool/Apple.pm +14 -7
  12. package/bin/lib/Image/ExifTool/BMP.pm +0 -1
  13. package/bin/lib/Image/ExifTool/BigTIFF.pm +8 -1
  14. package/bin/lib/Image/ExifTool/BuildTagLookup.pm +4 -4
  15. package/bin/lib/Image/ExifTool/Canon.pm +4 -1
  16. package/bin/lib/Image/ExifTool/CanonRaw.pm +4 -4
  17. package/bin/lib/Image/ExifTool/CanonVRD.pm +4 -1
  18. package/bin/lib/Image/ExifTool/Exif.pm +31 -14
  19. package/bin/lib/Image/ExifTool/FlashPix.pm +9 -2
  20. package/bin/lib/Image/ExifTool/FujiFilm.pm +3 -3
  21. package/bin/lib/Image/ExifTool/GPS.pm +5 -2
  22. package/bin/lib/Image/ExifTool/Geotag.pm +4 -1
  23. package/bin/lib/Image/ExifTool/Jpeg2000.pm +243 -20
  24. package/bin/lib/Image/ExifTool/Lang/fr.pm +1467 -202
  25. package/bin/lib/Image/ExifTool/MPF.pm +2 -1
  26. package/bin/lib/Image/ExifTool/Matroska.pm +16 -1
  27. package/bin/lib/Image/ExifTool/MinoltaRaw.pm +2 -2
  28. package/bin/lib/Image/ExifTool/Nikon.pm +941 -33
  29. package/bin/lib/Image/ExifTool/NikonCustom.pm +874 -63
  30. package/bin/lib/Image/ExifTool/PDF.pm +39 -12
  31. package/bin/lib/Image/ExifTool/PLIST.pm +8 -1
  32. package/bin/lib/Image/ExifTool/PNG.pm +6 -6
  33. package/bin/lib/Image/ExifTool/PhaseOne.pm +5 -5
  34. package/bin/lib/Image/ExifTool/QuickTime.pm +96 -32
  35. package/bin/lib/Image/ExifTool/QuickTimeStream.pl +68 -37
  36. package/bin/lib/Image/ExifTool/README +2 -2
  37. package/bin/lib/Image/ExifTool/RIFF.pm +11 -9
  38. package/bin/lib/Image/ExifTool/Samsung.pm +227 -227
  39. package/bin/lib/Image/ExifTool/Shortcuts.pm +2 -1
  40. package/bin/lib/Image/ExifTool/SigmaRaw.pm +4 -4
  41. package/bin/lib/Image/ExifTool/Sony.pm +237 -32
  42. package/bin/lib/Image/ExifTool/TagLookup.pm +4762 -4629
  43. package/bin/lib/Image/ExifTool/TagNames.pod +737 -20
  44. package/bin/lib/Image/ExifTool/Validate.pm +17 -1
  45. package/bin/lib/Image/ExifTool/WPG.pm +296 -0
  46. package/bin/lib/Image/ExifTool/WriteExif.pl +9 -7
  47. package/bin/lib/Image/ExifTool/WritePDF.pl +7 -8
  48. package/bin/lib/Image/ExifTool/WriteQuickTime.pl +21 -9
  49. package/bin/lib/Image/ExifTool/WriteXMP.pl +2 -2
  50. package/bin/lib/Image/ExifTool/Writer.pl +47 -16
  51. package/bin/lib/Image/ExifTool/XMP.pm +30 -6
  52. package/bin/lib/Image/ExifTool/XMP2.pl +32 -0
  53. package/bin/lib/Image/ExifTool/XMPStruct.pl +96 -28
  54. package/bin/lib/Image/ExifTool/ZIP.pm +159 -41
  55. package/bin/lib/Image/ExifTool.pm +280 -164
  56. package/bin/lib/Image/ExifTool.pod +117 -52
  57. package/bin/perl-Image-ExifTool.spec +44 -43
  58. package/bin/pp_build_exe.args +8 -4
  59. package/package.json +3 -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 26393 tags, with 16860 unique tag names.
15
+ They contain a total of 26990 tags, with 16972 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
@@ -798,6 +798,13 @@ for the official EXIF 2.32 specification.
798
798
  0xa433 LensMake ExifIFD string
799
799
  0xa434 LensModel ExifIFD string
800
800
  0xa435 LensSerialNumber ExifIFD string
801
+ 0xa436 Title ExifIFD string/
802
+ 0xa437 Photographer ExifIFD string
803
+ 0xa438 ImageEditor ExifIFD string
804
+ 0xa439 CameraFirmware ExifIFD string
805
+ 0xa43a RAWDevelopingSoftware ExifIFD string
806
+ 0xa43b ImageEditingSoftware ExifIFD string
807
+ 0xa43c MetadataEditingSoftware ExifIFD string
801
808
  0xa460 CompositeImage ExifIFD int16u
802
809
  0xa461 CompositeImageCount ExifIFD int16u[2]
803
810
  0xa462 CompositeImageExposureTimes ExifIFD undef
@@ -1306,6 +1313,7 @@ L<http://www.adobe.com/devnet/xmp/> for the official XMP specification.
1306
1313
  GPano XMP GPano
1307
1314
  GSpherical XMP GSpherical
1308
1315
  hdr XMP hdr
1316
+ hdrgm XMP hdrgm
1309
1317
  ics XMP ics
1310
1318
  iptcCore XMP iptcCore
1311
1319
  iptcExt XMP iptcExt
@@ -1319,6 +1327,7 @@ L<http://www.adobe.com/devnet/xmp/> for the official XMP specification.
1319
1327
  mwg-kw MWG Keywords
1320
1328
  mwg-rs MWG Regions
1321
1329
  nine Nikon nine
1330
+ panorama XMP panorama
1322
1331
  pdf XMP pdf
1323
1332
  pdfx XMP pdfx
1324
1333
  photomech PhotoMechanic XMP
@@ -1453,6 +1462,9 @@ These tags belong to the ExifTool XMP-aux family 1 group.
1453
1462
  -------- --------
1454
1463
  ApproximateFocusDistance rational
1455
1464
  DistortionCorrectionAlreadyApplied boolean
1465
+ EnhanceDenoiseAlreadyApplied boolean
1466
+ EnhanceDenoiseLumaAmount string
1467
+ EnhanceDenoiseVersion string
1456
1468
  EnhanceDetailsAlreadyApplied boolean
1457
1469
  EnhanceDetailsVersion string
1458
1470
  EnhanceSuperResolutionAlreadyApplied boolean
@@ -4044,6 +4056,8 @@ These tags belong to the ExifTool XMP-et family 1 group.
4044
4056
 
4045
4057
  Tag Name Writable
4046
4058
  -------- --------
4059
+ OriginalImageHash string
4060
+ OriginalImageHashType string
4047
4061
  OriginalImageMD5 string
4048
4062
 
4049
4063
  =head3 XMP exif Tags
@@ -4495,6 +4509,24 @@ These tags belong to the ExifTool XMP-hdr family 1 group.
4495
4509
  CCVWhiteXY string
4496
4510
  SceneReferred boolean
4497
4511
 
4512
+ =head3 XMP hdrgm Tags
4513
+
4514
+ Tags used in Adobe gain map images.
4515
+
4516
+ These tags belong to the ExifTool XMP-hdrgm family 1 group.
4517
+
4518
+ Tag Name Writable
4519
+ -------- --------
4520
+ BaseRenditionIsHDR boolean
4521
+ GainMapMax real+
4522
+ GainMapMin real+
4523
+ Gamma real/+
4524
+ HDRCapacityMax real
4525
+ HDRCapacityMin real
4526
+ OffsetHDR real+
4527
+ OffsetSDR real+
4528
+ Version string/
4529
+
4498
4530
  =head3 XMP ics Tags
4499
4531
 
4500
4532
  Tags used by IDimager. Nested TagStructure structures are unrolled to an
@@ -5124,6 +5156,19 @@ These tags belong to the ExifTool XMP-mediapro family 1 group.
5124
5156
  Status string
5125
5157
  UserFields string+
5126
5158
 
5159
+ =head3 XMP panorama Tags
5160
+
5161
+ Adobe Photoshop Panorama-profile tags.
5162
+
5163
+ These tags belong to the ExifTool XMP-panorama family 1 group.
5164
+
5165
+ Tag Name Writable
5166
+ -------- --------
5167
+ Transformation string
5168
+ VirtualFocalLength real
5169
+ VirtualImageXCenter real
5170
+ VirtualImageYCenter real
5171
+
5127
5172
  =head3 XMP pdf Tags
5128
5173
 
5129
5174
  Adobe PDF namespace tags. The official XMP specification defines only
@@ -7142,18 +7187,19 @@ Tags extracted from the maker notes of iPhone images.
7142
7187
  0x000b BurstUUID string
7143
7188
  0x000c FocusDistanceRange rational64s[2]
7144
7189
  0x000f OISMode int32s
7145
- 0x0011 MediaGroupUUID string
7190
+ 0x0011 ContentIdentifier string
7146
7191
  0x0014 ImageCaptureType? int32s
7147
7192
  0x0015 ImageUniqueID string
7148
7193
  0x0017 LivePhotoVideoIndex yes
7149
7194
  0x0019 ImageProcessingFlags? int32s
7150
7195
  0x001a QualityHint? string
7151
7196
  0x001d LuminanceNoiseAmplitude rational64s
7152
- 0x0020 ImageCaptureReqestID? string
7197
+ 0x0020 ImageCaptureRequestID? string
7153
7198
  0x0021 HDRHeadroom rational64s
7154
7199
  0x0025 SceneFlags? int32s
7155
7200
  0x0026 SignalToNoiseRatioType? int32s
7156
7201
  0x0027 SignalToNoiseRatio rational64s
7202
+ 0x002b PhotoIdentifier string
7157
7203
  0x002f FocusPosition int32s
7158
7204
  0x0030 HDRGain rational64s
7159
7205
  0x0038 AFMeasuredDepth int32s
@@ -13763,6 +13809,7 @@ DiMAGE X and Xt.
13763
13809
  ShotInfoD6 Nikon ShotInfoD6
13764
13810
  ShotInfoD610 Nikon ShotInfoD610
13765
13811
  ShotInfoZ7II Nikon ShotInfoZ7II
13812
+ ShotInfoZ8 Nikon ShotInfoZ8
13766
13813
  ShotInfoZ9 Nikon ShotInfoZ9
13767
13814
  ShotInfo02xx Nikon ShotInfo
13768
13815
  ShotInfoUnknown Nikon ShotInfo
@@ -14120,7 +14167,7 @@ Tags written by some Nikon GPS-equipped cameras like the AW100.
14120
14167
 
14121
14168
  Index1 Tag Name Writable
14122
14169
  ------ -------- --------
14123
- 0 FirmwareVersion no
14170
+ 0 FirmwareVersion51 no
14124
14171
  10 NEFCompression int16u[0.5]
14125
14172
 
14126
14173
  =head3 Nikon MakerNotes0x56 Tags
@@ -14660,18 +14707,17 @@ These tags are used by the Z5, Z6, Z7, Z6II, Z7II, Z50 and Zfc.
14660
14707
  591 MovieVibrationReductionSameAsPhoto? int8u
14661
14708
  858 HDMIOutputN-Log? int8u
14662
14709
 
14663
- =head3 Nikon ShotInfoZ9 Tags
14710
+ =head3 Nikon ShotInfoZ8 Tags
14664
14711
 
14665
- These tags are extracted from encrypted data in images from the Z9.
14712
+ These tags are extracted from encrypted data in images from the Z8.
14666
14713
 
14667
14714
  Index Tag Name Writable
14668
14715
  ----- -------- --------
14669
14716
  0 ShotInfoVersion no
14670
14717
  4 FirmwareVersion no
14671
14718
  48 SequenceOffset Nikon SeqInfoZ9
14672
- 88 Offset13 Nikon Offset13InfoZ9
14673
14719
  132 OrientOffset Nikon OrientationInfo
14674
- 140 MenuOffset Nikon MenuInfoZ9
14720
+ 140 MenuOffset Nikon MenuInfoZ8
14675
14721
 
14676
14722
  =head3 Nikon SeqInfoZ9 Tags
14677
14723
 
@@ -14680,6 +14726,148 @@ These tags are extracted from encrypted data in images from the Z9.
14680
14726
  32 FocusShiftShooting int8u~
14681
14727
  40 IntervalShooting int16u~
14682
14728
 
14729
+ =head3 Nikon MenuInfoZ8 Tags
14730
+
14731
+ Index1 Tag Name Writable
14732
+ ------ -------- --------
14733
+ 16 MenuSettingsOffsetZ8 Nikon MenuSettingsZ8
14734
+
14735
+ =head3 Nikon MenuSettingsZ8 Tags
14736
+
14737
+ These tags are used by the Z8 firmware 1.00.
14738
+
14739
+ Index1 Tag Name Writable
14740
+ --------------- --------
14741
+ 72 HighFrameRate int8u
14742
+ 152 MultipleExposureMode int8u
14743
+ 154 MultiExposureShots int8u
14744
+ 184 IntervalDurationHours int32u
14745
+ 188 IntervalDurationMinutes int32u
14746
+ 192 IntervalDurationSeconds int32u
14747
+ 200 Intervals int32u
14748
+ 204 ShotsPerInterval int32u
14749
+ 208 IntervalExposureSmoothing int8u
14750
+ 210 IntervalPriority int8u
14751
+ 244 FocusShiftNumberShots int8u
14752
+ 248 FocusShiftStepWidth int8u
14753
+ 252 FocusShiftInterval int8u~
14754
+ 256 FocusShiftExposureLock? int8u
14755
+ 286 PhotoShootingMenuBank int8u
14756
+ 288 ExtendedMenuBanks int8u
14757
+ 324 PhotoShootingMenuBankImageArea int8u
14758
+ 338 AutoISO int8u
14759
+ 340 ISOAutoHiLimit? int16u
14760
+ 342 ISOAutoFlashLimit? int16u
14761
+ 350 ISOAutoShutterTime no
14762
+ 432 MovieVignetteControl? int8u
14763
+ 434 DiffractionCompensation int8u
14764
+ 436 FlickerReductionShooting int8u
14765
+ 440 FlashControlMode int8u
14766
+ 548 AFAreaMode int8u
14767
+ 550 VRMode int8u
14768
+ 554 BracketSet int8u
14769
+ 556 BracketProgram int8u
14770
+ 558 BracketIncrement int8u
14771
+ 570 HDR int8u
14772
+ 576 SecondarySlotFunction int8u
14773
+ 582 HDRLevel int8u
14774
+ 586 Slot2JpgSize? int8u
14775
+ 592 DXCropAlert int8u
14776
+ 594 SubjectDetection int8u
14777
+ 596 DynamicAFAreaSize int8u
14778
+ 618 ToneMap? int8u
14779
+ 622 PortraitImpressionBalance int8u
14780
+ 636 HighFrequencyFlickerReductionShooting? int8u
14781
+ 730 MovieImageArea? int8u & 0x01
14782
+ 740 MovieType? int8u
14783
+ 742 MovieISOAutoHiLimit? int16u
14784
+ 744 MovieISOAutoControlManualMode? int8u
14785
+ 746 MovieISOAutoManualMode? int16u
14786
+ 820 MovieActiveD-Lighting? int8u
14787
+ 822 MovieHighISONoiseReduction? int8u
14788
+ 828 MovieFlickerReduction int8u
14789
+ 830 MovieMeteringMode? int8u
14790
+ 832 MovieFocusMode? int8u
14791
+ 834 MovieAFAreaMode int8u
14792
+ 836 MovieVRMode? int8u
14793
+ 840 MovieElectronicVR? int8u
14794
+ 842 MovieSoundRecording? int8u
14795
+ 844 MicrophoneSensitivity? int8u
14796
+ 846 MicrophoneAttenuator? int8u
14797
+ 848 MicrophoneFrequencyResponse? int8u
14798
+ 850 WindNoiseReduction? int8u
14799
+ 882 MovieFrameSize? int8u
14800
+ 884 MovieFrameRate? int8u
14801
+ 886 MicrophoneJackPower? int8u
14802
+ 887 MovieDXCropAlert? int8u
14803
+ 888 MovieSubjectDetection? int8u
14804
+ 896 MovieHighResZoom? int8u
14805
+ 943 CustomSettingsZ8 NikonCustom SettingsZ8
14806
+ 1682 Language? int8u
14807
+ 1684 TimeZone int8u
14808
+ 1690 MonitorBrightness? int8u
14809
+ 1712 AFFineTune? int8u
14810
+ 1716 NonCPULens1FocalLength? int16u~
14811
+ 1718 NonCPULens2FocalLength? int16u~
14812
+ 1720 NonCPULens3FocalLength? int16u~
14813
+ 1722 NonCPULens4FocalLength? int16u~
14814
+ 1724 NonCPULens5FocalLength? int16u~
14815
+ 1726 NonCPULens6FocalLength? int16u~
14816
+ 1728 NonCPULens7FocalLength? int16u~
14817
+ 1730 NonCPULens8FocalLength? int16u~
14818
+ 1732 NonCPULens9FocalLength? int16u~
14819
+ 1734 NonCPULens10FocalLength? int16u~
14820
+ 1736 NonCPULens11FocalLength? int16u~
14821
+ 1738 NonCPULens12FocalLength? int16u~
14822
+ 1740 NonCPULens13FocalLength? int16u~
14823
+ 1742 NonCPULens14FocalLength? int16u~
14824
+ 1744 NonCPULens15FocalLength? int16u~
14825
+ 1746 NonCPULens16FocalLength? int16u~
14826
+ 1748 NonCPULens17FocalLength? int16u~
14827
+ 1750 NonCPULens18FocalLength? int16u~
14828
+ 1752 NonCPULens19FocalLength? int16u~
14829
+ 1754 NonCPULens20FocalLength? int16u~
14830
+ 1756 NonCPULens1MaxAperture? int16u
14831
+ 1758 NonCPULens2MaxAperture? int16u
14832
+ 1760 NonCPULens3MaxAperture? int16u
14833
+ 1762 NonCPULens4MaxAperture? int16u
14834
+ 1764 NonCPULens5MaxAperture? int16u
14835
+ 1766 NonCPULens6MaxAperture? int16u
14836
+ 1768 NonCPULens7MaxAperture? int16u
14837
+ 1770 NonCPULens8MaxAperture? int16u
14838
+ 1772 NonCPULens9MaxAperture? int16u
14839
+ 1774 NonCPULens10MaxAperture? int16u
14840
+ 1776 NonCPULens11MaxAperture? int16u
14841
+ 1778 NonCPULens12MaxAperture? int16u
14842
+ 1780 NonCPULens13MaxAperture? int16u
14843
+ 1782 NonCPULens14MaxAperture? int16u
14844
+ 1784 NonCPULens15MaxAperture? int16u
14845
+ 1786 NonCPULens16MaxAperture? int16u
14846
+ 1788 NonCPULens17MaxAperture? int16u
14847
+ 1790 NonCPULens18MaxAperture? int16u
14848
+ 1792 NonCPULens19MaxAperture? int16u
14849
+ 1794 NonCPULens20MaxAperture? int16u
14850
+ 1808 HDMIOutputResolution int8u
14851
+ 1826 AirplaneMode? int8u
14852
+ 1827 EmptySlotRelease? int8u
14853
+ 1862 EnergySavingMode? int8u
14854
+ 1890 USBPowerDelivery? int8u
14855
+ 1899 SensorShield? int8u
14856
+
14857
+ =head3 Nikon ShotInfoZ9 Tags
14858
+
14859
+ These tags are extracted from encrypted data in images from the Z9.
14860
+
14861
+ Index Tag Name Writable
14862
+ ----- -------- --------
14863
+ 0 ShotInfoVersion no
14864
+ 4 FirmwareVersion no
14865
+ 48 SequenceOffset Nikon SeqInfoZ9
14866
+ 88 Offset13 Nikon Offset13InfoZ9
14867
+ 128 AutoCaptureOffset Nikon AutoCaptureInfo
14868
+ 132 OrientOffset Nikon OrientationInfo
14869
+ 140 MenuOffset Nikon MenuInfoZ9
14870
+
14683
14871
  =head3 Nikon Offset13InfoZ9 Tags
14684
14872
 
14685
14873
  Index1 Tag Name Writable
@@ -14689,13 +14877,31 @@ These tags are extracted from encrypted data in images from the Z9.
14689
14877
  3050 AFAreaInitialWidth no
14690
14878
  3051 AFAreaInitialHeight no
14691
14879
 
14880
+ =head3 Nikon AutoCaptureInfo Tags
14881
+
14882
+ Index1 Tag Name Writable
14883
+ ------ -------- --------
14884
+ 0 AutoCapturedFrame int8u
14885
+ 1 AutoCaptureCriteria int8u~
14886
+ 55 AutoCaptureRecordingTime int8u
14887
+ 56 AutoCaptureWaitTime int8u
14888
+ 74 AutoCaptureDistanceFar int8u~
14889
+ 78 AutoCaptureDistanceNear int8u~
14890
+ 95 AutoCaptureCriteriaMotionDirection int8u~
14891
+ 99 AutoCaptureCriteriaMotionSpeed int8u
14892
+ 100 AutoCaptureCriteriaMotionSize int8u
14893
+ 105 AutoCaptureCriteriaSubjectSize int8u
14894
+ 106 AutoCaptureCriteriaSubjectType int8u
14895
+
14692
14896
  =head3 Nikon MenuInfoZ9 Tags
14693
14897
 
14694
14898
  Index1 Tag Name Writable
14695
14899
  ------ -------- --------
14696
14900
  16 MenuSettingsOffsetZ9 Nikon MenuSettingsZ9
14697
14901
  MenuSettingsOffsetZ9v3 -
14698
- Nikon MenuSettingsZ9v3
14902
+ MenuSettingsOffsetZ9v4 Nikon MenuSettingsZ9v3
14903
+ -
14904
+ Nikon MenuSettingsZ9v4
14699
14905
 
14700
14906
  =head3 Nikon MenuSettingsZ9 Tags
14701
14907
 
@@ -14855,6 +15061,146 @@ These tags are used by the Z9 firmware 3.00.
14855
15061
  1810 PreReleaseBurstLength int8u
14856
15062
  1812 PostReleaseBurstLength int8u
14857
15063
 
15064
+ =head3 Nikon MenuSettingsZ9v4 Tags
15065
+
15066
+ These tags are used by the Z9 firmware 3.00.
15067
+
15068
+ Index1 Tag Name Writable
15069
+ --------------- --------
15070
+ 72 HighFrameRate int8u
15071
+ 154 MultipleExposureMode int8u
15072
+ 156 MultiExposureShots int8u
15073
+ 204 Intervals int32u
15074
+ 208 ShotsPerInterval int32u
15075
+ 248 FocusShiftNumberShots int8u
15076
+ 252 FocusShiftStepWidth int8u
15077
+ 256 FocusShiftInterval int8u~
15078
+ 260 FocusShiftExposureLock? int8u
15079
+ 290 PhotoShootingMenuBank int8u
15080
+ 292 ExtendedMenuBanks int8u
15081
+ 328 PhotoShootingMenuBankImageArea int8u
15082
+ 342 AutoISO int8u
15083
+ 344 ISOAutoHiLimit? int16u
15084
+ 346 ISOAutoFlashLimit? int16u
15085
+ 354 ISOAutoShutterTime no
15086
+ 436 MovieVignetteControl? int8u
15087
+ 438 DiffractionCompensation int8u
15088
+ 440 FlickerReductionShooting int8u
15089
+ 444 FlashControlMode int8u
15090
+ 446 FlashMasterCompensation? int8s
15091
+ 450 FlashGNDistance? no
15092
+ 454 FlashOutput? int8u
15093
+ 548 AFAreaMode int8u
15094
+ 550 VRMode int8u
15095
+ 554 BracketSet int8u
15096
+ 556 BracketProgram int8u
15097
+ 558 BracketIncrement int8u
15098
+ 570 HDR int8u
15099
+ 576 SecondarySlotFunction int8u
15100
+ 582 HDRLevel int8u
15101
+ 586 Slot2JpgSize? int8u
15102
+ 592 DXCropAlert int8u
15103
+ 594 SubjectDetection int8u
15104
+ 596 DynamicAFAreaSize int8u
15105
+ 636 HighFrequencyFlickerReductionShooting? int8u
15106
+ 646 MovieImageArea? int8u & 0x01
15107
+ 656 MovieType? int8u
15108
+ 658 MovieISOAutoHiLimit? int16u
15109
+ 660 MovieISOAutoControlManualMode? int8u
15110
+ 662 MovieISOAutoManualMode? int16u
15111
+ 736 MovieActiveD-Lighting? int8u
15112
+ 738 MovieHighISONoiseReduction? int8u
15113
+ 744 MovieFlickerReduction int8u
15114
+ 746 MovieMeteringMode? int8u
15115
+ 748 MovieFocusMode? int8u
15116
+ 750 MovieAFAreaMode int8u
15117
+ 752 MovieVRMode? int8u
15118
+ 756 MovieElectronicVR? int8u
15119
+ 758 MovieSoundRecording? int8u
15120
+ 760 MicrophoneSensitivity? int8u
15121
+ 762 MicrophoneAttenuator? int8u
15122
+ 764 MicrophoneFrequencyResponse? int8u
15123
+ 766 WindNoiseReduction? int8u
15124
+ 788 MovieToneMap? int8u
15125
+ 794 MovieFrameSize? int8u
15126
+ 796 MovieFrameRate? int8u
15127
+ 802 MicrophoneJackPower? int8u
15128
+ 803 MovieDXCropAlert? int8u
15129
+ 804 MovieSubjectDetection? int8u
15130
+ 812 MovieHighResZoom? int8u
15131
+ 847 CustomSettingsZ9v4 NikonCustom SettingsZ9v4
15132
+ 1498 Language? int8u
15133
+ 1500 TimeZone int8u
15134
+ 1506 MonitorBrightness? int8u
15135
+ 1528 AFFineTune? int8u
15136
+ 1532 NonCPULens1FocalLength? int16s~
15137
+ 1536 NonCPULens2FocalLength? int16s~
15138
+ 1540 NonCPULens3FocalLength? int16s~
15139
+ 1544 NonCPULens4FocalLength? int16s~
15140
+ 1548 NonCPULens5FocalLength? int16s~
15141
+ 1552 NonCPULens6FocalLength? int16s~
15142
+ 1556 NonCPULens7FocalLength? int16s~
15143
+ 1560 NonCPULens8FocalLength? int16s~
15144
+ 1564 NonCPULens9FocalLength? int16s~
15145
+ 1568 NonCPULens10FocalLength? int16s~
15146
+ 1572 NonCPULens11FocalLength? int16s~
15147
+ 1576 NonCPULens12FocalLength? int16s~
15148
+ 1580 NonCPULens13FocalLength? int16s~
15149
+ 1584 NonCPULens14FocalLength? int16s~
15150
+ 1588 NonCPULens15FocalLength? int16s~
15151
+ 1592 NonCPULens16FocalLength? int16s~
15152
+ 1596 NonCPULens17FocalLength? int16s~
15153
+ 1600 NonCPULens18FocalLength? int16s~
15154
+ 1604 NonCPULens19FocalLength? int16s~
15155
+ 1608 NonCPULens20FocalLength? int16s~
15156
+ 1612 NonCPULens1MaxAperture? int16s~
15157
+ 1616 NonCPULens2MaxAperture? int16s~
15158
+ 1620 NonCPULens3MaxAperture? int16s~
15159
+ 1624 NonCPULens4MaxAperture? int16s~
15160
+ 1628 NonCPULens5MaxAperture? int16s~
15161
+ 1632 NonCPULens6MaxAperture? int16s~
15162
+ 1636 NonCPULens7MaxAperture? int16s~
15163
+ 1640 NonCPULens8MaxAperture? int16s~
15164
+ 1644 NonCPULens9MaxAperture? int16s~
15165
+ 1648 NonCPULens10MaxAperture? int16s~
15166
+ 1652 NonCPULens11MaxAperture? int16s~
15167
+ 1656 NonCPULens12MaxAperture? int16s~
15168
+ 1660 NonCPULens13MaxAperture? int16s~
15169
+ 1664 NonCPULens14MaxAperture? int16s~
15170
+ 1668 NonCPULens15MaxAperture? int16s~
15171
+ 1672 NonCPULens16MaxAperture? int16s~
15172
+ 1676 NonCPULens17MaxAperture? int16s~
15173
+ 1680 NonCPULens18MaxAperture? int16s~
15174
+ 1684 NonCPULens19MaxAperture? int16s~
15175
+ 1688 NonCPULens20MaxAperture? int16s~
15176
+ 1704 HDMIOutputResolution int8u
15177
+ 1717 SetClockFromLocationData? int8u
15178
+ 1724 AirplaneMode? int8u
15179
+ 1725 EmptySlotRelease? int8u
15180
+ 1760 EnergySavingMode? int8u
15181
+ 1784 RecordLocationData? int8u
15182
+ 1788 USBPowerDelivery? int8u
15183
+ 1797 SensorShield? int8u
15184
+ 1862 AutoCapturePreset int8u
15185
+ 1864 FocusShiftAutoReset? int8u
15186
+ 1922 PreReleaseBurstLength int8u
15187
+ 1924 PostReleaseBurstLength int8u
15188
+ 1938 VerticalISOButton int8u
15189
+ 1940 ExposureCompensationButton int8u
15190
+ 1942 ISOButton int8u
15191
+ 2002 ViewModeShowEffectsOfSettings? int8u
15192
+ 2004 DispButton int8u
15193
+ 2048 ExposureDelay fixed32u~
15194
+ 2056 PlaybackButton int8u
15195
+ 2058 WBButton int8u
15196
+ 2060 BracketButton int8u
15197
+ 2062 FlashModeButton int8u
15198
+ 2064 LensFunc1ButtonPlaybackMode int8u
15199
+ 2066 LensFunc2ButtonPlaybackMode int8u
15200
+ 2068 PlaybackButtonPlaybackMode int8u
15201
+ 2070 BracketButtonPlaybackMode int8u
15202
+ 2072 FlashModeButtonPlaybackMode int8u
15203
+
14858
15204
  =head3 Nikon ShotInfo Tags
14859
15205
 
14860
15206
  This information is encrypted for ShotInfoVersion 02xx, and some tags are
@@ -15022,6 +15368,7 @@ Tags found in the encrypted LensData from cameras such as the Z6 and Z7.
15022
15368
  76 FocusDistanceRangeWidth? int8u
15023
15369
  78 FocusDistance int16u~
15024
15370
  86 LensDriveEnd? int8u
15371
+ 88 FocusStepsFromInfinity? int8u
15025
15372
  90 LensPositionAbsolute int32s
15026
15373
 
15027
15374
  =head3 Nikon LensDataUnknown Tags
@@ -15234,6 +15581,7 @@ These tags are used by the D4S, D750, D810, D5500, D7200 (FlashInfoVersion
15234
15581
  ------ -------- --------
15235
15582
  0 AFInfo2Version no
15236
15583
  5 AFAreaMode int8u
15584
+ 10 AFPointsUsed undef[51]
15237
15585
  62 AFImageWidth int16u
15238
15586
  64 AFImageHeight int16u
15239
15587
  66 AFAreaXPosition int16u
@@ -16599,6 +16947,134 @@ Custom settings for the D610.
16599
16947
  21.2 ShootingInfoMonitorOffTime int8u & 0x1c
16600
16948
  35.1 PlaybackMonitorOffTime int8u & 0xe0
16601
16949
 
16950
+ =head3 NikonCustom SettingsZ8 Tags
16951
+
16952
+ Custom settings for the Z8.
16953
+
16954
+ Index1 Tag Name Writable
16955
+ ------ -------- --------
16956
+ 1 CustomSettingsBank int8u
16957
+ 3 AF-CPrioritySelection int8u
16958
+ 5 AF-SPrioritySelection int8u
16959
+ 7 BlockShotAFResponse int8u
16960
+ 11 AFPointSel int8u
16961
+ 13 StoreByOrientation int8u
16962
+ 15 AFActivation int8u
16963
+ 16 AF-OnOutOfFocusRelease? int8u
16964
+ 17 LimitAF-AreaModeSelPinpoint? int8u
16965
+ 19 LimitAF-AreaModeSelWideAF_S? int8u
16966
+ 20 LimitAF-AreaModeSelWideAF_L? int8u
16967
+ 21 LimitAFAreaModeSelAuto? int8u
16968
+ 22 FocusPointWrap? int8u
16969
+ 23 ManualFocusPointIllumination? int8u
16970
+ 24 DynamicAreaAFAssist? int8u
16971
+ 25 AF-AssistIlluminator int8u
16972
+ 26 ManualFocusRingInAFMode int8u
16973
+ 27 ExposureControlStepSize int8u
16974
+ 29 EasyExposureCompensation int8u
16975
+ 31 CenterWeightedAreaSize int8u
16976
+ 33 FineTuneOptMatrixMetering int8s
16977
+ 35 FineTuneOptCenterWeighted int8s
16978
+ 37 FineTuneOptSpotMetering int8s
16979
+ 39 FineTuneOptHighlightWeighted int8s
16980
+ 41 ShutterReleaseButtonAE-L int8u
16981
+ 43 SelfTimerTime int8u
16982
+ 45 SelfTimerShotCount int8u
16983
+ 49 SelfTimerShotInterval int8u
16984
+ 51 PlaybackMonitorOffTime int8u
16985
+ 53 MenuMonitorOffTime int8u
16986
+ 55 ShootingInfoMonitorOffTime int8u
16987
+ 57 ImageReviewMonitorOffTime int8u
16988
+ 59 CLModeShootingSpeed int8u
16989
+ 61 MaxContinuousRelease no
16990
+ 65 SyncReleaseMode? int8u
16991
+ 69 LimitSelectableImageAreaDX? int8u
16992
+ 70 LimitSelectableImageArea1To1? int8u
16993
+ 71 LimitSelectableImageArea16To9? int8u
16994
+ 72 FileNumberSequence int8u
16995
+ 73 FocusPeakingLevel? int8u
16996
+ 75 FocusPeakingHighlightColor? int8u
16997
+ 81 ContinuousModeDisplay int8u
16998
+ 83 FlashSyncSpeed no
16999
+ 85 HighSpeedSync int8u
17000
+ 87 FlashShutterSpeed no
17001
+ 89 FlashExposureCompArea int8u
17002
+ 91 AutoFlashISOSensitivity int8u
17003
+ 93 ModelingFlash int8u
17004
+ 95 AutoBracketModeM int8u
17005
+ 97 AutoBracketOrder int8u
17006
+ 99 Func1Button int8u
17007
+ 115 Func2Button int8u
17008
+ 131 AFOnButton int8u
17009
+ 143 SubSelector? int8u
17010
+ 155 AssignMovieRecordButton? int8u
17011
+ 159 LensFunc1Button int8u
17012
+ 167 LensFunc2Button int8u
17013
+ 173 LensControlRing int8u
17014
+ 175 MultiSelectorShootMode int8u
17015
+ 179 MultiSelectorPlaybackMode int8u
17016
+ 183 ShutterSpeedLock int8u
17017
+ 184 ApertureLock int8u
17018
+ 186 CmdDialsReverseRotation int8u
17019
+ 191 UseDialWithoutHold? int8u
17020
+ 193 ReverseIndicators? int8u
17021
+ 195 MovieFunc1Button int8u
17022
+ 199 MovieFunc2Button int8u
17023
+ 203 MovieAF-OnButton int8u
17024
+ 215 MovieLensControlRing int8u
17025
+ 217 MovieMultiSelector? int8u
17026
+ 221 MovieAFSpeed int8u
17027
+ 223 MovieAFSpeedApply int8u
17028
+ 225 MovieAFTrackingSensitivity int8u
17029
+ 257 LCDIllumination? int8u
17030
+ 258 ExtendedShutterSpeeds int8u
17031
+ 259 SubjectMotion int8u
17032
+ 261 FocusPointPersistence int8u
17033
+ 263 AutoFocusModeRestrictions? int8u
17034
+ 267 CHModeShootingSpeed int8u
17035
+ 273 FlashBurstPriority? int8u
17036
+ 335 LimitAF-AreaModeSelDynamic_S? int8u
17037
+ 336 LimitAF-AreaModeSelDynamic_M? int8u
17038
+ 337 LimitAF-AreaModeSelDynamic_L? int8u
17039
+ 339 LimitAF-AreaModeSel3DTracking? int8u
17040
+ 341 PlaybackFlickUp? int8u
17041
+ 345 PlaybackFlickDown? int8u
17042
+ 349 ISOStepSize int8u
17043
+ 355 ReverseFocusRing int8u
17044
+ 356 EVFImageFrame? int8u
17045
+ 357 EVFGrid? int8u
17046
+ 359 VirtualHorizonStyle? int8u
17047
+ 421 Func1ButtonPlaybackMode? int8u
17048
+ 423 Func2ButtonPlaybackMode? int8u
17049
+ 437 MovieRecordButtonPlaybackMode? int8u
17050
+ 459 CommandDialPlaybackMode? int8u
17051
+ 463 SubCommandDialPlaybackMode? int8u
17052
+ 467 FocusPointLock? int8u
17053
+ 469 ControlRingResponse int8u
17054
+ 515 MovieAFAreaMode? int8u
17055
+ 529 ZebraPatternToneRange? int8u
17056
+ 531 MovieZebraPattern? int8u
17057
+ 533 MovieHighlightDisplayThreshold? int8u
17058
+ 535 MovieMidtoneDisplayValue? int8u
17059
+ 537 MovieMidtoneDisplayRange? int8u~
17060
+ 541 MovieEVFGrid? int8u
17061
+ 549 MovieShutterSpeedLock? int8u
17062
+ 550 MovieFocusPointLock? int8u
17063
+ 563 MatrixMetering? int8u
17064
+ 564 AF-CFocusDisplay int8u
17065
+ 565 FocusPeakingDisplay? int8u
17066
+ 567 KeepExposure int8u
17067
+ 585 StarlightView? int8u
17068
+ 587 EVFWarmDisplayMode? int8u
17069
+ 589 EVFWarmDisplayBrightness? int8s
17070
+ 591 EVFReleaseIndicator? int8u
17071
+ 601 MovieApertureLock? int8u
17072
+ 607 FlickAdvanceDirection? int8u
17073
+ 647 PreReleaseBurstLength int8u
17074
+ 649 PostReleaseBurstLength int8u
17075
+ 681 ViewModeShowEffectsOfSettings? int8u
17076
+ 683 DispButton int8u
17077
+
16602
17078
  =head3 NikonCustom SettingsZ9 Tags
16603
17079
 
16604
17080
  Custom settings for the Z9.
@@ -16673,8 +17149,8 @@ Custom settings for the Z9.
16673
17149
  195 MovieFunc1Button int8u
16674
17150
  199 MovieFunc2Button int8u
16675
17151
  203 MovieAF-OnButton int8u
17152
+ 207 MovieMultiSelector? int8u
16676
17153
  215 MovieLensControlRing int8u
16677
- 217 MovieMultiSelector? int8u
16678
17154
  221 MovieAFSpeed int8u
16679
17155
  223 MovieAFSpeedApply int8u
16680
17156
  225 MovieAFTrackingSensitivity int8u
@@ -16746,6 +17222,153 @@ Custom settings for the Z9.
16746
17222
  601 MovieApertureLock? int8u
16747
17223
  607 FlickAdvanceDirection? int8u
16748
17224
 
17225
+ =head3 NikonCustom SettingsZ9v4 Tags
17226
+
17227
+ Custom settings for the Z9.
17228
+
17229
+ Index1 Tag Name Writable
17230
+ ------ -------- --------
17231
+ 1 CustomSettingsBank int8u
17232
+ 3 AF-CPrioritySelection int8u
17233
+ 5 AF-SPrioritySelection int8u
17234
+ 7 BlockShotAFResponse int8u
17235
+ 11 AFPointSel int8u
17236
+ 13 StoreByOrientation int8u
17237
+ 15 AFActivation int8u
17238
+ 16 AF-OnOutOfFocusRelease? int8u
17239
+ 17 LimitAF-AreaModeSelPinpoint? int8u
17240
+ 19 LimitAF-AreaModeSelWideAF_S? int8u
17241
+ 20 LimitAF-AreaModeSelWideAF_L? int8u
17242
+ 21 LimitAFAreaModeSelAuto? int8u
17243
+ 22 FocusPointWrap? int8u
17244
+ 23 ManualFocusPointIllumination? int8u
17245
+ 24 DynamicAreaAFAssist? int8u
17246
+ 25 AF-AssistIlluminator int8u
17247
+ 26 ManualFocusRingInAFMode int8u
17248
+ 27 ExposureControlStepSize int8u
17249
+ 29 EasyExposureCompensation int8u
17250
+ 31 CenterWeightedAreaSize int8u
17251
+ 33 FineTuneOptMatrixMetering int8s
17252
+ 35 FineTuneOptCenterWeighted int8s
17253
+ 37 FineTuneOptSpotMetering int8s
17254
+ 39 FineTuneOptHighlightWeighted int8s
17255
+ 41 ShutterReleaseButtonAE-L int8u
17256
+ 43 SelfTimerTime int8u
17257
+ 45 SelfTimerShotCount int8u
17258
+ 49 SelfTimerShotInterval int8u
17259
+ 51 PlaybackMonitorOffTime int8u
17260
+ 53 MenuMonitorOffTime int8u
17261
+ 55 ShootingInfoMonitorOffTime int8u
17262
+ 57 ImageReviewMonitorOffTime int8u
17263
+ 59 CLModeShootingSpeed int8u
17264
+ 61 MaxContinuousRelease no
17265
+ 65 SyncReleaseMode? int8u
17266
+ 69 LimitSelectableImageAreaDX? int8u
17267
+ 70 LimitSelectableImageArea1To1? int8u
17268
+ 71 LimitSelectableImageArea16To9? int8u
17269
+ 72 FileNumberSequence int8u
17270
+ 73 FocusPeakingLevel? int8u
17271
+ 75 FocusPeakingHighlightColor? int8u
17272
+ 81 ContinuousModeDisplay int8u
17273
+ 83 FlashSyncSpeed no
17274
+ 85 HighSpeedSync int8u
17275
+ 87 FlashShutterSpeed no
17276
+ 89 FlashExposureCompArea int8u
17277
+ 91 AutoFlashISOSensitivity int8u
17278
+ 93 ModelingFlash int8u
17279
+ 95 AutoBracketModeM int8u
17280
+ 97 AutoBracketOrder int8u
17281
+ 99 Func1Button int8u
17282
+ 115 Func2Button int8u
17283
+ 131 AFOnButton int8u
17284
+ 143 SubSelector? int8u
17285
+ 155 AssignMovieRecordButton? int8u
17286
+ 159 LensFunc1Button int8u
17287
+ 167 LensFunc2Button int8u
17288
+ 173 LensControlRing int8u
17289
+ 175 MultiSelectorShootMode int8u
17290
+ 179 MultiSelectorPlaybackMode int8u
17291
+ 183 ShutterSpeedLock int8u
17292
+ 184 ApertureLock int8u
17293
+ 186 CmdDialsReverseRotation int8u
17294
+ 191 UseDialWithoutHold? int8u
17295
+ 193 ReverseIndicators? int8u
17296
+ 195 MovieFunc1Button int8u
17297
+ 199 MovieFunc2Button int8u
17298
+ 203 MovieAF-OnButton int8u
17299
+ 207 MovieMultiSelector? int8u
17300
+ 215 MovieLensControlRing int8u
17301
+ 221 MovieAFSpeed int8u
17302
+ 223 MovieAFSpeedApply int8u
17303
+ 225 MovieAFTrackingSensitivity int8u
17304
+ 279 LCDIllumination? int8u
17305
+ 280 ExtendedShutterSpeeds int8u
17306
+ 281 SubjectMotion int8u
17307
+ 283 FocusPointPersistence int8u
17308
+ 285 AutoFocusModeRestrictions? int8u
17309
+ 289 CHModeShootingSpeed int8u
17310
+ 293.1 LimitReleaseModeSelCL? int8u & 0x02
17311
+ 293.2 LimitReleaseModeSelCH? int8u & 0x04
17312
+ 293.3 LimitReleaseModeSelC30? int8u & 0x10
17313
+ 293.4 LimitReleaseModeSelC120? int8u & 0x40
17314
+ 293.5 LimitReleaseModeSelSelf? int8u & 0x80
17315
+ 297 FlashBurstPriority? int8u
17316
+ 301 VerticalFuncButton int8u
17317
+ 305 Func3Button int8u
17318
+ 309 VerticalAFOnButton int8u
17319
+ 317 VerticalMultiSelectorPlaybackMode? int8u
17320
+ 319 MovieFunc3Button int8u
17321
+ 359 LimitAF-AreaModeSelDynamic_S? int8u
17322
+ 360 LimitAF-AreaModeSelDynamic_M? int8u
17323
+ 361 LimitAF-AreaModeSelDynamic_L? int8u
17324
+ 363 LimitAF-AreaModeSel3DTracking? int8u
17325
+ 365 PlaybackFlickUp? int8u
17326
+ 369 PlaybackFlickDown? int8u
17327
+ 373 ISOStepSize int8u
17328
+ 379 ReverseFocusRing int8u
17329
+ 380 EVFImageFrame? int8u
17330
+ 381 EVFGrid? int8u
17331
+ 383 VirtualHorizonStyle? int8u
17332
+ 397 Func4Button? int8u
17333
+ 403 AudioButton? int8u
17334
+ 405 QualityButton? int8u
17335
+ 423 VerticalMultiSelector? int8u
17336
+ 445 Func1ButtonPlaybackMode? int8u
17337
+ 447 Func2ButtonPlaybackMode? int8u
17338
+ 449 Func3ButtonPlaybackMode? int8u
17339
+ 455 Func4ButtonPlaybackMode? int8u
17340
+ 461 MovieRecordButtonPlaybackMode? int8u
17341
+ 463 VerticalFuncButtonPlaybackMode? int8u
17342
+ 465 AudioButtonPlaybackMode? int8u
17343
+ 471 QualityButtonPlaybackMode? int8u
17344
+ 477 WhiteBalanceButtonPlaybackMode? int8u
17345
+ 483 CommandDialPlaybackMode? int8u
17346
+ 487 SubCommandDialPlaybackMode? int8u
17347
+ 491 FocusPointLock? int8u
17348
+ 493 ControlRingResponse int8u
17349
+ 505 VerticalMovieFuncButton? int8u
17350
+ 529 VerticalMovieAFOnButton? int8u
17351
+ 539 MovieAFAreaMode? int8u
17352
+ 551 HDMIViewAssist? int8u
17353
+ 553 ZebraPatternToneRange? int8u
17354
+ 555 MovieZebraPattern? int8u
17355
+ 557 MovieHighlightDisplayThreshold? int8u
17356
+ 559 MovieMidtoneDisplayValue? int8u
17357
+ 561 MovieMidtoneDisplayRange? int8u~
17358
+ 565 MovieEVFGrid? int8u
17359
+ 573 MovieShutterSpeedLock? int8u
17360
+ 574 MovieFocusPointLock? int8u
17361
+ 587 MatrixMetering? int8u
17362
+ 588 AF-CFocusDisplay int8u
17363
+ 589 FocusPeakingDisplay? int8u
17364
+ 591 KeepExposure int8u
17365
+ 609 StarlightView? int8u
17366
+ 611 EVFWarmDisplayMode? int8u
17367
+ 613 EVFWarmDisplayBrightness? int8s
17368
+ 615 EVFReleaseIndicator? int8u
17369
+ 625 MovieApertureLock? int8u
17370
+ 631 FlickAdvanceDirection? int8u
17371
+
16749
17372
  =head2 NikonCapture Tags
16750
17373
 
16751
17374
  This information is written by the Nikon Capture software in tag 0x0e01 of
@@ -19670,6 +20293,7 @@ MakerNotes.
19670
20293
  0x9050 Tag9050a Sony Tag9050a
19671
20294
  Tag9050b Sony Tag9050b
19672
20295
  Tag9050c Sony Tag9050c
20296
+ Tag9050d Sony Tag9050d
19673
20297
  0x9400 Tag9400a Sony Tag9400a
19674
20298
  Tag9400b Sony Tag9400b
19675
20299
  Tag9400c Sony Tag9400c
@@ -20436,6 +21060,8 @@ WX300, but not for panorama images.
20436
21060
  6294 LensType int16u
20437
21061
  6296 DistortionCorrParamsPresent int8u
20438
21062
  6297 DistortionCorrParamsNumber int8u
21063
+ 6444 AspectRatio int8u
21064
+ 6792 AspectRatio int8u
20439
21065
 
20440
21066
  =head3 Sony Tag2010f Tags
20441
21067
 
@@ -20466,6 +21092,7 @@ Valid for DSC-RX100M2, DSC-QX10/QX100.
20466
21092
  4406 MinFocalLength int16u
20467
21093
  4408 MaxFocalLength int16u
20468
21094
  4412 SonyISO int16u
21095
+ 6444 AspectRatio int8u
20469
21096
 
20470
21097
  =head3 Sony Tag2010g Tags
20471
21098
 
@@ -20504,6 +21131,7 @@ ILCE-7/7R/7S/7M2/5000/5100/6000/QX1, ILCA-68/77M2.
20504
21131
  6338 LensType int16u
20505
21132
  6340 DistortionCorrParamsPresent int8u
20506
21133
  6341 DistortionCorrParamsNumber int8u
21134
+ 6488 AspectRatio int8u
20507
21135
 
20508
21136
  =head3 Sony Tag2010h Tags
20509
21137
 
@@ -20543,6 +21171,7 @@ ILCE-6300/6500/7RM2/7SM2, ILCA-99M2.
20543
21171
  6386 LensType int16u
20544
21172
  6388 DistortionCorrParamsPresent int8u
20545
21173
  6389 DistortionCorrParamsNumber int8u
21174
+ 6444 AspectRatio int8u
20546
21175
 
20547
21176
  =head3 Sony Tag2010i Tags
20548
21177
 
@@ -20581,6 +21210,7 @@ RX100M5A/RX100M7/HX99.
20581
21210
  6134 LensType int16u
20582
21211
  6136 DistortionCorrParamsPresent int8u
20583
21212
  6137 DistortionCorrParamsNumber int8u
21213
+ 6284 AspectRatio int8u
20584
21214
 
20585
21215
  =head3 Sony MeterInfo9 Tags
20586
21216
 
@@ -20768,6 +21398,18 @@ Valid from July 2020 for ILCE-1/7SM3, ILME-FX3.
20768
21398
  136 InternalSerialNumber int8u[6]~
20769
21399
  138 InternalSerialNumber int8u[6]~
20770
21400
 
21401
+ =head3 Sony Tag9050d Tags
21402
+
21403
+ Valid for ILCE-6700/ZV-E1.
21404
+
21405
+ Index1 Tag Name Writable
21406
+ ------ -------- --------
21407
+ 10 ShutterCount int32u
21408
+ 26 SonyExposureTime int16u
21409
+ 28 SonyFNumber int16u
21410
+ 31 ReleaseMode2 int8u
21411
+ 56 InternalSerialNumber int8u[6]~
21412
+
20771
21413
  =head3 Sony Tag9400a Tags
20772
21414
 
20773
21415
  Valid for many DSC, NEX and SLT models
@@ -20822,16 +21464,21 @@ WX350/WX500, ILCE-1/7/7C/7R/7S/7M2/7M3/7RM2/7RM3/7RM4/7SM2/7SM3/9/9M2/5000/
20822
21464
  42 Quality2 int8u
20823
21465
  71 SonyImageHeight int16u~
20824
21466
  83 ModelReleaseYear int8u~
21467
+ 307 ShutterType int8u
21468
+ 313 ShutterType int8u
21469
+ 319 ShutterType int8u
20825
21470
 
20826
21471
  =head3 Sony Tag9401 Tags
20827
21472
 
20828
21473
  Index1 Tag Name Writable
20829
21474
  ------ -------- --------
21475
+ 994 ISOInfo Sony ISOInfo
20830
21476
  1102 ISOInfo Sony ISOInfo
20831
21477
  1176 ISOInfo Sony ISOInfo
20832
21478
  1181 ISOInfo Sony ISOInfo
20833
21479
  1185 ISOInfo Sony ISOInfo
20834
21480
  1186 ISOInfo Sony ISOInfo
21481
+ 1210 ISOInfo Sony ISOInfo
20835
21482
  1437 ISOInfo Sony ISOInfo
20836
21483
  1588 ISOInfo Sony ISOInfo
20837
21484
  1590 ISOInfo Sony ISOInfo
@@ -20956,6 +21603,7 @@ ILCE-7/7M2/7M3/7R/7RM2/7RM3/7RM4/7S/7SM2/9/9M2/5000/5100/6000/6100/6300/
20956
21603
  Index1 Tag Name Writable
20957
21604
  ------ -------- --------
20958
21605
  5 BatteryTemperature int8u
21606
+ BatteryLevel int8u
20959
21607
  6 BatteryLevelGrip1 int8u
20960
21608
  7 BatteryLevel int8u
20961
21609
  8 BatteryLevelGrip2 int8u
@@ -21160,7 +21808,7 @@ E-mount models.
21160
21808
 
21161
21809
  =head3 Sony Tag9416 Tags
21162
21810
 
21163
- Valid for the ILCE-1/7M4/7RM5/7SM3, ILME-FX3.
21811
+ Valid for the ILCE-1/6700/7M4/7RM5/7SM3, ILME-FX3/FX30, ZV-E1.
21164
21812
 
21165
21813
  Index1 Tag Name Writable
21166
21814
  ------ -------- --------
@@ -21185,7 +21833,10 @@ Valid for the ILCE-1/7M4/7RM5/7SM3, ILME-FX3.
21185
21833
  117 MaxFocalLength no
21186
21834
  2191 VignettingCorrParams no
21187
21835
  2193 VignettingCorrParams no
21188
- 2203 VignettingCorrParams no
21836
+ 2205 VignettingCorrParams no
21837
+ 2229 APS-CSizeCapture no
21838
+ 2231 APS-CSizeCapture no
21839
+ 2277 APS-CSizeCapture no
21189
21840
  2324 ChromaticAberrationCorrParams no
21190
21841
  2326 ChromaticAberrationCorrParams no
21191
21842
  2373 ChromaticAberrationCorrParams no
@@ -22247,6 +22898,10 @@ UserDefined properties.
22247
22898
  0x0013 SharedDoc no
22248
22899
  0x0016 HyperlinksChanged no
22249
22900
  0x0017 AppVersion no
22901
+ 0x001a ContentType no
22902
+ 0x001b ContentStatus no
22903
+ 0x001c Language no
22904
+ 0x001d DocVersion no
22250
22905
  '_PID_HLINKS' Hyperlinks no
22251
22906
  '_PID_LINKBASE' HyperlinkBase no
22252
22907
 
@@ -24100,7 +24755,10 @@ chunk.
24100
24755
 
24101
24756
  The tags below are found in JPEG 2000 images and the JUMBF metadata in JPEG
24102
24757
  images, but not all of these are extracted. Note that ExifTool currently
24103
- writes only EXIF, IPTC and XMP tags in Jpeg2000 images.
24758
+ writes only EXIF, IPTC and XMP tags in Jpeg2000 images, and EXIF and XMP in
24759
+ JXL images. ExifTool will read/write Brotli-compressed EXIF and XMP in JXL
24760
+ images, but the API Compress option must be set to create new EXIF and XMP
24761
+ in compressed format.
24104
24762
 
24105
24763
  Tag ID Tag Name Writable
24106
24764
  ------ -------- --------
@@ -24110,6 +24768,9 @@ writes only EXIF, IPTC and XMP tags in Jpeg2000 images.
24110
24768
  'bfil' BinaryFilter no
24111
24769
  'bidb' BinaryData no
24112
24770
  'bpcc' BitsPerComponent no
24771
+ 'brob' BrotliXMP XMP
24772
+ BrotliEXIF EXIF
24773
+ BrotliJUMB Jpeg2000
24113
24774
  'c2sh' C2PASaltHash no
24114
24775
  'cbor' CBORData CBOR
24115
24776
  'cdef' ComponentDefinition no
@@ -24128,6 +24789,7 @@ writes only EXIF, IPTC and XMP tags in Jpeg2000 images.
24128
24789
  'ftbl' FragmentTable no
24129
24790
  'ftyp' FileType Jpeg2000 FileType
24130
24791
  'gtso' GraphicsTechnologyStandardOutput no
24792
+ 'hrgm' GainMapImage no
24131
24793
  'ihdr' ImageHeader Jpeg2000 ImageHeader
24132
24794
  'inst' InstructionSet no
24133
24795
  'jP ' JP2Signature no
@@ -24141,6 +24803,7 @@ writes only EXIF, IPTC and XMP tags in Jpeg2000 images.
24141
24803
  'jumb' JUMBFBox Jpeg2000
24142
24804
  'jumd' JUMBFDescr Jpeg2000 JUMD
24143
24805
  'jxlc' JXLCodestream no
24806
+ 'jxlp' PartialJXLCodestream no
24144
24807
  'lbl ' Label no
24145
24808
  'mdat' MediaData no
24146
24809
  'mp7b' MPEG7Binary no
@@ -26021,6 +26684,18 @@ Graphics) images. See L<http://bellard.org/bpg/> for the specification.
26021
26684
  0x0004 ThumbnailBPG no
26022
26685
  0x0005 AnimationControl? no
26023
26686
 
26687
+ =head2 WPG Tags
26688
+
26689
+ Tags extracted from WordPerfect Graphics (WPG) images.
26690
+
26691
+ Tag Name Writable
26692
+ -------- --------
26693
+ ImageHeightInches no
26694
+ ImageWidthInches no
26695
+ Records no+
26696
+ RecordsV2 no+
26697
+ WPGVersion no
26698
+
26024
26699
  =head2 ICO Tags
26025
26700
 
26026
26701
  Information extracted from Windows ICO (icon) and CUR (cursor) files.
@@ -27198,10 +27873,10 @@ number of available PDF tags. See
27198
27873
  L<http://www.adobe.com/devnet/pdf/pdf_reference.html> for the official PDF
27199
27874
  specification.
27200
27875
 
27201
- ExifTool supports reading and writing PDF documents up to version 1.7
27202
- extension level 3, including support for RC4, AES-128 and AES-256
27203
- encryption. A Password option is provided to allow processing of
27204
- password-protected PDF files.
27876
+ ExifTool supports reading and writing PDF documents up to version 2.0,
27877
+ including support for RC4, AES-128 and AES-256 encryption. A
27878
+ Password option is provided to allow processing
27879
+ of password-protected PDF files.
27205
27880
 
27206
27881
  ExifTool may be used to write native PDF and XMP metadata to PDF files. It
27207
27882
  uses an incremental update technique that has the advantages of being both
@@ -28191,6 +28866,7 @@ changed via the config file.
28191
28866
  'com.android.version' AndroidVersion yes
28192
28867
  'com.apple.photos.captureMode' CaptureMode yes
28193
28868
  'comment' Comment yes
28869
+ 'content.identifier' ContentIdentifier yes
28194
28870
  'copyright' Copyright yes
28195
28871
  'creationdate' CreationDate yes
28196
28872
  'description' Description yes
@@ -28402,9 +29078,10 @@ QuickTimeHandler option may be set to 0 to avoid this.
28402
29078
  'akID' AppleStoreAccountType int8s
28403
29079
  'albm' Album string/
28404
29080
  'apID' AppleStoreAccount string
28405
- 'atID' AlbumTitleID int32s
29081
+ 'atID' ArtistID int32s
28406
29082
  'auth' Author string
28407
29083
  'catg' Category string
29084
+ 'cmID' ComposerID string
28408
29085
  'cnID' AppleStoreCatalogID int32s
28409
29086
  'covr' CoverArt string
28410
29087
  'cpil' Compilation int8s
@@ -28429,7 +29106,7 @@ QuickTimeHandler option may be set to 0 to avoid this.
28429
29106
  'pcst' Podcast int8s
28430
29107
  'perf' Performer string
28431
29108
  'pgap' PlayGap int8s
28432
- 'plID' PlayListID int32s[2]
29109
+ 'plID' AlbumID int32s[2]
28433
29110
  'prID' ProductID string
28434
29111
  'purd' PurchaseDate string
28435
29112
  'purl' PodcastURL string
@@ -28572,6 +29249,7 @@ and are not currently writable.
28572
29249
  'auxC' AuxiliaryImageType no
28573
29250
  'av1C' AV1Configuration QuickTime AV1Config
28574
29251
  'clap' CleanAperture no
29252
+ 'clli' ContentLightLevel QuickTime ContentLightLevel
28575
29253
  'colr' ICC_Profile ICC_Profile
28576
29254
  ColorRepresentation QuickTime ColorRep
28577
29255
  'hvcC' HEVCConfiguration QuickTime HEVCConfig
@@ -28595,6 +29273,13 @@ and are not currently writable.
28595
29273
  2.4 ChromaSamplePosition no
28596
29274
  3 InitialDelaySamples? no
28597
29275
 
29276
+ =head3 QuickTime ContentLightLevel Tags
29277
+
29278
+ Index2 Tag Name Writable
29279
+ ------ -------- --------
29280
+ 0 MaxContentLightLevel no
29281
+ 1 MaxPicAverageLightLevel no
29282
+
28598
29283
  =head3 QuickTime ColorRep Tags
28599
29284
 
28600
29285
  Index1 Tag Name Writable
@@ -28830,12 +29515,27 @@ atoms.
28830
29515
  24 AudioChannels no
28831
29516
  26 AudioBitsPerSample no
28832
29517
  32 AudioSampleRate no
29518
+ 'SA3D' SpatialAudio QuickTime SpatialAudio
28833
29519
  'chan' AudioChannelLayout QuickTime ChannelLayout
28834
29520
  'damr' DecodeConfig QuickTime DecodeConfig
28835
29521
  'pinf' PurchaseInfo QuickTime ProtectionInfo
28836
29522
  'sinf' ProtectionInfo QuickTime ProtectionInfo
28837
29523
  'wave' Wave QuickTime Wave
28838
29524
 
29525
+ =head3 QuickTime SpatialAudio Tags
29526
+
29527
+ Spatial Audio tags.
29528
+
29529
+ Index1 Tag Name Writable
29530
+ ------ -------- --------
29531
+ 0 SpatialAudioVersion no
29532
+ 1 AmbisonicType no
29533
+ 2 AmbisonicOrder no
29534
+ 6 AmbisonicChannelOrdering no
29535
+ 7 AmbisonicNormalization no
29536
+ 8 AmbisonicChannels no
29537
+ 12 AmbisonicChannelMap no
29538
+
28839
29539
  =head3 QuickTime ChannelLayout Tags
28840
29540
 
28841
29541
  Audio channel layout.
@@ -29591,6 +30291,7 @@ metadata to WEBP images, but can't yet write to other RIFF-based formats.
29591
30291
  'fmt ' AudioFormat RIFF AudioFormat
29592
30292
  'gps0' GPSTrack QuickTime Stream
29593
30293
  'gsen' GSensor QuickTime Stream
30294
+ 'guan' Guano no
29594
30295
  'iXML' IXML XMP XML
29595
30296
  'id3 ' ID3 ID3
29596
30297
  'inst' Instrument RIFF Instrument
@@ -31113,6 +31814,7 @@ L<https://www.matroska.org/technical/tagging.html>).
31113
31814
  'SCREENPLAY_BY' ScreenplayBy no
31114
31815
  'SORT_WITH' SortWith no
31115
31816
  'SOUND_ENGINEER' SoundEngineer no
31817
+ 'SPHERICAL-VIDEO' SphericalVideoXML XMP
31116
31818
  'SUBJECT' Subject no
31117
31819
  'SUBTITLE' Subtitle no
31118
31820
  'SUMMARY' Summary no
@@ -31126,6 +31828,7 @@ L<https://www.matroska.org/technical/tagging.html>).
31126
31828
  'TVDB' TVDB no
31127
31829
  'URL' URL no
31128
31830
  'WRITTEN_BY' WrittenBy no
31831
+ 'spherical-video' SphericalVideoXML XMP
31129
31832
 
31130
31833
  =head2 MOI Tags
31131
31834
 
@@ -37722,6 +38425,19 @@ These tags are extracted from RAR archive files.
37722
38425
  18 PackingMethod no
37723
38426
  25 ArchivedFileName no
37724
38427
 
38428
+ =head3 ZIP RAR5 Tags
38429
+
38430
+ These tags are extracted from RAR v5 and 7z archive files.
38431
+
38432
+ Tag Name Writable
38433
+ -------- --------
38434
+ ArchivedFileName no
38435
+ CompressedSize no
38436
+ FileVersion no
38437
+ ModifyDate no
38438
+ OperatingSystem no
38439
+ UncompressedSize no
38440
+
37725
38441
  =head2 RTF Tags
37726
38442
 
37727
38443
  This table lists standard tags of the RTF information group, but ExifTool
@@ -38138,7 +38854,7 @@ FileName.
38138
38854
  ICC_Profile ICC_Profile yes!
38139
38855
  ID3Size File no
38140
38856
  IPTC IPTC yes!
38141
- ImageDataMD5 File no
38857
+ ImageDataHash File no
38142
38858
  ImageHeight File no
38143
38859
  ImageWidth File no
38144
38860
  JPEGDigest File no
@@ -38598,6 +39314,7 @@ for more details.
38598
39314
  IFD0:XPAuthor
38599
39315
  IFD0:XPKeywords
38600
39316
  IFD0:XPSubject
39317
+ ImageDataMD5 ImageDataHash yes
38601
39318
  LargeTags CanonVRD yes
38602
39319
  DLOData
38603
39320
  EXIF