exiftool-vendored.exe 12.69.0 → 12.72.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 (43) hide show
  1. package/bin/exiftool_files/Changes +78 -12
  2. package/bin/exiftool_files/README +10 -10
  3. package/bin/exiftool_files/exiftool.pl +32 -27
  4. package/bin/exiftool_files/lib/Image/ExifTool/AAC.pm +175 -0
  5. package/bin/exiftool_files/lib/Image/ExifTool/BuildTagLookup.pm +2 -1
  6. package/bin/exiftool_files/lib/Image/ExifTool/CBOR.pm +18 -2
  7. package/bin/exiftool_files/lib/Image/ExifTool/Canon.pm +82 -20
  8. package/bin/exiftool_files/lib/Image/ExifTool/DJI.pm +3 -2
  9. package/bin/exiftool_files/lib/Image/ExifTool/EXE.pm +54 -6
  10. package/bin/exiftool_files/lib/Image/ExifTool/Exif.pm +111 -11
  11. package/bin/exiftool_files/lib/Image/ExifTool/FujiFilm.pm +145 -20
  12. package/bin/exiftool_files/lib/Image/ExifTool/GIF.pm +5 -1
  13. package/bin/exiftool_files/lib/Image/ExifTool/GoPro.pm +16 -1
  14. package/bin/exiftool_files/lib/Image/ExifTool/ID3.pm +76 -10
  15. package/bin/exiftool_files/lib/Image/ExifTool/InDesign.pm +1 -1
  16. package/bin/exiftool_files/lib/Image/ExifTool/JPEG.pm +1 -1
  17. package/bin/exiftool_files/lib/Image/ExifTool/JSON.pm +4 -1
  18. package/bin/exiftool_files/lib/Image/ExifTool/Jpeg2000.pm +30 -15
  19. package/bin/exiftool_files/lib/Image/ExifTool/M2TS.pm +21 -16
  20. package/bin/exiftool_files/lib/Image/ExifTool/MakerNotes.pm +2 -2
  21. package/bin/exiftool_files/lib/Image/ExifTool/Nikon.pm +203 -102
  22. package/bin/exiftool_files/lib/Image/ExifTool/Olympus.pm +7 -1
  23. package/bin/exiftool_files/lib/Image/ExifTool/PNG.pm +8 -13
  24. package/bin/exiftool_files/lib/Image/ExifTool/Panasonic.pm +10 -1
  25. package/bin/exiftool_files/lib/Image/ExifTool/Pentax.pm +15 -6
  26. package/bin/exiftool_files/lib/Image/ExifTool/QuickTime.pm +59 -13
  27. package/bin/exiftool_files/lib/Image/ExifTool/QuickTimeStream.pl +59 -11
  28. package/bin/exiftool_files/lib/Image/ExifTool/README +7 -2
  29. package/bin/exiftool_files/lib/Image/ExifTool/RIFF.pm +53 -9
  30. package/bin/exiftool_files/lib/Image/ExifTool/Ricoh.pm +109 -1
  31. package/bin/exiftool_files/lib/Image/ExifTool/Samsung.pm +3 -2
  32. package/bin/exiftool_files/lib/Image/ExifTool/Sony.pm +177 -37
  33. package/bin/exiftool_files/lib/Image/ExifTool/TagLookup.pm +6961 -6856
  34. package/bin/exiftool_files/lib/Image/ExifTool/TagNames.pod +580 -344
  35. package/bin/exiftool_files/lib/Image/ExifTool/Text.pm +4 -5
  36. package/bin/exiftool_files/lib/Image/ExifTool/Validate.pm +6 -5
  37. package/bin/exiftool_files/lib/Image/ExifTool/WriteExif.pl +19 -4
  38. package/bin/exiftool_files/lib/Image/ExifTool/WriteQuickTime.pl +1 -0
  39. package/bin/exiftool_files/lib/Image/ExifTool/WriteRIFF.pl +9 -3
  40. package/bin/exiftool_files/lib/Image/ExifTool/Writer.pl +102 -50
  41. package/bin/exiftool_files/lib/Image/ExifTool.pm +74 -36
  42. package/bin/exiftool_files/lib/Image/ExifTool.pod +28 -17
  43. package/package.json +5 -4
@@ -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 27322 tags, with 17138 unique tag names.
15
+ They contain a total of 27451 tags, with 17222 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
@@ -63,7 +63,8 @@ writable directly, but is written automatically by ExifTool (often when a
63
63
  corresponding L<Composite|Image::ExifTool::TagNames/Composite Tags> or
64
64
  L<Extra|Image::ExifTool::TagNames/Extra Tags> tag is written). A colon
65
65
  (C<:>) indicates a I<Mandatory> tag which may be added automatically when
66
- writing. Normally MakerNotes tags may not be deleted individually, but a
66
+ writing (use the API NoMandatory option to avoid creating mandatory EXIF
67
+ tags). Normally MakerNotes tags may not be deleted individually, but a
67
68
  caret (C<^>) indicates a I<Deletable> MakerNotes tag.
68
69
 
69
70
  The HTML version of these tables also lists possible B<Values> for
@@ -482,6 +483,7 @@ for the official EXIF 2.32 specification.
482
483
  0x0214 ReferenceBlackWhite IFD0 rational64u[6]
483
484
  0x022f StripRowCounts - no
484
485
  0x02bc ApplicationNotes IFD0 XMP
486
+ 0x0303 RenderingIntent - no
485
487
  0x03e7 USPTOMiscellaneous - no
486
488
  0x1000 RelatedImageFileFormat InteropIFD string!
487
489
  0x1001 RelatedImageWidth InteropIFD int16u!
@@ -490,6 +492,72 @@ for the official EXIF 2.32 specification.
490
492
  0x4747 XP_DIP_XML - no
491
493
  0x4748 StitchInfo - Microsoft Stitch
492
494
  0x4749 RatingPercent IFD0 int16u/
495
+ 0x5001 ResolutionXUnit - no
496
+ 0x5002 ResolutionYUnit - no
497
+ 0x5003 ResolutionXLengthUnit - no
498
+ 0x5004 ResolutionYLengthUnit - no
499
+ 0x5005 PrintFlags - no
500
+ 0x5006 PrintFlagsVersion - no
501
+ 0x5007 PrintFlagsCrop - no
502
+ 0x5008 PrintFlagsBleedWidth - no
503
+ 0x5009 PrintFlagsBleedWidthScale - no
504
+ 0x500a HalftoneLPI - no
505
+ 0x500b HalftoneLPIUnit - no
506
+ 0x500c HalftoneDegree - no
507
+ 0x500d HalftoneShape - no
508
+ 0x500e HalftoneMisc - no
509
+ 0x500f HalftoneScreen - no
510
+ 0x5010 JPEGQuality - no
511
+ 0x5011 GridSize - no
512
+ 0x5012 ThumbnailFormat - no
513
+ 0x5013 ThumbnailWidth - no
514
+ 0x5014 ThumbnailHeight - no
515
+ 0x5015 ThumbnailColorDepth - no
516
+ 0x5016 ThumbnailPlanes - no
517
+ 0x5017 ThumbnailRawBytes - no
518
+ 0x5018 ThumbnailLength - no
519
+ 0x5019 ThumbnailCompressedSize - no
520
+ 0x501a ColorTransferFunction - no
521
+ 0x501b ThumbnailData - no
522
+ 0x5020 ThumbnailImageWidth - no
523
+ 0x5021 ThumbnailImageHeight - no
524
+ 0x5022 ThumbnailBitsPerSample - no
525
+ 0x5023 ThumbnailCompression - no
526
+ 0x5024 ThumbnailPhotometricInterp - no
527
+ 0x5025 ThumbnailDescription - no
528
+ 0x5026 ThumbnailEquipMake - no
529
+ 0x5027 ThumbnailEquipModel - no
530
+ 0x5028 ThumbnailStripOffsets - no
531
+ 0x5029 ThumbnailOrientation - no
532
+ 0x502a ThumbnailSamplesPerPixel - no
533
+ 0x502b ThumbnailRowsPerStrip - no
534
+ 0x502c ThumbnailStripByteCounts - no
535
+ 0x502d ThumbnailResolutionX - no
536
+ 0x502e ThumbnailResolutionY - no
537
+ 0x502f ThumbnailPlanarConfig - no
538
+ 0x5030 ThumbnailResolutionUnit - no
539
+ 0x5031 ThumbnailTransferFunction - no
540
+ 0x5032 ThumbnailSoftware - no
541
+ 0x5033 ThumbnailDateTime - no
542
+ 0x5034 ThumbnailArtist - no
543
+ 0x5035 ThumbnailWhitePoint - no
544
+ 0x5036 ThumbnailPrimaryChromaticities - no
545
+ 0x5037 ThumbnailYCbCrCoefficients - no
546
+ 0x5038 ThumbnailYCbCrSubsampling - no
547
+ 0x5039 ThumbnailYCbCrPositioning - no
548
+ 0x503a ThumbnailRefBlackWhite - no
549
+ 0x503b ThumbnailCopyright - no
550
+ 0x5090 LuminanceTable - no
551
+ 0x5091 ChrominanceTable - no
552
+ 0x5100 FrameDelay - no
553
+ 0x5101 LoopCount - no
554
+ 0x5102 GlobalPalette - no
555
+ 0x5103 IndexBackground - no
556
+ 0x5104 IndexTransparent - no
557
+ 0x5110 PixelUnits - no
558
+ 0x5111 PixelsPerUnitX - no
559
+ 0x5112 PixelsPerUnitY - no
560
+ 0x5113 PaletteHistogram - no
493
561
  0x7000 SonyRawFileType - no
