exiftool-vendored.pl 12.62.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 (54) hide show
  1. package/bin/Changes +76 -1
  2. package/bin/MANIFEST +4 -0
  3. package/bin/META.json +5 -3
  4. package/bin/META.yml +5 -3
  5. package/bin/Makefile.PL +7 -1
  6. package/bin/README +50 -46
  7. package/bin/config_files/guano.config +161 -0
  8. package/bin/exiftool +108 -75
  9. package/bin/lib/Image/ExifTool/7Z.pm +793 -0
  10. package/bin/lib/Image/ExifTool/Apple.pm +14 -7
  11. package/bin/lib/Image/ExifTool/BigTIFF.pm +8 -1
  12. package/bin/lib/Image/ExifTool/Canon.pm +4 -1
  13. package/bin/lib/Image/ExifTool/CanonRaw.pm +4 -4
  14. package/bin/lib/Image/ExifTool/CanonVRD.pm +4 -1
  15. package/bin/lib/Image/ExifTool/Exif.pm +31 -14
  16. package/bin/lib/Image/ExifTool/FlashPix.pm +8 -2
  17. package/bin/lib/Image/ExifTool/FujiFilm.pm +3 -3
  18. package/bin/lib/Image/ExifTool/GPS.pm +5 -2
  19. package/bin/lib/Image/ExifTool/Geotag.pm +4 -1
  20. package/bin/lib/Image/ExifTool/Jpeg2000.pm +226 -28
  21. package/bin/lib/Image/ExifTool/Lang/fr.pm +1467 -202
  22. package/bin/lib/Image/ExifTool/MPF.pm +2 -1
  23. package/bin/lib/Image/ExifTool/Matroska.pm +16 -1
  24. package/bin/lib/Image/ExifTool/MinoltaRaw.pm +2 -2
  25. package/bin/lib/Image/ExifTool/Nikon.pm +939 -31
  26. package/bin/lib/Image/ExifTool/NikonCustom.pm +874 -63
  27. package/bin/lib/Image/ExifTool/PDF.pm +23 -5
  28. package/bin/lib/Image/ExifTool/PLIST.pm +8 -1
  29. package/bin/lib/Image/ExifTool/PNG.pm +6 -6
  30. package/bin/lib/Image/ExifTool/PhaseOne.pm +5 -5
  31. package/bin/lib/Image/ExifTool/QuickTime.pm +91 -30
  32. package/bin/lib/Image/ExifTool/QuickTimeStream.pl +20 -19
  33. package/bin/lib/Image/ExifTool/README +2 -2
  34. package/bin/lib/Image/ExifTool/RIFF.pm +11 -9
  35. package/bin/lib/Image/ExifTool/Samsung.pm +227 -227
  36. package/bin/lib/Image/ExifTool/Shortcuts.pm +2 -1
  37. package/bin/lib/Image/ExifTool/SigmaRaw.pm +4 -4
  38. package/bin/lib/Image/ExifTool/Sony.pm +229 -30
  39. package/bin/lib/Image/ExifTool/TagLookup.pm +4757 -4633
  40. package/bin/lib/Image/ExifTool/TagNames.pod +706 -18
  41. package/bin/lib/Image/ExifTool/Validate.pm +17 -1
  42. package/bin/lib/Image/ExifTool/WriteExif.pl +9 -7
  43. package/bin/lib/Image/ExifTool/WriteQuickTime.pl +21 -9
  44. package/bin/lib/Image/ExifTool/WriteXMP.pl +2 -2
  45. package/bin/lib/Image/ExifTool/Writer.pl +35 -12
  46. package/bin/lib/Image/ExifTool/XMP.pm +14 -2
  47. package/bin/lib/Image/ExifTool/XMP2.pl +32 -0
  48. package/bin/lib/Image/ExifTool/XMPStruct.pl +96 -28
  49. package/bin/lib/Image/ExifTool/ZIP.pm +5 -5
  50. package/bin/lib/Image/ExifTool.pm +176 -128
  51. package/bin/lib/Image/ExifTool.pod +109 -53
  52. package/bin/perl-Image-ExifTool.spec +44 -44
  53. package/bin/pp_build_exe.args +7 -4
  54. 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 26407 tags, with 16869 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