494
562
  0x7010 SonyToneCurve - no
495
563
  0x7031 VignettingCorrection SubIFD int16s!
@@ -748,6 +816,8 @@ for the official EXIF 2.32 specification.
748
816
  0x9403 WaterDepth ExifIFD rational64s
749
817
  0x9404 Acceleration ExifIFD rational64u
750
818
  0x9405 CameraElevationAngle ExifIFD rational64s
819
+ 0x9999 XiaomiSettings ExifIFD JSON
820
+ 0x9a00 XiaomiModel ExifIFD string!
751
821
  0x9c9b XPTitle IFD0 int8u
752
822
  0x9c9c XPComment IFD0 int8u
753
823
  0x9c9d XPAuthor IFD0 int8u
@@ -971,6 +1041,7 @@ for the official EXIF 2.32 specification.
971
1041
  0xcd3a ReductionMatrix3 IFD0 rational64s[n]!
972
1042
  0xcd3b RGBTables IFD0 undef!
973
1043
  0xcd40 ProfileGainTableMap2 IFD0 undef!
1044
+ 0xcd41 JUMBF - Jpeg2000
974
1045
  0xcd43 ColumnInterleaveFactor SubIFD int32u!
975
1046
  0xcd44 ImageSequenceInfo IFD0 DNG ImageSeq
976
1047
  0xcd46 ImageStats IFD0 undef!
@@ -7811,6 +7882,7 @@ Unknown only to reduce the volume of the normal output.
7811
7882
  CanonCameraInfo1100D Canon CameraInfo600D
7812
7883
  CanonCameraInfo1200D Canon CameraInfo60D
7813
7884
  CanonCameraInfoR6 Canon CameraInfoR6
7885
+ CanonCameraInfoG5XII Canon CameraInfoG5XII
7814
7886
  CanonCameraInfoPowerShot Canon CameraInfoPowerShot
7815
7887
  CanonCameraInfoPowerShot2 Canon CameraInfoPowerShot2
7816
7888
  CanonCameraInfoUnknown32 Canon CameraInfoUnknown32
@@ -8803,6 +8875,16 @@ CameraInfo tags for the EOS R6.
8803
8875
  ------ -------- --------
8804
8876
  2801 ShutterCount int32u
8805
8877
 
8878
+ =head3 Canon CameraInfoG5XII Tags
8879
+
8880
+ CameraInfo tags for the PowerShot G5 X Mark II.
8881
+
8882
+ Index1 Tag Name Writable
8883
+ ------ -------- --------
8884
+ 659 ShutterCount int32u
8885
+ 2849 DirectoryIndex int32u
8886
+ 2861 FileIndex int32u
8887
+
8806
8888
  =head3 Canon CameraInfoPowerShot Tags
8807
8889
 
8808
8890
  CameraInfo tags for PowerShot models such as the A450, A460, A550, A560,
@@ -9386,6 +9468,7 @@ These tags are used by many EOS M and PowerShot models.
9386
9468
  255 ColorCalib2? Canon ColorCalib2
9387
9469
  264 PerChannelBlackLevel int16s[4]
9388
9470
  333 PerChannelBlackLevel int16s[4]
9471
+ 662 SpecularWhiteLevel int16u
9389
9472
  1385 NormalWhiteLevel int16u
9390
9473
  1386 SpecularWhiteLevel int16u
9391
9474
 
@@ -10044,6 +10127,7 @@ This information is new in images from the EOS 7D.
10044
10127
  4 LongExposureNoiseReduction int32s
10045
10128
  5 HighISONoiseReduction int32s
10046
10129
  10 DigitalLensOptimizer int32s
10130
+ 11 DualPixelRaw int32s
10047
10131
 
10048
10132
  =head3 Canon LensInfo Tags
10049
10133
 
@@ -11209,7 +11293,7 @@ These tags belong to the ExifTool XMP-drone-dji family 1 group.
11209
11293
  FlightZSpeed real
11210
11294
  GPSLatitude real/
11211
11295
  GPSLongitude real/
11212
- GPSLongtitude real
11296
+ GPSLongtitude real/
11213
11297
  GimbalPitchDegree real
11214
11298
  GimbalReverse string
11215
11299
  GimbalRollDegree real
@@ -11952,6 +12036,18 @@ Tags found in the FujiIFD information of RAF images from some models.
11952
12036
  0xf00f ChromaticAberrationParams no
11953
12037
  0xf010 VignettingParams no
11954
12038
 
12039
+ =head3 FujiFilm MRAW Tags
12040
+
12041
+ Tags extracted from the M-RAW header of multi-image RAF files. The family 1
12042
+ group name for these tags is "M-RAW".
12043
+
12044
+ Tag ID Tag Name Writable
12045
+ ------ -------- --------
12046
+ 0x0001 RawImageNumber no
12047
+ 0x0005 ExposureTime no
12048
+ 0x0006 FNumber no
12049
+ 0x0007 ISO no
12050
+
11955
12051
  =head3 FujiFilm FFMV Tags
11956
12052
 
11957
12053
  Information found in the FFMV atom of MOV videos.
@@ -14169,8 +14265,9 @@ DiMAGE X and Xt.
14169
14265
  ColorBalance0211 Nikon ColorBalance4
14170
14266
  ColorBalance0213 Nikon ColorBalance2
14171
14267
  ColorBalance0215 Nikon ColorBalance4
14172
- ColorBalanceUnknown02 Nikon ColorBalanceUnknown
14173
- ColorBalanceUnknown04 Nikon ColorBalanceUnknown
14268
+ ColorBalance0219 Nikon ColorBalance2
14269
+ ColorBalanceUnknown1 Nikon ColorBalanceUnknown
14270
+ ColorBalanceUnknown2 Nikon ColorBalanceUnknown2
14174
14271
  ColorBalanceUnknown Nikon ColorBalanceUnknown
14175
14272
  0x0098 LensData0100 Nikon LensData00
14176
14273
  LensData0101 Nikon LensData01
@@ -14940,6 +15037,7 @@ These tags are extracted from encrypted data in images from the D6.
14940
15037
  Index1 Tag Name Writable
14941
15038
  ------ -------- --------
14942
15039
  36 IntervalShooting int16u~
15040
+ 43 ImageArea int8u
14943
15041
 
14944
15042
  =head3 Nikon IntervalInfoD6 Tags
14945
15043
 
@@ -14984,6 +15082,7 @@ These tags are extracted from encrypted data in images from the Z7II.
14984
15082
  4 FirmwareVersion no
14985
15083
  48 IntervalOffset Nikon IntervalInfoZ7II
14986
15084
  56 PortraitOffset Nikon PortraitInfoZ7II
15085
+ 136 OrientationOffset Nikon OrientationInfo
14987
15086
  152 OrientationOffset Nikon OrientationInfo
14988
15087
  160 MenuOffset Nikon MenuInfoZ7II
14989
15088
 
@@ -14992,6 +15091,7 @@ These tags are extracted from encrypted data in images from the Z7II.
14992
15091
  Index1 Tag Name Writable
14993
15092
  ------ -------- --------
14994
15093
  36 IntervalShooting int16u~
15094
+ 43 ImageArea int8u
14995
15095
 
14996
15096
  =head3 Nikon PortraitInfoZ7II Tags
14997
15097
 
@@ -15217,8 +15317,8 @@ These tags are extracted from encrypted data in images from the Z9.
15217
15317
  ------ -------- --------
15218
15318
  3048 AFAreaInitialXPosition int8s~
15219
15319
  3049 AFAreaInitialYPosition int8s~
15220
- 3050 AFAreaInitialWidth no
15221
- 3051 AFAreaInitialHeight no
15320
+ 3050 AFAreaInitialWidth int8u
15321
+ 3051 AFAreaInitialHeight int8u
15222
15322
 
15223
15323
  =head3 Nikon AutoCaptureInfo Tags
15224
15324
 
@@ -15595,6 +15695,12 @@ This information is encrypted for most camera models.
15595
15695
  ------ -------- --------
15596
15696
  0 ColorBalanceVersion undef[4]
15597
15697
 
15698
+ =head3 Nikon ColorBalanceUnknown2 Tags
15699
+
15700
+ Index2 Tag Name Writable
15701
+ ------ -------- --------
15702
+ 0 ColorBalanceVersion undef[4]
15703
+
15598
15704
  =head3 Nikon LensData00 Tags
15599
15705
 
15600
15706
  This structure is used by the D100, and D1X with firmware version 1.1.
@@ -16084,7 +16190,27 @@ cameras such as the Z6 and Z7, and NRW images from some Coolpix cameras.
16084
16190
 
16085
16191
  Tag ID Tag Name Writable
16086
16192
  ------ -------- --------
16087
- [no tags known]
16193
+ 0x0005 DistortionInfo Nikon DistortionInfo
16194
+ 0x0006 VignetteInfo Nikon VignetteInfo
16195
+
16196
+ =head3 Nikon DistortionInfo Tags
16197
+
16198
+ Index1 Tag Name Writable
16199
+ ------ -------- --------
16200
+ 0 DistortionCorrectionVersion string[4]
16201
+ 4 DistortionCorrection int8u
16202
+ 20 RadialDistortionCoefficient1 rational64s~
16203
+ 28 RadialDistortionCoefficient2 rational64s~
16204
+ 36 RadialDistortionCoefficient3 rational64s~
16205
+
16206
+ =head3 Nikon VignetteInfo Tags
16207
+
16208
+ Index1 Tag Name Writable
16209
+ ------ -------- --------
16210
+ 0 VignetteCorrectionVersion string[4]
16211
+ 36 VignetteCoefficient1 rational64s~
16212
+ 52 VignetteCoefficient2 rational64s~
16213
+ 68 VignetteCoefficient3 rational64s~
16088
16214
 
16089
16215
  =head3 Nikon AVI Tags
16090
16216
 
@@ -18578,6 +18704,291 @@ Tags found in the OLYM atom of MP4 videos from the TG-810.
18578
18704
  265 ThumbnailWidth no
18579
18705
  267 ThumbnailHeight no
18580
18706
 
18707
+ =head2 PanasonicRaw Tags
18708
+
18709
+ These tags are found in IFD0 of Panasonic/Leica RAW, RW2 and RWL images.
18710
+
18711
+ Tag ID Tag Name Writable
18712
+ ------ -------- --------
18713
+ 0x0001 PanasonicRawVersion undef
18714
+ 0x0002 SensorWidth no
18715
+ 0x0003 SensorHeight no
18716
+ 0x0004 SensorTopBorder no
18717
+ 0x0005 SensorLeftBorder no
18718
+ 0x0006 SensorBottomBorder no
18719
+ 0x0007 SensorRightBorder no
18720
+ 0x0008 SamplesPerPixel int16u!
18721
+ 0x0009 CFAPattern int16u!
18722
+ 0x000a BitsPerSample int16u!
18723
+ 0x000b Compression int16u!
18724
+ 0x000e LinearityLimitRed int16u
18725
+ 0x000f LinearityLimitGreen int16u
18726
+ 0x0010 LinearityLimitBlue int16u
18727
+ 0x0011 RedBalance int16u
18728
+ 0x0012 BlueBalance int16u
18729
+ 0x0013 WBInfo PanasonicRaw WBInfo
18730
+ 0x0017 ISO int16u
18731
+ 0x0018 HighISOMultiplierRed int16u
18732
+ 0x0019 HighISOMultiplierGreen int16u
18733
+ 0x001a HighISOMultiplierBlue int16u
18734
+ 0x001b NoiseReductionParams undef[n]!
18735
+ 0x001c BlackLevelRed int16u
18736
+ 0x001d BlackLevelGreen int16u
18737
+ 0x001e BlackLevelBlue int16u
18738
+ 0x0024 WBRedLevel int16u
18739
+ 0x0025 WBGreenLevel int16u
18740
+ 0x0026 WBBlueLevel int16u
18741
+ 0x0027 WBInfo2 PanasonicRaw WBInfo2
18742
+ 0x002d RawFormat int16u!
18743
+ 0x002e JpgFromRaw JPEG
18744
+ 0x002f CropTop int16u
18745
+ 0x0030 CropLeft int16u
18746
+ 0x0031 CropBottom int16u
18747
+ 0x0032 CropRight int16u
18748
+ 0x010f Make string
18749
+ 0x0110 Model string
18750
+ 0x0111 StripOffsets no
18751
+ 0x0112 Orientation int16u
18752
+ 0x0116 RowsPerStrip no
18753
+ 0x0117 StripByteCounts no
18754
+ 0x0118 RawDataOffset no
18755
+ 0x0119 DistortionInfo PanasonicRaw DistortionInfo
18756
+ 0x011c Gamma int16u
18757
+ 0x0120 CameraIFD PanasonicRaw CameraIFD
18758
+ 0x0121 Multishot int32u
18759
+ 0x0127 JpgFromRaw2 no
18760
+ 0x013b Artist string
18761
+ 0x02bc ApplicationNotes XMP
18762
+ 0x8298 Copyright string
18763
+ 0x83bb IPTC-NAA IPTC
18764
+ 0x8769 ExifOffset EXIF
18765
+ 0x8825 GPSInfo GPS
18766
+
18767
+ =head3 PanasonicRaw CameraIFD Tags
18768
+
18769
+ Tag ID Tag Name Writable
18770
+ ------ -------- --------
18771
+ 0x1001 MultishotOn no
18772
+ 0x1100 FocusStepNear no
18773
+ 0x1101 FocusStepCount no
18774
+ 0x1102 FlashFired no
18775
+ 0x1105 ZoomPosition no
18776
+ 0x1200 LensAttached no
18777
+ 0x1201 LensTypeMake no
18778
+ 0x1202 LensTypeModel no
18779
+ 0x1203 FocalLengthIn35mmFormat no
18780
+ 0x1301 ApertureValue no
18781
+ 0x1302 ShutterSpeedValue no
18782
+ 0x1303 SensitivityValue no
18783
+ 0x1305 HighISOMode no
18784
+ 0x1412 FacesDetected no
18785
+ 0x3200 WB_CFA0_LevelDaylight no
18786
+ 0x3201 WB_CFA1_LevelDaylight no
18787
+ 0x3202 WB_CFA2_LevelDaylight no
18788
+ 0x3203 WB_CFA3_LevelDaylight no
18789
+ 0x3300 WhiteBalanceSet no
18790
+ 0x3420 WB_RedLevelAuto no
18791
+ 0x3421 WB_BlueLevelAuto no
18792
+ 0x3501 Orientation no
18793
+ 0x3600 WhiteBalanceDetected no
18794
+
18795
+ =head3 PanasonicRaw WBInfo Tags
18796
+
18797
+ Index2 Tag Name Writable
18798
+ ------ -------- --------
18799
+ 0 NumWBEntries int16u
18800
+ 1 WBType1 int16u
18801
+ 2 WB_RBLevels1 int16u[2]
18802
+ 4 WBType2 int16u
18803
+ 5 WB_RBLevels2 int16u[2]
18804
+ 7 WBType3 int16u
18805
+ 8 WB_RBLevels3 int16u[2]
18806
+ 10 WBType4 int16u
18807
+ 11 WB_RBLevels4 int16u[2]
18808
+ 13 WBType5 int16u
18809
+ 14 WB_RBLevels5 int16u[2]
18810
+ 16 WBType6 int16u
18811
+ 17 WB_RBLevels6 int16u[2]
18812
+ 19 WBType7 int16u
18813
+ 20 WB_RBLevels7 int16u[2]
18814
+
18815
+ =head3 PanasonicRaw WBInfo2 Tags
18816
+
18817
+ Index2 Tag Name Writable
18818
+ ------ -------- --------
18819
+ 0 NumWBEntries int16u
18820
+ 1 WBType1 int16u
18821
+ 2 WB_RGBLevels1 int16u[3]
18822
+ 5 WBType2 int16u
18823
+ 6 WB_RGBLevels2 int16u[3]
18824
+ 9 WBType3 int16u
18825
+ 10 WB_RGBLevels3 int16u[3]
18826
+ 13 WBType4 int16u
18827
+ 14 WB_RGBLevels4 int16u[3]
18828
+ 17 WBType5 int16u
18829
+ 18 WB_RGBLevels5 int16u[3]
18830
+ 21 WBType6 int16u
18831
+ 22 WB_RGBLevels6 int16u[3]
18832
+ 25 WBType7 int16u
18833
+ 26 WB_RGBLevels7 int16u[3]
18834
+
18835
+ =head3 PanasonicRaw DistortionInfo Tags
18836
+
18837
+ Lens distortion correction information.
18838
+
18839
+ Tag ID Tag Name Writable
18840
+ ------ -------- --------
18841
+ 0x0002 DistortionParam02 int16s
18842
+ 0x0004 DistortionParam04 int16s
18843
+ 0x0005 DistortionScale int16s
18844
+ 7.1 DistortionCorrection int16s & 0x0f
18845
+ 0x0008 DistortionParam08 int16s
18846
+ 0x0009 DistortionParam09 int16s
18847
+ 0x000b DistortionParam11 int16s
18848
+ 0x000c DistortionN? int16s
18849
+
18850
+ =head2 SigmaRaw Tags
18851
+
18852
+ These tags are used in Sigma and Foveon RAW (.X3F) images. Metadata is also
18853
+ extracted from the JpgFromRaw image if it exists (all models but the SD9 and
18854
+ SD10). Currently, metadata may only be written to the embedded JpgFromRaw.
18855
+
18856
+ Tag ID Tag Name Writable
18857
+ ------ -------- --------
18858
+ 'Header' Header SigmaRaw Header
18859
+ 'Header4' Header4 SigmaRaw Header4
18860
+ 'HeaderExt' HeaderExt SigmaRaw HeaderExt
18861
+ 'IMA2' PreviewImage no
18862
+ JpgFromRaw no
18863
+ 'IMAG' PreviewImage no
18864
+ 'PROP' Properties SigmaRaw Properties
18865
+
18866
+ =head3 SigmaRaw Header Tags
18867
+
18868
+ Information extracted from the header of an X3F file.
18869
+
18870
+ Tag ID Tag Name Writable
18871
+ ------ -------- --------
18872
+ 0x0001 FileVersion no
18873
+ 0x0002 ImageUniqueID no
18874
+ 0x0006 MarkBits no
18875
+ 0x0007 ImageWidth no
18876
+ 0x0008 ImageHeight no
18877
+ 0x0009 Rotation no
18878
+ 0x000a WhiteBalance no
18879
+ 0x0012 SceneCaptureType no
18880
+
18881
+ =head3 SigmaRaw Header4 Tags
18882
+
18883
+ Header information for version 4.0 or greater X3F.
18884
+
18885
+ Index4 Tag Name Writable
18886
+ ------ -------- --------
18887
+ 1 FileVersion no
18888
+ 10 ImageWidth no
18889
+ 11 ImageHeight no
18890
+ 12 Rotation no
18891
+
18892
+ =head3 SigmaRaw HeaderExt Tags
18893
+
18894
+ Extended header data found in version 2.1 and 2.2 files
18895
+
18896
+ Tag ID Tag Name Writable
18897
+ ------ -------- --------
18898
+ 0x0000 Unused no
18899
+ 0x0001 ExposureAdjust no
18900
+ 0x0002 Contrast no
18901
+ 0x0003 Shadow no
18902
+ 0x0004 Highlight no
18903
+ 0x0005 Saturation no
18904
+ 0x0006 Sharpness no
18905
+ 0x0007 RedAdjust no
18906
+ 0x0008 GreenAdjust no
18907
+ 0x0009 BlueAdjust no
18908
+ 0x000a X3FillLight no
18909
+
18910
+ =head3 SigmaRaw Properties Tags
18911
+
18912
+ Tag ID Tag Name Writable
18913
+ ------ -------- --------
18914
+ 'AEMODE' MeteringMode no
18915
+ 'AFAREA' AFArea no
18916
+ 'AFINFOCUS' AFInFocus no
18917
+ 'AFMODE' FocusMode no
18918
+ 'APERTURE' FNumber no
18919
+ 'AP_DESC' ApertureDisplayed no
18920
+ 'BRACKET' BracketShot no
18921
+ 'BURST' BurstShot no
18922
+ 'CAMMANUF' Make no
18923
+ 'CAMMODEL' Model no
18924
+ 'CAMNAME' CameraName no
18925
+ 'CAMSERIAL' SerialNumber no
18926
+ 'CM_DESC' SceneCaptureType no
18927
+ 'COLORSPACE' ColorSpace no
18928
+ 'DRIVE' DriveMode no
18929
+ 'EVAL_STATE' EvalState no
18930
+ 'EXPCOMP' ExposureCompensation no
18931
+ 'EXPNET' NetExposureCompensation no
18932
+ 'EXPTIME' IntegrationTime no
18933
+ 'FIRMVERS' FirmwareVersion no
18934
+ 'FLASH' FlashMode no
18935
+ 'FLASHEXPCOMP' FlashExpComp no
18936
+ 'FLASHPOWER' FlashPower no
18937
+ 'FLASHTTLMODE' FlashTTLMode no
18938
+ 'FLASHTYPE' FlashType no
18939
+ 'FLENGTH' FocalLength no
18940
+ 'FLEQ35MM' FocalLengthIn35mmFormat no
18941
+ 'FOCUS' Focus no
18942
+ 'IMAGEBOARDID' ImageBoardID no
18943
+ 'IMAGERBOARDID' ImagerBoardID no
18944
+ 'IMAGERTEMP' SensorTemperature no
18945
+ 'ISO' ISO no
18946
+ 'LENSARANGE' LensApertureRange no
18947
+ 'LENSFRANGE' LensFocalRange no
18948
+ 'LENSMODEL' LensType no
18949
+ 'PMODE' ExposureProgram no
18950
+ 'RESOLUTION' Quality no
18951
+ 'SENSORID' SensorID no
18952
+ 'SHUTTER' ExposureTime no
18953
+ 'SH_DESC' ShutterSpeedDisplayed no
18954
+ 'TIME' DateTimeOriginal no
18955
+ 'VERSION_BF' VersionBF no
18956
+ 'WB_DESC' WhiteBalance no
18957
+
18958
+ =head2 Lytro Tags
18959
+
18960
+ Tag definitions for Lytro Light Field Picture (LFP) files. ExifTool
18961
+ extracts the full JSON metadata blocks, as well as breaking them down into
18962
+ individual tags. All available tags are extracted from the JSON metadata,
18963
+ even if they don't appear in the table below.
18964
+
18965
+ Tag Name Writable
18966
+ -------- --------
18967
+ AccelerometerTime no
18968
+ AccelerometerX no
18969
+ AccelerometerY no
18970
+ AccelerometerZ no
18971
+ CameraType no
18972
+ DateTimeOriginal no
18973
+ EmbeddedImage no
18974
+ ExposureTime no
18975
+ FNumber no
18976
+ FirmwareVersion no
18977
+ FocalLength no
18978
+ FocalPlaneXResolution no
18979
+ FrameExposureTime no
18980
+ ISO no
18981
+ ImageLimitExposureBias no
18982
+ ImageModulationExposureBias no
18983
+ JSONMetadata no+
18984
+ LensTemperature no
18985
+ Make no
18986
+ Model no
18987
+ Orientation no
18988
+ SensorSerialNumber no
18989
+ SerialNumber no
18990
+ SocTemperature no
18991
+
18581
18992
  =head2 Panasonic Tags