@@ -4047,6 +4056,8 @@ These tags belong to the ExifTool XMP-et family 1 group.
4047
4056
 
4048
4057
  Tag Name Writable
4049
4058
  -------- --------
4059
+ OriginalImageHash string
4060
+ OriginalImageHashType string
4050
4061
  OriginalImageMD5 string
4051
4062
 
4052
4063
  =head3 XMP exif Tags
@@ -4498,6 +4509,24 @@ These tags belong to the ExifTool XMP-hdr family 1 group.
4498
4509
  CCVWhiteXY string
4499
4510
  SceneReferred boolean
4500
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
+
4501
4530
  =head3 XMP ics Tags
4502
4531
 
4503
4532
  Tags used by IDimager. Nested TagStructure structures are unrolled to an
@@ -5127,6 +5156,19 @@ These tags belong to the ExifTool XMP-mediapro family 1 group.
5127
5156
  Status string
5128
5157
  UserFields string+
5129
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
+
5130
5172
  =head3 XMP pdf Tags
5131
5173
 
5132
5174
  Adobe PDF namespace tags. The official XMP specification defines only
@@ -7145,18 +7187,19 @@ Tags extracted from the maker notes of iPhone images.
7145
7187
  0x000b BurstUUID string
7146
7188
  0x000c FocusDistanceRange rational64s[2]
7147
7189
  0x000f OISMode int32s
7148
- 0x0011 MediaGroupUUID string
7190
+ 0x0011 ContentIdentifier string
7149
7191
  0x0014 ImageCaptureType? int32s
7150
7192
  0x0015 ImageUniqueID string
7151
7193
  0x0017 LivePhotoVideoIndex yes
7152
7194
  0x0019 ImageProcessingFlags? int32s
7153
7195
  0x001a QualityHint? string
7154
7196
  0x001d LuminanceNoiseAmplitude rational64s
7155
- 0x0020 ImageCaptureReqestID? string
7197
+ 0x0020 ImageCaptureRequestID? string
7156
7198
  0x0021 HDRHeadroom rational64s
7157
7199
  0x0025 SceneFlags? int32s
7158
7200
  0x0026 SignalToNoiseRatioType? int32s
7159
7201
  0x0027 SignalToNoiseRatio rational64s
7202
+ 0x002b PhotoIdentifier string
7160
7203
  0x002f FocusPosition int32s
7161
7204
  0x0030 HDRGain rational64s
7162
7205
  0x0038 AFMeasuredDepth int32s
@@ -13766,6 +13809,7 @@ DiMAGE X and Xt.
13766
13809
  ShotInfoD6 Nikon ShotInfoD6
13767
13810
  ShotInfoD610 Nikon ShotInfoD610
13768
13811
  ShotInfoZ7II Nikon ShotInfoZ7II
13812
+ ShotInfoZ8 Nikon ShotInfoZ8
13769
13813
  ShotInfoZ9 Nikon ShotInfoZ9
13770
13814
  ShotInfo02xx Nikon ShotInfo
13771
13815
  ShotInfoUnknown Nikon ShotInfo
@@ -14123,7 +14167,7 @@ Tags written by some Nikon GPS-equipped cameras like the AW100.
14123
14167
 
14124
14168
  Index1 Tag Name Writable
14125
14169
  ------ -------- --------
14126
- 0 FirmwareVersion no
14170
+ 0 FirmwareVersion51 no
14127
14171
  10 NEFCompression int16u[0.5]
14128
14172
 
14129
14173
  =head3 Nikon MakerNotes0x56 Tags
@@ -14663,18 +14707,17 @@ These tags are used by the Z5, Z6, Z7, Z6II, Z7II, Z50 and Zfc.
14663
14707
  591 MovieVibrationReductionSameAsPhoto? int8u
14664
14708
  858 HDMIOutputN-Log? int8u