18582
18993
 
18583
18994
  These tags are used in Panasonic/Leica cameras.
@@ -18859,6 +19270,7 @@ This information is written by the X1, X2, X VARIO and T.
18859
19270
  0x0412 FilmMode string
18860
19271
  0x0413 WB_RGBLevels rational64u[3]
18861
19272
  0x0500 InternalSerialNumber undef
19273
+ 0x05ff CameraIFD PanasonicRaw CameraIFD
18862
19274
 
18863
19275
  =head3 Panasonic FocusInfo Tags
18864
19276
 
@@ -20242,6 +20654,7 @@ such as the Galaxy S4.
20242
20654
 
20243
20655
  Tag ID Tag Name Writable
20244
20656
  ------ -------- --------
20657
+ 'mdln' SamsungModel no
20245
20658
  'svss' SamsungSvss Samsung svss
20246
20659
 
20247
20660
  =head3 Samsung svss Tags
@@ -20425,6 +20838,43 @@ defined below, ExifTool will extract any information found here.
20425
20838
  'thum' ThumbnailImage no
20426
20839
  'ucmt' Comment no
20427
20840
 
20841
+ =head3 Ricoh RDTA Tags
20842
+
20843
+ Tag ID Tag Name Writable
20844
+ ------ -------- --------
20845
+ 0x0000 Accelerometer no
20846
+ 0x0010 TimeStamp no
20847
+
20848
+ =head3 Ricoh RDTB Tags
20849
+
20850
+ Tag ID Tag Name Writable
20851
+ ------ -------- --------
20852
+ 0x0000 Gyroscope no
20853
+ 0x0010 TimeStamp no
20854
+
20855
+ =head3 Ricoh RDTC Tags
20856
+
20857
+ Tag ID Tag Name Writable
20858
+ ------ -------- --------
20859
+ 0x0000 MagneticField no
20860
+ 0x0010 TimeStamp no
20861
+
20862
+ =head3 Ricoh RDTG Tags
20863
+
20864
+ Tag ID Tag Name Writable
20865
+ ------ -------- --------
20866
+ 0x0000 TimeStamp no
20867
+ 0x0064 FrameNumber no
20868
+
20869
+ =head3 Ricoh RDTL Tags
20870
+
20871
+ Tag ID Tag Name Writable
20872
+ ------ -------- --------
20873
+ 0x0000 GPSDateTime no
20874
+ 0x0008 GPSLatitude no
20875
+ 0x0010 GPSLongitude no
20876
+ 0x0018 GPSAltitude no
20877
+
20428
20878
  =head2 Sigma Tags
20429
20879
 
20430
20880
  These tags are written by Sigma/Foveon cameras. In the early days Sigma was
@@ -20631,6 +21081,8 @@ MakerNotes.
20631
21081
  0x2036 Clarity int32s
20632
21082
  0x2037 FocusFrameSize no
20633
21083
  0x2039 JPEG-HEIFSwitch int16u
21084
+ 0x2044 HiddenInfo Sony HiddenInfo
21085
+ 0x204a FocusLocation2 int16u[4]
20634
21086
  0x3000 ShotInfo Sony ShotInfo
20635
21087
  0x900b Tag900b Sony Tag900b
20636
21088
  0x9050 Tag9050a Sony Tag9050a
@@ -20649,6 +21101,7 @@ MakerNotes.
20649
21101
  0x9405 Tag9405a Sony Tag9405a
20650
21102
  Tag9405b Sony Tag9405b
20651
21103
  0x9406 Tag9406 Sony Tag9406
21104
+ Tag9406b Sony Tag9406b
20652
21105
  0x940a Tag940a Sony Tag940a
20653
21106
  0x940c Tag940c Sony Tag940c
20654
21107
  0x940e AFInfo Sony AFInfo
@@ -21601,6 +22054,13 @@ option is used.
21601
22054
  58 FocalPlaneAFPointLocation14 int16u[2]
21602
22055
  62 FocalPlaneAFPointLocation15 int16u[2]
21603
22056
 
22057
+ =head3 Sony HiddenInfo Tags
22058
+
22059
+ Index4 Tag Name Writable
22060
+ ------ -------- --------
22061
+ 0 HiddenDataOffset int32u
22062
+ 1 HiddenDataLength int32u
22063
+
21604
22064
  =head3 Sony ShotInfo Tags
21605
22065
 
21606
22066
  Index1 Tag Name Writable
@@ -21805,7 +22265,6 @@ WX350/WX500, ILCE-1/7/7C/7R/7S/7M2/7M3/7RM2/7RM3/7RM4/7SM2/7SM3/9/9M2/5000/
21805
22265
  30 SequenceLength int8u
21806
22266
  41 CameraOrientation int8u
21807
22267
  42 Quality2 int8u
21808
- 71 SonyImageHeight int16u~
21809
22268
  83 ModelReleaseYear int8u~
21810
22269
  307 ShutterType int8u
21811
22270
  313 ShutterType int8u
@@ -21816,6 +22275,7 @@ WX350/WX500, ILCE-1/7/7C/7R/7S/7M2/7M3/7RM2/7RM3/7RM4/7SM2/7SM3/9/9M2/5000/
21816
22275
  Index1 Tag Name Writable
21817
22276
  ------ -------- --------
21818
22277
  994 ISOInfo Sony ISOInfo
22278
+ 1012 ISOInfo Sony ISOInfo
21819
22279
  1102 ISOInfo Sony ISOInfo
21820
22280
  1176 ISOInfo Sony ISOInfo
21821
22281
  1181 ISOInfo Sony ISOInfo
@@ -21946,11 +22406,17 @@ ILCE-7/7M2/7M3/7R/7RM2/7RM3/7RM4/7S/7SM2/9/9M2/5000/5100/6000/6100/6300/
21946
22406
  Index1 Tag Name Writable
21947
22407
  ------ -------- --------
21948
22408
  5 BatteryTemperature int8u
21949
- BatteryLevel int8u
21950
22409
  6 BatteryLevelGrip1 int8u
21951
22410
  7 BatteryLevel int8u
21952
22411
  8 BatteryLevelGrip2 int8u
21953
22412
 
22413
+ =head3 Sony Tag9406b Tags
22414
+
22415
+ Index1 Tag Name Writable
22416
+ ------ -------- --------
22417
+ 5 BatteryLevel int8u
22418
+ 7 BatteryLevel2 int8u
22419
+
21954
22420
  =head3 Sony Tag940a Tags
21955
22421
 
21956
22422
  These tags are currently extracted for SLT models only.
@@ -22151,7 +22617,7 @@ E-mount models.
22151
22617
 
22152
22618
  =head3 Sony Tag9416 Tags
22153
22619
 
22154
- Valid for the ILCE-1/6700/7CM2/7CR/7M4/7RM5/7SM3, ILME-FX3/FX30, ZV-E1.
22620
+ Valid for the ILCE-1/6700/7CM2/7CR/7M4/7RM5/7SM3/9M3, ILME-FX3/FX30, ZV-E1.
22155
22621
 
22156
22622
  Index1 Tag Name Writable
22157
22623
  ------ -------- --------
@@ -22603,6 +23069,41 @@ information.
22603
23069
  2 DynamicRange no
22604
23070
  4 HintMaxOutputValue no
22605
23071
 
23072
+ =head2 JSON Tags
23073
+
23074
+ Other than a few tags in the table below, JSON tags have not been
23075
+ pre-defined. However, ExifTool will read any existing tags from basic
23076
+ JSON-formatted files.
23077
+
23078
+ Tag Name Writable
23079
+ -------- --------
23080
+ ON1_SettingsData PLIST
23081
+ ON1_SettingsMetadataCreated no
23082
+ ON1_SettingsMetadataModified no
23083
+ ON1_SettingsMetadataName no
23084
+ ON1_SettingsMetadataPluginID no
23085
+ ON1_SettingsMetadataTimestamp no
23086
+ ON1_SettingsMetadataUsage no
23087
+ ON1_SettingsMetadataVisibleToUser no
23088
+
23089
+ =head2 CBOR Tags
23090
+
23091
+ The tags below are extracted from CBOR (Concise Binary Object
23092
+ Representation) metadata. The C2PA specification uses this format for some
23093
+ metadata. As well as these tags, ExifTool will read any existing tags.
23094
+
23095
+ Tag Name Writable
23096
+ -------- --------
23097
+ AuthorIdentifier no
23098
+ AuthorName no
23099
+ DocumentID no
23100
+ Format no
23101
+ InstanceID no
23102
+ Relationship no
23103
+ ThumbnailHash no+
23104
+ ThumbnailURL no
23105
+ Title no
23106
+
22606
23107
  =head2 PLIST Tags
22607
23108
 
22608
23109
  Apple Property List tags. ExifTool reads both XML and binary-format PLIST
@@ -22866,291 +23367,6 @@ These tags are used in Minolta RAW format (MRW) images.
22866
23367
  4 WB_GBRGLevels int16u[4]
22867
23368
  WB_RGGBLevels int16u[4]
22868
23369
 