14665
14709
 
14666
- =head3 Nikon ShotInfoZ9 Tags
14710
+ =head3 Nikon ShotInfoZ8 Tags
14667
14711
 
14668
- 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.
14669
14713
 
14670
14714
  Index Tag Name Writable
14671
14715
  ----- -------- --------
14672
14716
  0 ShotInfoVersion no
14673
14717
  4 FirmwareVersion no
14674
14718
  48 SequenceOffset Nikon SeqInfoZ9
14675
- 88 Offset13 Nikon Offset13InfoZ9
14676
14719
  132 OrientOffset Nikon OrientationInfo
14677
- 140 MenuOffset Nikon MenuInfoZ9
14720
+ 140 MenuOffset Nikon MenuInfoZ8
14678
14721
 
14679
14722
  =head3 Nikon SeqInfoZ9 Tags
14680
14723
 
@@ -14683,6 +14726,148 @@ These tags are extracted from encrypted data in images from the Z9.
14683
14726
  32 FocusShiftShooting int8u~
14684
14727
  40 IntervalShooting int16u~
14685
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
+
14686
14871
  =head3 Nikon Offset13InfoZ9 Tags
14687
14872
 
14688
14873
  Index1 Tag Name Writable
@@ -14692,13 +14877,31 @@ These tags are extracted from encrypted data in images from the Z9.
14692
14877
  3050 AFAreaInitialWidth no
14693
14878
  3051 AFAreaInitialHeight no
14694
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
+
14695
14896
  =head3 Nikon MenuInfoZ9 Tags
14696
14897
 
14697
14898
  Index1 Tag Name Writable
14698
14899
  ------ -------- --------
14699
14900
  16 MenuSettingsOffsetZ9 Nikon MenuSettingsZ9
14700
14901
  MenuSettingsOffsetZ9v3 -
14701
- Nikon MenuSettingsZ9v3
14902
+ MenuSettingsOffsetZ9v4 Nikon MenuSettingsZ9v3
14903
+ -
14904
+ Nikon MenuSettingsZ9v4
14702
14905
 
14703
14906
  =head3 Nikon MenuSettingsZ9 Tags
14704
14907
 
@@ -14858,6 +15061,146 @@ These tags are used by the Z9 firmware 3.00.
14858
15061
  1810 PreReleaseBurstLength int8u
14859
15062
  1812 PostReleaseBurstLength int8u
14860
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
+
14861
15204
  =head3 Nikon ShotInfo Tags
14862
15205
 
14863
15206
  This information is encrypted for ShotInfoVersion 02xx, and some tags are
@@ -15025,6 +15368,7 @@ Tags found in the encrypted LensData from cameras such as the Z6 and Z7.
15025
15368
  76 FocusDistanceRangeWidth? int8u
15026
15369
  78 FocusDistance int16u~
15027
15370
  86 LensDriveEnd? int8u
15371
+ 88 FocusStepsFromInfinity? int8u
15028
15372
  90 LensPositionAbsolute int32s
15029
15373
 
15030
15374
  =head3 Nikon LensDataUnknown Tags