22869
- =head2 PanasonicRaw Tags
22870
-
22871
- These tags are found in IFD0 of Panasonic/Leica RAW, RW2 and RWL images.
22872
-
22873
- Tag ID Tag Name Writable
22874
- ------ -------- --------
22875
- 0x0001 PanasonicRawVersion undef
22876
- 0x0002 SensorWidth no
22877
- 0x0003 SensorHeight no
22878
- 0x0004 SensorTopBorder no
22879
- 0x0005 SensorLeftBorder no
22880
- 0x0006 SensorBottomBorder no
22881
- 0x0007 SensorRightBorder no
22882
- 0x0008 SamplesPerPixel int16u!
22883
- 0x0009 CFAPattern int16u!
22884
- 0x000a BitsPerSample int16u!
22885
- 0x000b Compression int16u!
22886
- 0x000e LinearityLimitRed int16u
22887
- 0x000f LinearityLimitGreen int16u
22888
- 0x0010 LinearityLimitBlue int16u
22889
- 0x0011 RedBalance int16u
22890
- 0x0012 BlueBalance int16u
22891
- 0x0013 WBInfo PanasonicRaw WBInfo
22892
- 0x0017 ISO int16u
22893
- 0x0018 HighISOMultiplierRed int16u
22894
- 0x0019 HighISOMultiplierGreen int16u
22895
- 0x001a HighISOMultiplierBlue int16u
22896
- 0x001b NoiseReductionParams undef[n]!
22897
- 0x001c BlackLevelRed int16u
22898
- 0x001d BlackLevelGreen int16u
22899
- 0x001e BlackLevelBlue int16u
22900
- 0x0024 WBRedLevel int16u
22901
- 0x0025 WBGreenLevel int16u
22902
- 0x0026 WBBlueLevel int16u
22903
- 0x0027 WBInfo2 PanasonicRaw WBInfo2
22904
- 0x002d RawFormat int16u!
22905
- 0x002e JpgFromRaw JPEG
22906
- 0x002f CropTop int16u
22907
- 0x0030 CropLeft int16u
22908
- 0x0031 CropBottom int16u
22909
- 0x0032 CropRight int16u
22910
- 0x010f Make string
22911
- 0x0110 Model string
22912
- 0x0111 StripOffsets no
22913
- 0x0112 Orientation int16u
22914
- 0x0116 RowsPerStrip no
22915
- 0x0117 StripByteCounts no
22916
- 0x0118 RawDataOffset no
22917
- 0x0119 DistortionInfo PanasonicRaw DistortionInfo
22918
- 0x011c Gamma int16u
22919
- 0x0120 CameraIFD PanasonicRaw CameraIFD
22920
- 0x0121 Multishot int32u
22921
- 0x0127 JpgFromRaw2 no
22922
- 0x013b Artist string
22923
- 0x02bc ApplicationNotes XMP
22924
- 0x8298 Copyright string
22925
- 0x83bb IPTC-NAA IPTC
22926
- 0x8769 ExifOffset EXIF
22927
- 0x8825 GPSInfo GPS
22928
-
22929
- =head3 PanasonicRaw WBInfo Tags
22930
-
22931
- Index2 Tag Name Writable
22932
- ------ -------- --------
22933
- 0 NumWBEntries int16u
22934
- 1 WBType1 int16u
22935
- 2 WB_RBLevels1 int16u[2]
22936
- 4 WBType2 int16u
22937
- 5 WB_RBLevels2 int16u[2]
22938
- 7 WBType3 int16u
22939
- 8 WB_RBLevels3 int16u[2]
22940
- 10 WBType4 int16u
22941
- 11 WB_RBLevels4 int16u[2]
22942
- 13 WBType5 int16u
22943
- 14 WB_RBLevels5 int16u[2]
22944
- 16 WBType6 int16u
22945
- 17 WB_RBLevels6 int16u[2]
22946
- 19 WBType7 int16u
22947
- 20 WB_RBLevels7 int16u[2]
22948
-
22949
- =head3 PanasonicRaw WBInfo2 Tags
22950
-
22951
- Index2 Tag Name Writable
22952
- ------ -------- --------
22953
- 0 NumWBEntries int16u
22954
- 1 WBType1 int16u
22955
- 2 WB_RGBLevels1 int16u[3]
22956
- 5 WBType2 int16u
22957
- 6 WB_RGBLevels2 int16u[3]
22958
- 9 WBType3 int16u
22959
- 10 WB_RGBLevels3 int16u[3]
22960
- 13 WBType4 int16u
22961
- 14 WB_RGBLevels4 int16u[3]
22962
- 17 WBType5 int16u
22963
- 18 WB_RGBLevels5 int16u[3]
22964
- 21 WBType6 int16u
22965
- 22 WB_RGBLevels6 int16u[3]
22966
- 25 WBType7 int16u
22967
- 26 WB_RGBLevels7 int16u[3]
22968
-
22969
- =head3 PanasonicRaw DistortionInfo Tags
22970
-
22971
- Lens distortion correction information.
22972
-
22973
- Tag ID Tag Name Writable
22974
- ------ -------- --------
22975
- 0x0002 DistortionParam02 int16s
22976
- 0x0004 DistortionParam04 int16s
22977
- 0x0005 DistortionScale int16s
22978
- 7.1 DistortionCorrection int16s & 0x0f
22979
- 0x0008 DistortionParam08 int16s
22980
- 0x0009 DistortionParam09 int16s
22981
- 0x000b DistortionParam11 int16s
22982
- 0x000c DistortionN? int16s
22983
-
22984
- =head3 PanasonicRaw CameraIFD Tags
22985
-
22986
- Tag ID Tag Name Writable
22987
- ------ -------- --------
22988
- 0x1001 MultishotOn no
22989
- 0x1100 FocusStepNear no
22990
- 0x1101 FocusStepCount no
22991
- 0x1102 FlashFired no
22992
- 0x1105 ZoomPosition no
22993
- 0x1200 LensAttached no
22994
- 0x1201 LensTypeMake no
22995
- 0x1202 LensTypeModel no
22996
- 0x1203 FocalLengthIn35mmFormat no
22997
- 0x1301 ApertureValue no
22998
- 0x1302 ShutterSpeedValue no
22999
- 0x1303 SensitivityValue no
23000
- 0x1305 HighISOMode no
23001
- 0x1412 FacesDetected no
23002
- 0x3200 WB_CFA0_LevelDaylight no
23003
- 0x3201 WB_CFA1_LevelDaylight no
23004
- 0x3202 WB_CFA2_LevelDaylight no
23005
- 0x3203 WB_CFA3_LevelDaylight no
23006
- 0x3300 WhiteBalanceSet no
23007
- 0x3420 WB_RedLevelAuto no
23008
- 0x3421 WB_BlueLevelAuto no
23009
- 0x3501 Orientation no
23010
- 0x3600 WhiteBalanceDetected no
23011
-
23012
- =head2 SigmaRaw Tags
23013
-
23014
- These tags are used in Sigma and Foveon RAW (.X3F) images. Metadata is also
23015
- extracted from the JpgFromRaw image if it exists (all models but the SD9 and
23016
- SD10). Currently, metadata may only be written to the embedded JpgFromRaw.
23017
-
23018
- Tag ID Tag Name Writable
23019
- ------ -------- --------
23020
- 'Header' Header SigmaRaw Header
23021
- 'Header4' Header4 SigmaRaw Header4
23022
- 'HeaderExt' HeaderExt SigmaRaw HeaderExt
23023
- 'IMA2' PreviewImage no
23024
- JpgFromRaw no
23025
- 'IMAG' PreviewImage no
23026
- 'PROP' Properties SigmaRaw Properties
23027
-
23028
- =head3 SigmaRaw Header Tags
23029
-
23030
- Information extracted from the header of an X3F file.
23031
-
23032
- Tag ID Tag Name Writable
23033
- ------ -------- --------
23034
- 0x0001 FileVersion no
23035
- 0x0002 ImageUniqueID no
23036
- 0x0006 MarkBits no
23037
- 0x0007 ImageWidth no
23038
- 0x0008 ImageHeight no
23039
- 0x0009 Rotation no
23040
- 0x000a WhiteBalance no
23041
- 0x0012 SceneCaptureType no
23042
-
23043
- =head3 SigmaRaw Header4 Tags
23044
-
23045
- Header information for version 4.0 or greater X3F.
23046
-
23047
- Index4 Tag Name Writable
23048
- ------ -------- --------
23049
- 1 FileVersion no
23050
- 10 ImageWidth no
23051
- 11 ImageHeight no
23052
- 12 Rotation no
23053
-
23054
- =head3 SigmaRaw HeaderExt Tags
23055
-
23056
- Extended header data found in version 2.1 and 2.2 files
23057
-
23058
- Tag ID Tag Name Writable
23059
- ------ -------- --------
23060
- 0x0000 Unused no
23061
- 0x0001 ExposureAdjust no
23062
- 0x0002 Contrast no
23063
- 0x0003 Shadow no
23064
- 0x0004 Highlight no
23065
- 0x0005 Saturation no
23066
- 0x0006 Sharpness no
23067
- 0x0007 RedAdjust no
23068
- 0x0008 GreenAdjust no
23069
- 0x0009 BlueAdjust no
23070
- 0x000a X3FillLight no
23071
-
23072
- =head3 SigmaRaw Properties Tags
23073
-
23074
- Tag ID Tag Name Writable
23075
- ------ -------- --------
23076
- 'AEMODE' MeteringMode no
23077
- 'AFAREA' AFArea no
23078
- 'AFINFOCUS' AFInFocus no
23079
- 'AFMODE' FocusMode no
23080
- 'APERTURE' FNumber no
23081
- 'AP_DESC' ApertureDisplayed no
23082
- 'BRACKET' BracketShot no
23083
- 'BURST' BurstShot no
23084
- 'CAMMANUF' Make no
23085
- 'CAMMODEL' Model no
23086
- 'CAMNAME' CameraName no
23087
- 'CAMSERIAL' SerialNumber no
23088
- 'CM_DESC' SceneCaptureType no
23089
- 'COLORSPACE' ColorSpace no
23090
- 'DRIVE' DriveMode no
23091
- 'EVAL_STATE' EvalState no
23092
- 'EXPCOMP' ExposureCompensation no
23093
- 'EXPNET' NetExposureCompensation no
23094
- 'EXPTIME' IntegrationTime no
23095
- 'FIRMVERS' FirmwareVersion no
23096
- 'FLASH' FlashMode no
23097
- 'FLASHEXPCOMP' FlashExpComp no
23098
- 'FLASHPOWER' FlashPower no
23099
- 'FLASHTTLMODE' FlashTTLMode no
23100
- 'FLASHTYPE' FlashType no
23101
- 'FLENGTH' FocalLength no
23102
- 'FLEQ35MM' FocalLengthIn35mmFormat no
23103
- 'FOCUS' Focus no
23104
- 'IMAGEBOARDID' ImageBoardID no
23105
- 'IMAGERBOARDID' ImagerBoardID no
23106
- 'IMAGERTEMP' SensorTemperature no
23107
- 'ISO' ISO no
23108
- 'LENSARANGE' LensApertureRange no
23109
- 'LENSFRANGE' LensFocalRange no
23110
- 'LENSMODEL' LensType no
23111
- 'PMODE' ExposureProgram no
23112
- 'RESOLUTION' Quality no
23113
- 'SENSORID' SensorID no
23114
- 'SHUTTER' ExposureTime no
23115
- 'SH_DESC' ShutterSpeedDisplayed no
23116
- 'TIME' DateTimeOriginal no
23117
- 'VERSION_BF' VersionBF no
23118
- 'WB_DESC' WhiteBalance no
23119
-
23120
- =head2 Lytro Tags
23121
-
23122
- Tag definitions for Lytro Light Field Picture (LFP) files. ExifTool
23123
- extracts the full JSON metadata blocks, as well as breaking them down into
23124
- individual tags. All available tags are extracted from the JSON metadata,
23125
- even if they don't appear in the table below.
23126
-
23127
- Tag Name Writable
23128
- -------- --------
23129
- AccelerometerTime no
23130
- AccelerometerX no
23131
- AccelerometerY no
23132
- AccelerometerZ no
23133
- CameraType no
23134
- DateTimeOriginal no
23135
- EmbeddedImage no
23136
- ExposureTime no
23137
- FNumber no
23138
- FirmwareVersion no
23139
- FocalLength no
23140
- FocalPlaneXResolution no
23141
- FrameExposureTime no
23142
- ISO no
23143
- ImageLimitExposureBias no
23144
- ImageModulationExposureBias no
23145
- JSONMetadata no+
23146
- LensTemperature no
23147
- Make no
23148
- Model no
23149
- Orientation no
23150
- SensorSerialNumber no
23151
- SerialNumber no
23152
- SocTemperature no
23153
-
23154
23370
  =head2 JFIF Tags
23155
23371
 
23156
23372
  The following information is extracted from the JPEG JFIF header. See
@@ -23746,6 +23962,7 @@ L<https://github.com/gopro/gpmf-parser> for details about this format.
23746
23962
 
23747
23963
  Tag ID Tag Name Writable
23748
23964
  ------ -------- --------
23965
+ 'AALP' AudioLevel no
23749
23966
  'ACCL' Accelerometer no
23750
23967
  'ALLD' AutoLowLightDuration no
23751
23968
  'ATTD' Attitude no
@@ -23753,6 +23970,7 @@ L<https://github.com/gopro/gpmf-parser> for details about this format.
23753
23970
  'AUDO' AudioSetting no
23754
23971
  'BPOS' Controller? no
23755
23972
  'CASN' CameraSerialNumber no
23973
+ 'CORI' CameraOrientation no
23756
23974
  'CSEN' CoyoteSense no
23757
23975
  'CYTS' CoyoteStatus no
23758
23976
  'DEVC' DeviceContainer GoPro GPMF
@@ -23770,10 +23988,14 @@ L<https://github.com/gopro/gpmf-parser> for details about this format.
23770
23988
  'GLPI' GPSPos GoPro GLPI
23771
23989
  'GPRI' GPSRaw? GoPro GPRI
23772
23990
  'GPS5' GPSInfo GoPro GPS5
23991
+ 'GPSA' GPSAltitudeSystem no
23773
23992
  'GPSF' GPSMeasureMode no
23774
23993
  'GPSP' GPSHPositioningError no
23775
23994
  'GPSU' GPSDateTime no
23995
+ 'GRAV' GravityVector no
23776
23996
  'GYRO' Gyroscope no
23997
+ 'HUES' PrediminantHue no
23998
+ 'IORI' ImageOrientation no
23777
23999
  'ISOE' ISOSpeeds no
23778
24000
  'ISOG' ImageSensorGain no
23779
24001
  'KBAT' BatteryStatus GoPro KBAT
@@ -23782,6 +24004,7 @@ L<https://github.com/gopro/gpmf-parser> for details about this format.
23782
24004
  'MINF' Model no
23783
24005
  'MTRX' AccelerometerMatrix no
23784
24006
  'MUID' MediaUniqueID no
24007
+ 'MWET' MicrophoneWet no
23785
24008
  'OREN' AutoRotation no
23786
24009
  'ORIN' InputOrientation no
23787
24010
  'ORIO' OutputOrientation no
@@ -23797,6 +24020,7 @@ L<https://github.com/gopro/gpmf-parser> for details about this format.
23797
24020
  'RATE' Rate no
23798
24021
  'RMRK' Comments no
23799
24022
  'SCAL' ScaleFactor? no
24023
+ 'SCEN' SceneClassification no
23800
24024
  'SCPR' ScaledPressure no
23801
24025
  'SHUT' ExposureTimes no
23802
24026
  'SIMU' ScaledIMU no
@@ -23815,7 +24039,9 @@ L<https://github.com/gopro/gpmf-parser> for details about this format.
23815
24039
  'VFOV' FieldOfView no
23816
24040
  'VFRH' VisualFlightRulesHUD no
23817
24041
  'WBAL' ColorTemperatures no
24042
+ 'WNDM' WindProcessing no
23818
24043
  'WRGB' WhiteBalanceRGB no
24044
+ 'YAVG' LumaAverage no
23819
24045
 
23820
24046
  =head3 GoPro GLPI Tags
23821
24047
 
@@ -25143,12 +25369,21 @@ chunk.
25143
25369
 
25144
25370
  =head2 Jpeg2000 Tags
25145
25371
 
25146
- The tags below are found in JPEG 2000 images and the JUMBF metadata in JPEG
25147
- images, but not all of these are extracted. Note that ExifTool currently
25148
- writes only EXIF, IPTC and XMP tags in Jpeg2000 images, and EXIF and XMP in
25149
- JXL images. ExifTool will read/write Brotli-compressed EXIF and XMP in JXL
25150
- images, but the API Compress option must be set to create new EXIF and XMP
25151
- in compressed format.
25372
+ The tags below are found in JPEG 2000 images and the C2PA CAI JUMBF metadata
25373
+ in various file types (see below). Note that ExifTool currently writes only
25374
+ EXIF, IPTC and XMP tags in Jpeg2000 images, and EXIF and XMP in JXL images.
25375
+ ExifTool will read/write Brotli-compressed EXIF and XMP in JXL images, but
25376
+ the API Compress option must be set to create new EXIF and XMP in compressed
25377
+ format.
25378
+
25379
+ C2PA (Coalition for Content Provenance and Authenticity) CAI (Content
25380
+ Authenticity Initiative) JUMBF (JPEG Universal Metadata Box Format) metdata
25381
+ is currently extracted from JPEG, PNG, TIFF-based (eg. TIFF, DNG),
25382
+ QuickTime-based (eg. MP4, MOV, HEIF, AVIF), RIFF-based (eg. WAV, AVI, WebP),
25383
+ GIF files and ID3v2 metadata. The suggested ExifTool command-line arguments
25384
+ for reading C2PA metadata are C<-jumbf:all -G3 -b -j -u -struct>. This
25385
+ metadata may be deleted from writable JPEG, PNG, WebP, TIFF-based, and
25386
+ QuickTime-based files by deleting the JUMBF group with C<-jumbf:all=>.
25152
25387
 
25153
25388
  Tag ID Tag Name Writable
25154
25389
  ------ -------- --------
@@ -25217,8 +25452,8 @@ in compressed format.
25217
25452
  UUID-XMP XMP
25218
25453
  UUID-GeoJP2 EXIF
25219
25454
  UUID-Photoshop Photoshop
25455
+ UUID-C2PAClaimSignature CBOR
25220
25456
  UUID-Signature no
25221
- UUID-C2PAClaimSignature -
25222
25457
  UUID-Unknown no
25223
25458
  'xml ' XML XMP XML
25224
25459
  XMP -
@@ -25292,41 +25527,6 @@ Information extracted from the JUMBF description box.
25292
25527
  8 DisplayYResolutionUnit no
25293
25528
  9 DisplayXResolutionUnit no
25294
25529
 