@@ -15237,6 +15581,7 @@ These tags are used by the D4S, D750, D810, D5500, D7200 (FlashInfoVersion
15237
15581
  ------ -------- --------
15238
15582
  0 AFInfo2Version no
15239
15583
  5 AFAreaMode int8u
15584
+ 10 AFPointsUsed undef[51]
15240
15585
  62 AFImageWidth int16u
15241
15586
  64 AFImageHeight int16u
15242
15587
  66 AFAreaXPosition int16u
@@ -16602,6 +16947,134 @@ Custom settings for the D610.
16602
16947
  21.2 ShootingInfoMonitorOffTime int8u & 0x1c
16603
16948
  35.1 PlaybackMonitorOffTime int8u & 0xe0
16604
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
+
16605
17078
  =head3 NikonCustom SettingsZ9 Tags
16606
17079
 
16607
17080
  Custom settings for the Z9.
@@ -16676,8 +17149,8 @@ Custom settings for the Z9.
16676
17149
  195 MovieFunc1Button int8u
16677
17150
  199 MovieFunc2Button int8u
16678
17151
  203 MovieAF-OnButton int8u
17152
+ 207 MovieMultiSelector? int8u
16679
17153
  215 MovieLensControlRing int8u
16680
- 217 MovieMultiSelector? int8u
16681
17154
  221 MovieAFSpeed int8u
16682
17155
  223 MovieAFSpeedApply int8u
16683
17156
  225 MovieAFTrackingSensitivity int8u
@@ -16749,6 +17222,153 @@ Custom settings for the Z9.
16749
17222
  601 MovieApertureLock? int8u
16750
17223
  607 FlickAdvanceDirection? int8u
16751
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
+
16752
17372
  =head2 NikonCapture Tags
16753
17373
 
16754
17374
  This information is written by the Nikon Capture software in tag 0x0e01 of
@@ -19673,6 +20293,7 @@ MakerNotes.
19673
20293
  0x9050 Tag9050a Sony Tag9050a
19674
20294
  Tag9050b Sony Tag9050b
19675
20295
  Tag9050c Sony Tag9050c
20296
+ Tag9050d Sony Tag9050d
19676
20297
  0x9400 Tag9400a Sony Tag9400a
19677
20298
  Tag9400b Sony Tag9400b
19678
20299
  Tag9400c Sony Tag9400c
@@ -20439,6 +21060,8 @@ WX300, but not for panorama images.
20439
21060
  6294 LensType int16u
20440
21061
  6296 DistortionCorrParamsPresent int8u
20441
21062
  6297 DistortionCorrParamsNumber int8u
21063
+ 6444 AspectRatio int8u
21064
+ 6792 AspectRatio int8u
20442
21065
 
20443
21066
  =head3 Sony Tag2010f Tags
20444
21067
 
@@ -20469,6 +21092,7 @@ Valid for DSC-RX100M2, DSC-QX10/QX100.
20469
21092
  4406 MinFocalLength int16u
20470
21093
  4408 MaxFocalLength int16u
20471
21094
  4412 SonyISO int16u
21095
+ 6444 AspectRatio int8u
20472
21096
 
20473
21097
  =head3 Sony Tag2010g Tags
20474
21098
 
@@ -20507,6 +21131,7 @@ ILCE-7/7R/7S/7M2/5000/5100/6000/QX1, ILCA-68/77M2.
20507
21131
  6338 LensType int16u
20508
21132
  6340 DistortionCorrParamsPresent int8u
20509
21133
  6341 DistortionCorrParamsNumber int8u
21134
+ 6488 AspectRatio int8u
20510
21135
 
20511
21136
  =head3 Sony Tag2010h Tags
20512
21137
 
@@ -20546,6 +21171,7 @@ ILCE-6300/6500/7RM2/7SM2, ILCA-99M2.
20546
21171
  6386 LensType int16u
20547
21172
  6388 DistortionCorrParamsPresent int8u
20548
21173
  6389 DistortionCorrParamsNumber int8u
21174
+ 6444 AspectRatio int8u
20549
21175
 
20550
21176
  =head3 Sony Tag2010i Tags
20551
21177
 
@@ -20584,6 +21210,7 @@ RX100M5A/RX100M7/HX99.
20584
21210
  6134 LensType int16u
20585
21211
  6136 DistortionCorrParamsPresent int8u
20586
21212
  6137 DistortionCorrParamsNumber int8u
21213
+ 6284 AspectRatio int8u
20587
21214
 
20588
21215
  =head3 Sony MeterInfo9 Tags
20589
21216
 
@@ -20771,6 +21398,18 @@ Valid from July 2020 for ILCE-1/7SM3, ILME-FX3.
20771
21398
  136 InternalSerialNumber int8u[6]~
20772
21399
  138 InternalSerialNumber int8u[6]~
20773
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
+
20774
21413
  =head3 Sony Tag9400a Tags
20775
21414
 
20776
21415
  Valid for many DSC, NEX and SLT models
@@ -20825,6 +21464,9 @@ WX350/WX500, ILCE-1/7/7C/7R/7S/7M2/7M3/7RM2/7RM3/7RM4/7SM2/7SM3/9/9M2/5000/
20825
21464
  42 Quality2 int8u
20826
21465
  71 SonyImageHeight int16u~
20827
21466
  83 ModelReleaseYear int8u~
21467
+ 307 ShutterType int8u
21468
+ 313 ShutterType int8u
21469
+ 319 ShutterType int8u
20828
21470
 
20829
21471
  =head3 Sony Tag9401 Tags
20830
21472
 
@@ -20836,6 +21478,7 @@ WX350/WX500, ILCE-1/7/7C/7R/7S/7M2/7M3/7RM2/7RM3/7RM4/7SM2/7SM3/9/9M2/5000/
20836
21478
  1181 ISOInfo Sony ISOInfo
20837
21479
  1185 ISOInfo Sony ISOInfo
20838
21480
  1186 ISOInfo Sony ISOInfo
21481
+ 1210 ISOInfo Sony ISOInfo
20839
21482
  1437 ISOInfo Sony ISOInfo
20840
21483
  1588 ISOInfo Sony ISOInfo
20841
21484
  1590 ISOInfo Sony ISOInfo
@@ -20960,6 +21603,7 @@ ILCE-7/7M2/7M3/7R/7RM2/7RM3/7RM4/7S/7SM2/9/9M2/5000/5100/6000/6100/6300/
20960
21603
  Index1 Tag Name Writable
20961
21604
  ------ -------- --------
20962
21605
  5 BatteryTemperature int8u
21606
+ BatteryLevel int8u
20963
21607
  6 BatteryLevelGrip1 int8u
20964
21608
  7 BatteryLevel int8u
20965
21609
  8 BatteryLevelGrip2 int8u
@@ -21164,7 +21808,7 @@ E-mount models.
21164
21808
 
21165
21809
  =head3 Sony Tag9416 Tags
21166
21810
 
21167
- 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.
21168
21812
 
21169
21813
  Index1 Tag Name Writable
21170
21814
  ------ -------- --------
@@ -21189,7 +21833,10 @@ Valid for the ILCE-1/7M4/7RM5/7SM3, ILME-FX3.
21189
21833
  117 MaxFocalLength no
21190
21834
  2191 VignettingCorrParams no
21191
21835
  2193 VignettingCorrParams no
21192
- 2203 VignettingCorrParams no
21836
+ 2205 VignettingCorrParams no
21837
+ 2229 APS-CSizeCapture no
21838
+ 2231 APS-CSizeCapture no
21839
+ 2277 APS-CSizeCapture no
21193
21840
  2324 ChromaticAberrationCorrParams no
21194
21841
  2326 ChromaticAberrationCorrParams no
21195
21842
  2373 ChromaticAberrationCorrParams no
@@ -22251,6 +22898,10 @@ UserDefined properties.
22251
22898
  0x0013 SharedDoc no
22252
22899
  0x0016 HyperlinksChanged no
22253
22900
  0x0017 AppVersion no
22901
+ 0x001a ContentType no
22902
+ 0x001b ContentStatus no
22903
+ 0x001c Language no
22904
+ 0x001d DocVersion no
22254
22905
  '_PID_HLINKS' Hyperlinks no
22255
22906
  '_PID_LINKBASE' HyperlinkBase no
22256
22907
 
@@ -24104,7 +24755,10 @@ chunk.
24104
24755
 
24105
24756
  The tags below are found in JPEG 2000 images and the JUMBF metadata in JPEG
24106
24757
  images, but not all of these are extracted. Note that ExifTool currently
24107
- 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.
24108
24762
 
24109
24763
  Tag ID Tag Name Writable
24110
24764
  ------ -------- --------
@@ -24114,6 +24768,9 @@ writes only EXIF, IPTC and XMP tags in Jpeg2000 images.
24114
24768
  'bfil' BinaryFilter no
24115
24769
  'bidb' BinaryData no
24116
24770
  'bpcc' BitsPerComponent no
24771
+ 'brob' BrotliXMP XMP
24772
+ BrotliEXIF EXIF
24773
+ BrotliJUMB Jpeg2000
24117
24774
  'c2sh' C2PASaltHash no
24118
24775
  'cbor' CBORData CBOR
24119
24776
  'cdef' ComponentDefinition no
@@ -24132,6 +24789,7 @@ writes only EXIF, IPTC and XMP tags in Jpeg2000 images.
24132
24789
  'ftbl' FragmentTable no
24133
24790
  'ftyp' FileType Jpeg2000 FileType
24134
24791
  'gtso' GraphicsTechnologyStandardOutput no
24792
+ 'hrgm' GainMapImage no
24135
24793
  'ihdr' ImageHeader Jpeg2000 ImageHeader
24136
24794
  'inst' InstructionSet no
24137
24795
  'jP ' JP2Signature no
@@ -24145,6 +24803,7 @@ writes only EXIF, IPTC and XMP tags in Jpeg2000 images.
24145
24803
  'jumb' JUMBFBox Jpeg2000
24146
24804
  'jumd' JUMBFDescr Jpeg2000 JUMD
24147
24805
  'jxlc' JXLCodestream no
24806
+ 'jxlp' PartialJXLCodestream no
24148
24807
  'lbl ' Label no
24149
24808
  'mdat' MediaData no
24150
24809
  'mp7b' MPEG7Binary no
@@ -28207,6 +28866,7 @@ changed via the config file.
28207
28866
  'com.android.version' AndroidVersion yes
28208
28867
  'com.apple.photos.captureMode' CaptureMode yes
28209
28868
  'comment' Comment yes
28869
+ 'content.identifier' ContentIdentifier yes
28210
28870
  'copyright' Copyright yes
28211
28871
  'creationdate' CreationDate yes
28212
28872
  'description' Description yes
@@ -28418,9 +29078,10 @@ QuickTimeHandler option may be set to 0 to avoid this.
28418
29078
  'akID' AppleStoreAccountType int8s
28419
29079
  'albm' Album string/
28420
29080
  'apID' AppleStoreAccount string
28421
- 'atID' AlbumTitleID int32s
29081
+ 'atID' ArtistID int32s
28422
29082
  'auth' Author string
28423
29083
  'catg' Category string
29084
+ 'cmID' ComposerID string
28424
29085
  'cnID' AppleStoreCatalogID int32s
28425
29086
  'covr' CoverArt string
28426
29087
  'cpil' Compilation int8s
@@ -28445,7 +29106,7 @@ QuickTimeHandler option may be set to 0 to avoid this.
28445
29106
  'pcst' Podcast int8s
28446
29107
  'perf' Performer string
28447
29108
  'pgap' PlayGap int8s
28448
- 'plID' PlayListID int32s[2]
29109
+ 'plID' AlbumID int32s[2]
28449
29110
  'prID' ProductID string
28450
29111
  'purd' PurchaseDate string
28451
29112
  'purl' PodcastURL string
@@ -28588,6 +29249,7 @@ and are not currently writable.
28588
29249
  'auxC' AuxiliaryImageType no
28589
29250
  'av1C' AV1Configuration QuickTime AV1Config
28590
29251
  'clap' CleanAperture no
29252
+ 'clli' ContentLightLevel QuickTime ContentLightLevel
28591
29253
  'colr' ICC_Profile ICC_Profile
28592
29254
  ColorRepresentation QuickTime ColorRep
28593
29255
  'hvcC' HEVCConfiguration QuickTime HEVCConfig
@@ -28611,6 +29273,13 @@ and are not currently writable.
28611
29273
  2.4 ChromaSamplePosition no
28612
29274
  3 InitialDelaySamples? no
28613
29275
 
29276
+ =head3 QuickTime ContentLightLevel Tags
29277
+
29278
+ Index2 Tag Name Writable
29279
+ ------ -------- --------
29280
+ 0 MaxContentLightLevel no
29281
+ 1 MaxPicAverageLightLevel no
29282
+
28614
29283
  =head3 QuickTime ColorRep Tags
28615
29284
 
28616
29285
  Index1 Tag Name Writable
@@ -28846,12 +29515,27 @@ atoms.
28846
29515
  24 AudioChannels no
28847
29516
  26 AudioBitsPerSample no
28848
29517
  32 AudioSampleRate no
29518
+ 'SA3D' SpatialAudio QuickTime SpatialAudio
28849
29519
  'chan' AudioChannelLayout QuickTime ChannelLayout
28850
29520
  'damr' DecodeConfig QuickTime DecodeConfig
28851
29521
  'pinf' PurchaseInfo QuickTime ProtectionInfo
28852
29522
  'sinf' ProtectionInfo QuickTime ProtectionInfo
28853
29523
  'wave' Wave QuickTime Wave
28854
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
+
28855
29539
  =head3 QuickTime ChannelLayout Tags
28856
29540
 
28857
29541
  Audio channel layout.
@@ -29607,6 +30291,7 @@ metadata to WEBP images, but can't yet write to other RIFF-based formats.
29607
30291
  'fmt ' AudioFormat RIFF AudioFormat
29608
30292
  'gps0' GPSTrack QuickTime Stream
29609
30293
  'gsen' GSensor QuickTime Stream
30294
+ 'guan' Guano no
29610
30295
  'iXML' IXML XMP XML
29611
30296
  'id3 ' ID3 ID3
29612
30297
  'inst' Instrument RIFF Instrument
@@ -31129,6 +31814,7 @@ L<https://www.matroska.org/technical/tagging.html>).
31129
31814
  'SCREENPLAY_BY' ScreenplayBy no
31130
31815
  'SORT_WITH' SortWith no
31131
31816
  'SOUND_ENGINEER' SoundEngineer no
31817
+ 'SPHERICAL-VIDEO' SphericalVideoXML XMP
31132
31818
  'SUBJECT' Subject no
31133
31819
  'SUBTITLE' Subtitle no
31134
31820
  'SUMMARY' Summary no
@@ -31142,6 +31828,7 @@ L<https://www.matroska.org/technical/tagging.html>).
31142
31828
  'TVDB' TVDB no
31143
31829
  'URL' URL no
31144
31830
  'WRITTEN_BY' WrittenBy no
31831
+ 'spherical-video' SphericalVideoXML XMP
31145
31832
 
31146
31833
  =head2 MOI Tags
31147
31834
 
@@ -37740,15 +38427,15 @@ These tags are extracted from RAR archive files.
37740
38427
 
37741
38428
  =head3 ZIP RAR5 Tags
37742
38429
 
37743
- These tags are extracted from RAR v5 archive files.
38430
+ These tags are extracted from RAR v5 and 7z archive files.
37744
38431
 
37745
38432
  Tag Name Writable
37746
38433
  -------- --------
37747
38434
  ArchivedFileName no
37748
38435
  CompressedSize no
38436
+ FileVersion no
37749
38437
  ModifyDate no
37750
38438
  OperatingSystem no
37751
- RARVersion no
37752
38439
  UncompressedSize no
37753
38440
 
37754
38441
  =head2 RTF Tags
@@ -38167,7 +38854,7 @@ FileName.
38167
38854
  ICC_Profile ICC_Profile yes!
38168
38855
  ID3Size File no
38169
38856
  IPTC IPTC yes!
38170
- ImageDataMD5 File no
38857
+ ImageDataHash File no
38171
38858
  ImageHeight File no
38172
38859
  ImageWidth File no
38173
38860
  JPEGDigest File no
@@ -38627,6 +39314,7 @@ for more details.
38627
39314
  IFD0:XPAuthor
38628
39315
  IFD0:XPKeywords
38629
39316
  IFD0:XPSubject
39317
+ ImageDataMD5 ImageDataHash yes
38630
39318
  LargeTags CanonVRD yes
38631
39319
  DLOData
38632
39320
  EXIF