25295
- =head2 JSON Tags
25296
-
25297
- Other than a few tags in the table below, JSON tags have not been
25298
- pre-defined. However, ExifTool will read any existing tags from basic
25299
- JSON-formatted files.
25300
-
25301
- Tag Name Writable
25302
- -------- --------
25303
- ON1_SettingsData PLIST
25304
- ON1_SettingsMetadataCreated no
25305
- ON1_SettingsMetadataModified no
25306
- ON1_SettingsMetadataName no
25307
- ON1_SettingsMetadataPluginID no
25308
- ON1_SettingsMetadataTimestamp no
25309
- ON1_SettingsMetadataUsage no
25310
- ON1_SettingsMetadataVisibleToUser no
25311
-
25312
- =head2 CBOR Tags
25313
-
25314
- The tags below are extracted from CBOR (Concise Binary Object
25315
- Representation) metadata. The C2PA specification uses this format for some
25316
- metadata. As well as these tags, ExifTool will read any existing tags.
25317
-
25318
- Tag Name Writable
25319
- -------- --------
25320
- AuthorIdentifier no
25321
- AuthorName no
25322
- DocumentID no
25323
- Format no
25324
- InstanceID no
25325
- Relationship no
25326
- ThumbnailHash no+
25327
- ThumbnailURL no
25328
- Title no
25329
-
25330
25530
  =head2 APP12 Tags
25331
25531
 
25332
25532
  =head3 APP12 PictureInfo Tags
@@ -26926,6 +27126,7 @@ Tags extracted from GIF89a application extensions.
26926
27126
 
26927
27127
  Tag ID Tag Name Writable
26928
27128
  ------ -------- --------
27129
+ 'C2PA_GIF/' JUMBF Jpeg2000
26929
27130
  'ICCRGBG1/012' ICC_Profile ICC_Profile
26930
27131
  'MIDICTRL/Jon' MIDIControl GIF MIDIControl
26931
27132
  'MIDISONG/Dm7' MIDISong no
@@ -28590,8 +28791,11 @@ ID3 version 2.2 tags. (These are the tags written by iTunes 5.0.)
28590
28791
  ------ -------- --------
28591
28792
  'CNT' PlayCounter no
28592
28793
  'COM' Comment no
28794
+ 'GP1' Grouping no
28593
28795
  'IPL' InvolvedPeople no
28594
28796
  'ITU' iTunesU? no
28797
+ 'MVI' MovementNumber no
28798
+ 'MVN' MovementName no
28595
28799
  'PCS' Podcast? no
28596
28800
  'PIC' Picture no
28597
28801
  'PIC-1' PictureFormat no
@@ -28673,6 +28877,7 @@ software.
28673
28877
  'APIC-2' PictureType no
28674
28878
  'APIC-3' PictureDescription no
28675
28879
  'COMM' Comment no
28880
+ 'GEOB' GeneralEncapsulatedObject ID3 GEOB
28676
28881
  'GRP1' Grouping no
28677
28882
  'IPLS' InvolvedPeople no
28678
28883
  'ITNU' iTunesU? no
@@ -28749,6 +28954,16 @@ software.
28749
28954
  'XSOP' PerformerSortOrder no
28750
28955
  'XSOT' TitleSortOrder no
28751
28956
 
28957
+ =head3 ID3 GEOB Tags
28958
+
28959
+ Tag ID Tag Name Writable
28960
+ ------ -------- --------
28961
+ 'GEOB-Data' GEOB-Data no
28962
+ 'GEOB-Desc' GEOB-Desc no
28963
+ 'GEOB-File' GEOB-File no
28964
+ 'GEOB-Mime' GEOB-Mime no
28965
+ 'application/x-c2pa-manifest-store' JUMBF Jpeg2000
28966
+
28752
28967
  =head3 ID3 Private Tags
28753
28968
 
28754
28969
  ID3 private (PRIV) tags. ExifTool will decode any private tags found, even
@@ -28778,6 +28993,7 @@ software.
28778
28993
  'APIC-2' PictureType no
28779
28994
  'APIC-3' PictureDescription no
28780
28995
  'COMM' Comment no
28996
+ 'GEOB' GeneralEncapsulatedObject ID3 GEOB
28781
28997
  'GRP1' Grouping no
28782
28998
  'ITNU' iTunesU? no
28783
28999
  'MCDI' MusicCDIdentifier no
@@ -29013,6 +29229,8 @@ for the official specification.
29013
29229
  UUID-Flip QuickTime Flip
29014
29230
  UUID-Canon2 Canon uuid2
29015
29231
  SensorData QuickTime Tags360Fly
29232
+ JUMBF Jpeg2000
29233
+ CBOR CBOR
29016
29234
  SensorData no
29017
29235
  PreviewImage no
29018
29236
  UUID-Unknown? no
@@ -29023,7 +29241,7 @@ for the official specification.
29023
29241
  The tags below are extracted from timed metadata in QuickTime and other
29024
29242
  formats of video files when the ExtractEmbedded option is used. Although
29025
29243
  most of these tags are combined into the single table below, ExifTool
29026
- currently reads 66 different formats of timed GPS metadata from video files.
29244
+ currently reads 67 different formats of timed GPS metadata from video files.
29027
29245
 
29028
29246
  Tag Name Writable
29029
29247
  -------- --------
@@ -29228,6 +29446,7 @@ changed via the config file.
29228
29446
  FrameReadoutTime yes
29229
29447
  'camera.identifier' CameraIdentifier yes
29230
29448
  'collection.user' UserCollection yes
29449
+ 'com.android.capture.fps' AndroidCaptureFPS yes
29231
29450
  'com.android.version' AndroidVersion yes
29232
29451
  'com.apple.photos.captureMode' CaptureMode yes
29233
29452
  'comment' Comment yes
@@ -29246,6 +29465,7 @@ changed via the config file.
29246
29465
  'direction.motion' CameraMotion yes
29247
29466
  'director' Director yes
29248
29467
  'displayname' DisplayName yes
29468
+ 'encoder' Encoder yes
29249
29469
  'genre' Genre yes
29250
29470
  'information' Information yes
29251
29471
  'keywords' Keywords yes
@@ -30205,6 +30425,11 @@ the config file.
30205
30425
  MakerNotePentaxUnknown string
30206
30426
  'PXTH' PentaxPreview Pentax PXTH
30207
30427
  'QVMI' CasioQVMI EXIF
30428
+ 'RDTA' RicohRDTA Ricoh RDTA
30429
+ 'RDTB' RicohRDTB Ricoh RDTB
30430
+ 'RDTC' RicohRDTC Ricoh RDTC
30431
+ 'RDTG' RicohRDTG Ricoh RDTG
30432
+ 'RDTL' RicohRDTL Ricoh RDTL
30208
30433
  'RMKN' RicohRMKN EXIF
30209
30434
  'RTHU' PreviewImage no
30210
30435
  'SDLN' PlayMode string
@@ -30620,6 +30845,7 @@ metadata to WEBP images, but can't yet write to other RIFF-based formats.
30620
30845
  'ALPH' ALPH RIFF ALPH
30621
30846
  'ANIM' ANIM RIFF ANIM
30622
30847
  'ANMF' ANMF RIFF ANMF
30848
+ 'C2PA' JUMBF Jpeg2000
30623
30849
  'CSET' CharacterSet RIFF CSET
30624
30850
  'EXIF' EXIF EXIF
30625
30851
  UnknownEXIF no
@@ -31244,6 +31470,15 @@ ARCore accelerometer data.
31244
31470
  ------ -------- --------
31245
31471
  [no tags known]
31246
31472
 
31473
+ =head2 AAC Tags
31474
+
31475
+ Tag ID Tag Name Writable
31476
+ ------ -------- --------
31477
+ 'Bit016-017' ProfileType no
31478
+ 'Bit018-021' SampleRate no
31479
+ 'Bit023-025' Channels no
31480
+ 'Encoder' Encoder no
31481
+
31247
31482
  =head2 Ogg Tags
31248
31483
 
31249
31484
  ExifTool extracts the following types of information from Ogg files. See
@@ -38736,11 +38971,10 @@ Tags extracted from V-Note VNT files.
38736
38971
  Although basic text files contain no metadata, the following tags are
38737
38972
  determined from a simple analysis of the data in TXT and CSV files.
38738
38973
  Statistics are generated only for 8-bit encodings, but the FastScan (-fast)
38739
- option may be used to limit processing to the first 64 kB in which case some
38740
- tags are not produced. To avoid long processing delays, ExifTool will issue
38741
- a minor warning and process only the first 64 kB of any file larger than 20
38742
- MB unless the IgnoreMinorErrors (-m)
38743
- option is used.
38974
+ option may be used to limit processing to the first 64 KiB in which case
38975
+ some tags are not produced. To avoid long processing delays, ExifTool will
38976
+ issue a minor warning and process only the first 64 KiB of any file larger
38977
+ than 20 MiB unless the IgnoreMinorErrors (-m) option is used.
38744
38978
 
38745
38979
  Tag Name Writable
38746
38980
  -------- --------
@@ -39459,6 +39693,8 @@ values, may created via the ExifTool configuration file.
39459
39693
  GPSLongitudeRef XMP-exif:GPSLongitude no
39460
39694
  GPSPosition GPSLatitude yes!
39461
39695
  GPSLongitude
39696
+ HiddenData Sony:HiddenDataOffset no
39697
+ Sony:HiddenDataLength
39462
39698
  HyperfocalDistance FocalLength no
39463
39699
  Aperture
39464
39700
  CircleOfConfusion