exiftool_vendored 12.17.1 → 12.32.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (82) hide show
  1. checksums.yaml +4 -4
  2. data/bin/Changes +225 -1
  3. data/bin/MANIFEST +23 -0
  4. data/bin/META.json +1 -1
  5. data/bin/META.yml +1 -1
  6. data/bin/README +45 -43
  7. data/bin/arg_files/xmp2exif.args +2 -1
  8. data/bin/config_files/acdsee.config +193 -6
  9. data/bin/config_files/convert_regions.config +25 -14
  10. data/bin/config_files/cuepointlist.config +70 -0
  11. data/bin/config_files/example.config +2 -9
  12. data/bin/exiftool +142 -87
  13. data/bin/fmt_files/gpx.fmt +2 -2
  14. data/bin/fmt_files/gpx_wpt.fmt +2 -2
  15. data/bin/fmt_files/kml.fmt +1 -1
  16. data/bin/fmt_files/kml_track.fmt +1 -1
  17. data/bin/lib/Image/ExifTool/Apple.pm +3 -2
  18. data/bin/lib/Image/ExifTool/BuildTagLookup.pm +30 -12
  19. data/bin/lib/Image/ExifTool/CBOR.pm +277 -0
  20. data/bin/lib/Image/ExifTool/Canon.pm +49 -18
  21. data/bin/lib/Image/ExifTool/DJI.pm +6 -6
  22. data/bin/lib/Image/ExifTool/DPX.pm +13 -2
  23. data/bin/lib/Image/ExifTool/DjVu.pm +6 -5
  24. data/bin/lib/Image/ExifTool/Exif.pm +28 -11
  25. data/bin/lib/Image/ExifTool/FITS.pm +13 -2
  26. data/bin/lib/Image/ExifTool/FlashPix.pm +35 -10
  27. data/bin/lib/Image/ExifTool/FujiFilm.pm +19 -8
  28. data/bin/lib/Image/ExifTool/GPS.pm +22 -11
  29. data/bin/lib/Image/ExifTool/Geotag.pm +13 -2
  30. data/bin/lib/Image/ExifTool/GoPro.pm +16 -1
  31. data/bin/lib/Image/ExifTool/ICC_Profile.pm +2 -2
  32. data/bin/lib/Image/ExifTool/ID3.pm +15 -3
  33. data/bin/lib/Image/ExifTool/JPEG.pm +74 -4
  34. data/bin/lib/Image/ExifTool/JSON.pm +27 -4
  35. data/bin/lib/Image/ExifTool/Jpeg2000.pm +393 -16
  36. data/bin/lib/Image/ExifTool/LIF.pm +153 -0
  37. data/bin/lib/Image/ExifTool/Lang/nl.pm +60 -59
  38. data/bin/lib/Image/ExifTool/M2TS.pm +137 -5
  39. data/bin/lib/Image/ExifTool/MIE.pm +4 -3
  40. data/bin/lib/Image/ExifTool/MRC.pm +341 -0
  41. data/bin/lib/Image/ExifTool/MWG.pm +3 -3
  42. data/bin/lib/Image/ExifTool/MXF.pm +1 -1
  43. data/bin/lib/Image/ExifTool/MacOS.pm +1 -1
  44. data/bin/lib/Image/ExifTool/Microsoft.pm +298 -82
  45. data/bin/lib/Image/ExifTool/Nikon.pm +19 -8
  46. data/bin/lib/Image/ExifTool/NikonSettings.pm +28 -11
  47. data/bin/lib/Image/ExifTool/Olympus.pm +6 -3
  48. data/bin/lib/Image/ExifTool/Other.pm +93 -0
  49. data/bin/lib/Image/ExifTool/PDF.pm +9 -12
  50. data/bin/lib/Image/ExifTool/PNG.pm +8 -7
  51. data/bin/lib/Image/ExifTool/Panasonic.pm +28 -3
  52. data/bin/lib/Image/ExifTool/Pentax.pm +28 -5
  53. data/bin/lib/Image/ExifTool/PhaseOne.pm +4 -3
  54. data/bin/lib/Image/ExifTool/Photoshop.pm +6 -0
  55. data/bin/lib/Image/ExifTool/QuickTime.pm +247 -88
  56. data/bin/lib/Image/ExifTool/QuickTimeStream.pl +283 -141
  57. data/bin/lib/Image/ExifTool/README +3 -0
  58. data/bin/lib/Image/ExifTool/RIFF.pm +89 -12
  59. data/bin/lib/Image/ExifTool/Samsung.pm +48 -10
  60. data/bin/lib/Image/ExifTool/Shortcuts.pm +9 -0
  61. data/bin/lib/Image/ExifTool/Sony.pm +237 -78
  62. data/bin/lib/Image/ExifTool/TagInfoXML.pm +1 -0
  63. data/bin/lib/Image/ExifTool/TagLookup.pm +4125 -4028
  64. data/bin/lib/Image/ExifTool/TagNames.pod +644 -286
  65. data/bin/lib/Image/ExifTool/Torrent.pm +18 -11
  66. data/bin/lib/Image/ExifTool/WriteExif.pl +1 -1
  67. data/bin/lib/Image/ExifTool/WriteIPTC.pl +1 -1
  68. data/bin/lib/Image/ExifTool/WritePDF.pl +1 -0
  69. data/bin/lib/Image/ExifTool/WritePNG.pl +2 -0
  70. data/bin/lib/Image/ExifTool/WritePostScript.pl +1 -0
  71. data/bin/lib/Image/ExifTool/WriteQuickTime.pl +55 -21
  72. data/bin/lib/Image/ExifTool/WriteXMP.pl +7 -3
  73. data/bin/lib/Image/ExifTool/Writer.pl +47 -10
  74. data/bin/lib/Image/ExifTool/XMP.pm +39 -14
  75. data/bin/lib/Image/ExifTool/XMP2.pl +2 -1
  76. data/bin/lib/Image/ExifTool/XMPStruct.pl +3 -1
  77. data/bin/lib/Image/ExifTool/ZISRAW.pm +121 -2
  78. data/bin/lib/Image/ExifTool.pm +223 -72
  79. data/bin/lib/Image/ExifTool.pod +114 -93
  80. data/bin/perl-Image-ExifTool.spec +43 -42
  81. data/lib/exiftool_vendored/version.rb +1 -1
  82. metadata +28 -13
@@ -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 24075 tags, with 15588 unique tag names.
15
+ They contain a total of 24338 tags, with 15779 unique tag names.
16
16
 
17
17
  B<Tag ID>, B<Index#> or B<Sequence> is given in the first column of each
18
18
  table. A B<Tag ID> is the computer-readable equivalent of a tag name, and
@@ -115,6 +115,7 @@ L<https://www.w3.org/Graphics/JPEG/jfif3.pdf> for the JPEG specification.
115
115
  PreviewImage no
116
116
  'APP3' Meta Kodak Meta
117
117
  Stim Stim
118
+ JPS JPEG JPS
118
119
  ThermalData no
119
120
  PreviewImage no
120
121
  'APP4' Scalado Scalado
@@ -137,6 +138,7 @@ L<https://www.w3.org/Graphics/JPEG/jfif3.pdf> for the JPEG specification.
137
138
  'APP9' MediaJukebox JPEG MediaJukebox
138
139
  'APP10' Comment no
139
140
  'APP11' JPEG-HDR JPEG HDR
141
+ JUMBF Jpeg2000
140
142
  'APP12' PictureInfo APP12 PictureInfo
141
143
  Ducky APP12 Ducky
142
144
  'APP13' Photoshop Photoshop
@@ -173,6 +175,18 @@ images).
173
175
  ------ -------- --------
174
176
  'Rev' OcadRevision no
175
177
 
178
+ =head3 JPEG JPS Tags
179
+
180
+ Tags found in JPEG Stereo (JPS) images.
181
+
182
+ Index1 Tag Name Writable
183
+ ------ -------- --------
184
+ 10 JPSSeparation no
185
+ 11 JPSFlags no
186
+ 12 JPSLayout no
187
+ 13 JPSType no
188
+ 16 JPSComment no
189
+
176
190
  =head3 JPEG EPPIM Tags
177
191
 
178
192
  APP6 is used in by the Toshiba PDR-M700 to store a TIFF structure containing
@@ -3505,7 +3519,8 @@ These tags belong to the ExifTool XMP-iptcCore family 1 group.
3505
3519
 
3506
3520
  This table contains tags defined by the IPTC Extension schema version 1.5.
3507
3521
  The actual namespace prefix is "Iptc4xmpExt", but ExifTool shortens this for
3508
- the family 1 group name. (see L<http://www.iptc.org/IPTC4XMP/>)
3522
+ the family 1 group name. (see
3523
+ L<http://www.iptc.org/standards/photo-metadata/iptc-standard/>)
3509
3524
 
3510
3525
  These tags belong to the ExifTool XMP-iptcExt family 1 group.
3511
3526
 
@@ -5886,7 +5901,7 @@ Tags extracted from the maker notes of iPhone images.
5886
5901
  0x0008 AccelerationVector rational64s[3]
5887
5902
  0x000a HDRImageType int32s
5888
5903
  0x000b BurstUUID string
5889
- 0x0011 ContentIdentifier string
5904
+ 0x0011 MediaGroupUUID string
5890
5905
  0x0015 ImageUniqueID string
5891
5906
 
5892
5907
  =head3 Apple RunTime Tags
@@ -5923,6 +5938,7 @@ Unknown only to reduce the volume of the normal output.
5923
5938
  0x0023 FocusPointWrap no
5924
5939
  0x0025 ManualFocusPointIllumination no
5925
5940
  0x0026 AF-AssistIlluminator no
5941
+ 0x0027 ManualFocusRingInAFMode no
5926
5942
  0x0029 ISOStepSize no
5927
5943
  0x002a ExposureControlStepSize no
5928
5944
  0x002b EasyExposureCompensation no
@@ -6100,6 +6116,9 @@ Unknown only to reduce the volume of the normal output.
6100
6116
  0x016b LimitAF-AreaModeSelWideLPeople? no
6101
6117
  0x016c LimitAF-AreaModeSelWideLAnimals? no
6102
6118
  0x016e AFAreaMode no
6119
+ 0x0170 PreferSubSelectorCenter no
6120
+ 0x0171 KeepExposureWithTeleconverter no
6121
+ 0x0174 FocusPointSelectionSpeed no
6103
6122
 
6104
6123
  =head2 Canon Tags
6105
6124
 
@@ -6879,6 +6898,7 @@ CameraInfo tags for the EOS 60D and 1200D.
6879
6898
  25 CameraTemperature int8u
6880
6899
  30 FocalLength int16uRev
6881
6900
  54 CameraOrientation int8u
6901
+ 58 CameraOrientation int8u
6882
6902
  85 FocusDistanceUpper int16uRev
6883
6903
  87 FocusDistanceLower int16uRev
6884
6904
  125 ColorTemperature int16u
@@ -6916,7 +6936,7 @@ CameraInfo tags for the EOS 70D.
6916
6936
 
6917
6937
  =head3 Canon CameraInfo80D Tags
6918
6938
 
6919
- CameraInfo tags for the EOS 70D.
6939
+ CameraInfo tags for the EOS 80D.
6920
6940
 
6921
6941
  Index1 Tag Name Writable
6922
6942
  ------ -------- --------
@@ -7084,6 +7104,7 @@ CameraInfo tags for the EOS 750D and 760D.
7084
7104
  6 ISO int8u
7085
7105
  27 CameraTemperature int8u
7086
7106
  35 FocalLength int16uRev
7107
+ 150 CameraOrientation int8u
7087
7108
  165 FocusDistanceUpper int16uRev
7088
7109
  167 FocusDistanceLower int16uRev
7089
7110
  305 WhiteBalance int16u
@@ -9930,6 +9951,8 @@ Tags extracted from FLIR Public image Format (FPF) files.
9930
9951
  0x1100 AutoBracketing int16u
9931
9952
  0x1101 SequenceNumber int16u
9932
9953
  0x1103 DriveSettings FujiFilm DriveSettings
9954
+ 0x1105 PixelShiftShots int16u
9955
+ 0x1106 PixelShiftOffset rational64s[2]
9933
9956
  0x1153 PanoramaAngle int16u
9934
9957
  0x1154 PanoramaDirection int16u
9935
9958
  0x1201 AdvancedFilter int32u
@@ -9986,10 +10009,11 @@ Tags extracted from FLIR Public image Format (FPF) files.
9986
10009
 
9987
10010
  Index4 Tag Name Writable
9988
10011
  ------ -------- --------
9989
- 0.1 FocusMode2 int32u & 0xff
9990
- 0.2 AFAreaMode int32u & 0xf00
9991
- 0.3 AFAreaPointSize int32u & 0xf000
9992
- 0.4 AFAreaZoneSize int32u & 0xf0000
10012
+ 0.1 FocusMode2 int32u & 0x0f
10013
+ 0.2 PreAF int32u & 0xf0
10014
+ 0.3 AFAreaMode int32u & 0xf00
10015
+ 0.4 AFAreaPointSize int32u & 0xf000
10016
+ 0.5 AFAreaZoneSize int32u & 0xf0000
9993
10017
 
9994
10018
  =head3 FujiFilm AFCSettings Tags
9995
10019
 
@@ -15598,6 +15622,7 @@ These tags are used in Panasonic/Leica cameras.
15598
15622
  0x00d1 ISO int32u
15599
15623
  0x00d2 MonochromeGrainEffect int16u
15600
15624
  0x00d6 NoiseReductionStrength rational64s
15625
+ 0x00e4 LensTypeModel int16u
15601
15626
  0x0e00 PrintIM PrintIM
15602
15627
  0x2003 TimeInfo Panasonic TimeInfo
15603
15628
  0x8000 MakerNoteVersion undef
@@ -15799,6 +15824,9 @@ This information is written by the Leica S (Typ 007) and M10 models.
15799
15824
  0x034c UserProfile string
15800
15825
  0x0359 ISOSelected int32s
15801
15826
  0x035a FNumber int32s
15827
+ 0x035b CorrelatedColorTemp int16u
15828
+ 0x035c ColorTint int16s
15829
+ 0x035d WhitePoint rational64u[2]
15802
15830
 
15803
15831
  =head3 Panasonic Type2 Tags
15804
15832
 
@@ -15952,6 +15980,7 @@ These tags are used in Pentax/Asahi cameras.
15952
15980
  0x008b ISO int32u
15953
15981
  0x0092 IntervalShooting int16u[2]
15954
15982
  0x0095 SkinToneCorrection int8s[2]
15983
+ SkinToneCorrection int8s[3]
15955
15984
  0x0096 ClarityControl int8s[2]
15956
15985
  0x0200 BlackPoint int16u[4]
15957
15986
  0x0201 WhitePoint int16u[4]
@@ -15984,6 +16013,8 @@ These tags are used in Pentax/Asahi cameras.
15984
16013
  0x0215 CameraInfo Pentax CameraInfo
15985
16014
  0x0216 BatteryInfo Pentax BatteryInfo
15986
16015
  0x021b SaturationInfo? no
16016
+ 0x021c ColorMatrixA2 undef[18]
16017
+ 0x021d ColorMatrixB2 undef[18]
15987
16018
  0x021f AFInfo Pentax AFInfo
15988
16019
  0x0220 HuffmanTable? no
15989
16020
  0x0221 KelvinWB Pentax KelvinWB
@@ -17012,11 +17043,13 @@ Camera orientation information written by the Gear 360 (SM-C200).
17012
17043
 
17013
17044
  Tags extracted from the trailer of JPEG images written when using certain
17014
17045
  features (such as "Sound & Shot" or "Shot & More") from Samsung models such
17015
- as the Galaxy S4 and Tab S.
17046
+ as the Galaxy S4 and Tab S, and from the 'sefd' atom in HEIC images from the
17047
+ Samsung S10+.
17016
17048
 
17017
17049
  Tag Name Writable
17018
17050
  -------- --------
17019
17051
  DepthMapData no
17052
+ DepthMapData2 no
17020
17053
  DepthMapName no
17021
17054
  DualCameraImage no
17022
17055
  DualCameraImageName no
@@ -17024,9 +17057,11 @@ as the Galaxy S4 and Tab S.
17024
17057
  EmbeddedAudioFile no
17025
17058
  EmbeddedAudioFileName no
17026
17059
  EmbeddedImage no
17060
+ EmbeddedImage2 no
17027
17061
  EmbeddedImageName no
17028
17062
  EmbeddedVideoFile no
17029
17063
  EmbeddedVideoType no
17064
+ MCCData no
17030
17065
  SingleShotDepthMap no
17031
17066
  SingleShotMeta Samsung SingleShotMeta
17032
17067
  SurroundShotVideo no
@@ -17511,6 +17546,13 @@ MakerNotes.
17511
17546
  0x202e Quality int16u[2]
17512
17547
  0x202f PixelShiftInfo undef
17513
17548
  0x2031 SerialNumber string
17549
+ 0x2032 Shadows int32s
17550
+ 0x2033 Highlights int32s
17551
+ 0x2034 Fade int32s
17552
+ 0x2035 SharpnessRange int32s
17553
+ 0x2036 Clarity int32s
17554
+ 0x2037 FocusFrameSize no
17555
+ 0x2039 JPEG-HEIFSwitch int16u
17514
17556
  0x3000 ShotInfo Sony ShotInfo
17515
17557
  0x900b Tag900b Sony Tag900b
17516
17558
  0x9050 Tag9050a Sony Tag9050a
@@ -18597,7 +18639,7 @@ Valid from July 2015 for ILCE-6100/6300/6400/6500/6600/7C/7M3/7RM2/7RM3/7RM4/
18597
18639
 
18598
18640
  =head3 Sony Tag9050c Tags
18599
18641
 
18600
- Valid from July 2020 for ILCE-7SM3.
18642
+ Valid from July 2020 for ILCE-1/7SM3, ILME-FX3.
18601
18643
 
18602
18644
  Index1 Tag Name Writable
18603
18645
  ------ -------- --------
@@ -18612,6 +18654,7 @@ Valid from July 2020 for ILCE-7SM3.
18612
18654
  104 SonyFNumber int16u
18613
18655
  107 ReleaseMode2 int8u
18614
18656
  136 InternalSerialNumber int8u[6]~
18657
+ 138 InternalSerialNumber int8u[6]~
18615
18658
 
18616
18659
  =head3 Sony Tag9400a Tags
18617
18660
 
@@ -18652,7 +18695,7 @@ DSC-HX50V, DSC-QX10/QX100.
18652
18695
 
18653
18696
  Valid for DSC-HX60V/HX80/HX90V/HX99/HX350/HX400V/QX30/RX0/RX1RM2/RX10/
18654
18697
  RX10M2/RX10M3/RX10M4/RX100M3/RX100M4/RX100M5/RX100M5A/RX100M6/RX100M7/WX220/
18655
- WX350/WX500, ILCE-7/7C/7R/7S/7M2/7M3/7RM2/7RM3/7RM4/7SM2/7SM3/9/9M2/5000/
18698
+ WX350/WX500, ILCE-1/7/7C/7R/7S/7M2/7M3/7RM2/7RM3/7RM4/7SM2/7SM3/9/9M2/5000/
18656
18699
  5100/6000/6100/6300/6400/6500/6600/QX1, ILCA-68/77M2/99M2.
18657
18700
 
18658
18701
  Index1 Tag Name Writable
@@ -18813,7 +18856,7 @@ These tags are currently extracted for SLT models only.
18813
18856
 
18814
18857
  =head3 Sony Tag940c Tags
18815
18858
 
18816
- NEX and ILCE models only.
18859
+ E-mount cameras only.
18817
18860
 
18818
18861
  Index1 Tag Name Writable
18819
18862
  ------ -------- --------
@@ -19003,7 +19046,7 @@ E-mount models.
19003
19046
 
19004
19047
  =head3 Sony Tag9416 Tags
19005
19048
 
19006
- Valid for the ILCE-7SM3.
19049
+ Valid for the ILCE-1/7SM3, ILME-FX3.
19007
19050
 
19008
19051
  Index1 Tag Name Writable
19009
19052
  ------ -------- --------
@@ -19198,6 +19241,11 @@ some models when the ExtractEmbedded option is used.
19198
19241
 
19199
19242
  Tag ID Tag Name Writable
19200
19243
  ------ -------- --------
19244
+ 0x8000 FNumber no
19245
+ 0x8109 ExposureTime no
19246
+ 0x810a MasterGainAdjustment no
19247
+ 0x810b ISO no
19248
+ 0x810c ElectricalExtenderMagnification no
19201
19249
  0x8500 GPSVersionID no
19202
19250
  0x8501 GPSLatitudeRef no
19203
19251
  0x8502 GPSLatitude no
@@ -19208,7 +19256,10 @@ some models when the ExtractEmbedded option is used.
19208
19256
  0x850a GPSMeasureMode no
19209
19257
  0x8512 GPSMapDatum no
19210
19258
  0x851d GPSDateStamp no
19259
+ 0xe303 WhiteBalance no
19211
19260
  0xe304 DateTime no
19261
+ 0xe43b PitchRollYaw no
19262
+ 0xe44b Accelerometer no
19212
19263
 
19213
19264
  =head2 SonyIDC Tags
19214
19265
 
@@ -20455,6 +20506,7 @@ L<https://github.com/gopro/gpmf-parser> for details about this format.
20455
20506
  'EISA' ElectronicImageStabilization no
20456
20507
  'EMPT' Empty? no
20457
20508
  'ESCS' EscapeStatus? no
20509
+ 'EXPT' MaximumShutterAngle no
20458
20510
  'FACE' FaceDetected no
20459
20511
  'FCNM' FaceNumbers no
20460
20512
  'FMWR' FirmwareVersion no
@@ -20472,7 +20524,11 @@ L<https://github.com/gopro/gpmf-parser> for details about this format.
20472
20524
  'LNED' LocalPositionNED no
20473
20525
  'MAGN' Magnetometer no
20474
20526
  'MINF' Model no
20527
+ 'MTRX' AccelerometerMatrix no
20528
+ 'MUID' MediaUniqueID no
20475
20529
  'OREN' AutoRotation no
20530
+ 'ORIN' InputOrientation no
20531
+ 'ORIO' OutputOrientation no
20476
20532
  'PHDR' HDRSetting no
20477
20533
  'PIMN' AutoISOMin no
20478
20534
  'PIMX' AutoISOMax no
@@ -20489,6 +20545,7 @@ L<https://github.com/gopro/gpmf-parser> for details about this format.
20489
20545
  'SHUT' ExposureTimes no
20490
20546
  'SIMU' ScaledIMU no
20491
20547
  'SIUN' SIUnits? no
20548
+ 'SROT' SensorReadoutTime no
20492
20549
  'STMP' TimeStamp no
20493
20550
  'STNM' StreamName? no
20494
20551
  'STRM' NestedSignalStream GoPro GPMF
@@ -20496,6 +20553,7 @@ L<https://github.com/gopro/gpmf-parser> for details about this format.
20496
20553
  'TMPC' CameraTemperature no
20497
20554
  'TSMP' TotalSamples? no
20498
20555
  'TYPE' StructureType? no
20556
+ 'UNIF' InputUniformity no
20499
20557
  'UNIT' Units? no
20500
20558
  'VERS' MetadataVersion no
20501
20559
  'VFOV' FieldOfView no
@@ -21763,6 +21821,200 @@ even if it is not listed in this table.
21763
21821
  YhiYloCorK1 no
21764
21822
  YhiYloCorK2 no
21765
21823
 
21824
+ =head2 Jpeg2000 Tags
21825
+
21826
+ The tags below are found in JPEG 2000 images and the JUMBF metadata in JPEG
21827
+ images, but not all of these are extracted. Note that ExifTool currently
21828
+ writes only EXIF, IPTC and XMP tags in Jpeg2000 images.
21829
+
21830
+ Tag ID Tag Name Writable
21831
+ ------ -------- --------
21832
+ 'Exif' EXIF EXIF
21833
+ 'asoc' Association Jpeg2000
21834
+ 'bfdb' BinaryDataType no
21835
+ 'bfil' BinaryFilter no
21836
+ 'bidb' BinaryData no
21837
+ 'bpcc' BitsPerComponent no
21838
+ 'cbor' CBORData CBOR
21839
+ 'cdef' ComponentDefinition no
21840
+ 'cgrp' ColorGroup no
21841
+ 'chck' DigitalSignature no
21842
+ 'cmap' ComponentMapping no
21843
+ 'colr' ColorSpecification Jpeg2000 ColorSpec
21844
+ 'comp' Composition no
21845
+ 'copt' CompositionOptions no
21846
+ 'cref' Cross-Reference no
21847
+ 'creg' CodestreamRegistration no
21848
+ 'drep' DesiredReproductions no
21849
+ 'dtbl' DataReference no
21850
+ 'flst' FragmentList no
21851
+ 'free' Free no
21852
+ 'ftbl' FragmentTable no
21853
+ 'ftyp' FileType Jpeg2000 FileType
21854
+ 'gtso' GraphicsTechnologyStandardOutput no
21855
+ 'ihdr' ImageHeader Jpeg2000 ImageHeader
21856
+ 'inst' InstructionSet no
21857
+ 'jP ' JP2Signature no
21858
+ 'jp2c' ContiguousCodestream no
21859
+ PreviewImage no
21860
+ 'jp2h' JP2Header Jpeg2000
21861
+ 'jp2i' IntellectualProperty XMP
21862
+ 'jpch' CodestreamHeader Jpeg2000
21863
+ 'jplh' CompositingLayerHeader Jpeg2000
21864
+ 'json' JSONData JSON
21865
+ 'jumb' JUMBFBox Jpeg2000
21866
+ 'jumd' JUMBFDescr Jpeg2000 JUMD
21867
+ 'jxlc' JXLCodestream no
21868
+ 'lbl ' Label no
21869
+ 'mdat' MediaData no
21870
+ 'mp7b' MPEG7Binary no
21871
+ 'nlst' NumberList no
21872
+ 'opct' Opacity no
21873
+ 'pclr' Palette no
21874
+ 'prfl' Profile no
21875
+ 'res ' Resolution Jpeg2000
21876
+ 'resc' CaptureResolution Jpeg2000 CaptureResolution
21877
+ 'resd' DisplayResolution Jpeg2000 DisplayResolution
21878
+ 'roid' ROIDescription no
21879
+ 'rreq' ReaderRequirements no
21880
+ 'uinf' UUIDInfo Jpeg2000
21881
+ 'ulst' UUIDList no
21882
+ 'url ' URL no
21883
+ 'uuid' UUID-EXIF EXIF
21884
+ UUID-EXIF2 EXIF
21885
+ UUID-EXIF_bad EXIF
21886
+ UUID-IPTC IPTC
21887
+ UUID-IPTC2 IPTC
21888
+ UUID-XMP XMP
21889
+ UUID-GeoJP2 EXIF
21890
+ UUID-Photoshop Photoshop
21891
+ UUID-Signature no
21892
+ UUID-C2PAClaimSignature -
21893
+ UUID-Unknown no
21894
+ 'xml ' XML XMP XML
21895
+ XMP -
21896
+ XMP
21897
+
21898
+ =head3 Jpeg2000 ColorSpec Tags
21899
+
21900
+ Index1 Tag Name Writable
21901
+ ------ -------- --------
21902
+ 0 ColorSpecMethod no
21903
+ 1 ColorSpecPrecedence no
21904
+ 2 ColorSpecApproximation no
21905
+ 3 ICC_Profile ICC_Profile
21906
+ ColorSpace no
21907
+ ColorSpecData no
21908
+
21909
+ =head3 Jpeg2000 FileType Tags
21910
+
21911
+ Index4 Tag Name Writable
21912
+ ------ -------- --------
21913
+ 0 MajorBrand no
21914
+ 1 MinorVersion no
21915
+ 2 CompatibleBrands no
21916
+
21917
+ =head3 Jpeg2000 ImageHeader Tags
21918
+
21919
+ Index1 Tag Name Writable
21920
+ ------ -------- --------
21921
+ 0 ImageHeight no
21922
+ 4 ImageWidth no
21923
+ 8 NumberOfComponents no
21924
+ 10 BitsPerComponent no
21925
+ 11 Compression no
21926
+
21927
+ =head3 Jpeg2000 JUMD Tags
21928
+
21929
+ Information extracted from the JUMBF description box.
21930
+
21931
+ Tag ID Tag Name Writable
21932
+ ------ -------- --------
21933
+ 'id' JUMDID no
21934
+ 'label' JUMDLabel no
21935
+ 'sig' JUMDSignature no
21936
+ 'toggles' JUMDToggles? no
21937
+ 'type' JUMDType no
21938
+
21939
+ =head3 Jpeg2000 CaptureResolution Tags
21940
+
21941
+ Index1 Tag Name Writable
21942
+ ------ -------- --------
21943
+ 0 CaptureYResolution no
21944
+ 4 CaptureXResolution no
21945
+ 8 CaptureYResolutionUnit no
21946
+ 9 CaptureXResolutionUnit no
21947
+
21948
+ =head3 Jpeg2000 DisplayResolution Tags
21949
+
21950
+ Index1 Tag Name Writable
21951
+ ------ -------- --------
21952
+ 0 DisplayYResolution no
21953
+ 4 DisplayXResolution no
21954
+ 8 DisplayYResolutionUnit no
21955
+ 9 DisplayXResolutionUnit no
21956
+
21957
+ =head2 JSON Tags
21958
+
21959
+ Other than a few tags in the table below, JSON tags have not been
21960
+ pre-defined. However, ExifTool will read any existing tags from basic
21961
+ JSON-formatted files.
21962
+
21963
+ Tag Name Writable
21964
+ -------- --------
21965
+ ON1_SettingsData PLIST
21966
+ ON1_SettingsMetadataCreated no
21967
+ ON1_SettingsMetadataModified no
21968
+ ON1_SettingsMetadataName no
21969
+ ON1_SettingsMetadataPluginID no
21970
+ ON1_SettingsMetadataTimestamp no
21971
+ ON1_SettingsMetadataUsage no
21972
+ ON1_SettingsMetadataVisibleToUser no
21973
+
21974
+ =head2 CBOR Tags
21975
+
21976
+ The tags below are extracted from CBOR (Concise Binary Object
21977
+ Representation) metadata. The C2PA specification uses this format for some
21978
+ metadata. As well as these tags, ExifTool will read any existing tags.
21979
+
21980
+ Tag Name Writable
21981
+ -------- --------
21982
+ AuthorIdentifier no
21983
+ AuthorName no
21984
+ DocumentID no
21985
+ Format no
21986
+ InstanceID no
21987
+ Relationship no
21988
+ ThumbnailHash no+
21989
+ ThumbnailURL no
21990
+ Title no
21991
+
21992
+ =head2 PLIST Tags
21993
+
21994
+ Apple Property List tags. ExifTool reads both XML and binary-format PLIST
21995
+ files, and will extract any existing tags even if they aren't listed below.
21996
+ These tags belong to the family 0 "PLIST" group, but family 1 group may be
21997
+ either "XML" or "PLIST" depending on whether the format is XML or binary.
21998
+
21999
+ Tag ID Tag Name Writable
22000
+ ------ -------- --------
22001
+ 'MetaDataList//DateTimeOriginal'
22002
+ DateTimeOriginal no
22003
+ 'MetaDataList//Duration' Duration no
22004
+ 'MetaDataList//Geolocation/Latitude'
22005
+ GPSLatitude no
22006
+ 'MetaDataList//Geolocation/Longitude'
22007
+ GPSLongitude no
22008
+ 'MetaDataList//Geolocation/MapDatum'
22009
+ GPSMapDatum no
22010
+ 'XMLFileType' XMLFileType no
22011
+ 'cast//name' Cast no+
22012
+ 'codirectors//name' Codirectors no+
22013
+ 'directors//name' Directors no+
22014
+ 'producers//name' Producers no+
22015
+ 'screenwriters//name' Screenwriters no+
22016
+ 'studio//name' Studio no+
22017
+
21766
22018
  =head2 APP12 Tags
21767
22019
 
21768
22020
  =head3 APP12 PictureInfo Tags
@@ -22507,8 +22759,13 @@ Windows Live Photo Gallery.
22507
22759
 
22508
22760
  =head3 Microsoft Xtra Tags
22509
22761
 
22510
- Tags extracted from the Microsoft "Xtra" atom of QuickTime videos. Tag ID's
22511
- are not shown because some are unruly GUID's.
22762
+ Tags found in the Microsoft "Xtra" atom of QuickTime videos. Tag ID's are
22763
+ not shown because some are unruly GUID's. Currently most of these tags are
22764
+ not writable because the Microsoft documentation is poor and samples were
22765
+ not available, but more tags may be made writable in the future if samples
22766
+ are provided. Note that writable tags in this table are are flagged to
22767
+ "Avoid", which means that other more common tags will be written instead if
22768
+ possible unless the Microsoft group is specified explicitly.
22512
22769
 
22513
22770
  Tag Name Writable
22514
22771
  -------- --------
@@ -22520,13 +22777,13 @@ are not shown because some are unruly GUID's.
22520
22777
  AcquisitionTimeYear no
22521
22778
  AcquisitionTimeYearMonth no
22522
22779
  AcquisitionTimeYearMonthDay no
22523
- AlbumArtist no
22780
+ AlbumArtist Unicode/
22524
22781
  AlbumArtist no
22525
22782
  AlbumArtistSortOrder no
22526
- AlbumCoverURL no
22783
+ AlbumCoverURL Unicode/
22527
22784
  AlbumID no
22528
22785
  AlbumIDAlbumArtist no
22529
- AlbumTitle no
22786
+ AlbumTitle Unicode/
22530
22787
  AlbumTitle no
22531
22788
  AlbumTitleSortOrder no
22532
22789
  AlternateSourceURL no
@@ -22543,6 +22800,7 @@ are not shown because some are unruly GUID's.
22543
22800
  Author no
22544
22801
  Author no
22545
22802
  AuthorSortOrder no
22803
+ AuthorURL Unicode/
22546
22804
  AutoSummary no
22547
22805
  AverageLevel no
22548
22806
  BccAddresses no
@@ -22575,7 +22833,7 @@ are not shown because some are unruly GUID's.
22575
22833
  CameraModel no
22576
22834
  CameraModel no
22577
22835
  CarPhone no
22578
- Category no
22836
+ Category Unicode/+
22579
22837
  Category no
22580
22838
  CcAddresses no
22581
22839
  CcNames no
@@ -22594,13 +22852,13 @@ are not shown because some are unruly GUID's.
22594
22852
  Company no
22595
22853
  CompanyMainPhone no
22596
22854
  Complete no
22597
- Composer no
22855
+ Composer Unicode/
22598
22856
  Composers no
22599
22857
  Computer no
22600
- Conductor no
22858
+ Conductor Unicode/+
22601
22859
  Conductors no
22602
22860
  ContactNames no
22603
- ContentDistributor no
22861
+ ContentDistributor Unicode/
22604
22862
  ContentDistributorDuration no
22605
22863
  ContentDistributorType no
22606
22864
  ContentGroupDescription no
@@ -22623,7 +22881,7 @@ are not shown because some are unruly GUID's.
22623
22881
  DataRate no
22624
22882
  Date no
22625
22883
  DateAccessed no
22626
- DateAcquired no
22884
+ DateAcquired vt_filetime/
22627
22885
  DateArchived no
22628
22886
  DateCompleted no
22629
22887
  DateCreated no
@@ -22640,7 +22898,7 @@ are not shown because some are unruly GUID's.
22640
22898
  Description no
22641
22899
  Description no
22642
22900
  Dimensions no
22643
- Director no
22901
+ Director Unicode/+
22644
22902
  Directors no
22645
22903
  DisplayArtist no
22646
22904
  Division no
@@ -22654,8 +22912,9 @@ are not shown because some are unruly GUID's.
22654
22912
  E-mailAddress no
22655
22913
  E-mailDisplayName no
22656
22914
  E-mailList no
22915
+ EncodedBy Unicode/
22657
22916
  EncodedBy no
22658
- EncodingTime no
22917
+ EncodingTime date/
22659
22918
  EndDate no
22660
22919
  EntryType no
22661
22920
  EpisodeName no
@@ -22713,7 +22972,7 @@ are not shown because some are unruly GUID's.
22713
22972
  ISOSpeed no
22714
22973
  Importance no
22715
22974
  Incomplete no
22716
- InitialKey no
22975
+ InitialKey Unicode/
22717
22976
  InitialKey no
22718
22977
  Initials no
22719
22978
  IsAttachment no
@@ -22747,8 +23006,8 @@ are not shown because some are unruly GUID's.
22747
23006
  MCDI no
22748
23007
  MailingAddress no
22749
23008
  MaxAperture no
22750
- MediaClassPrimaryID no
22751
- MediaClassSecondaryID no
23009
+ MediaClassPrimaryID GUID/
23010
+ MediaClassSecondaryID GUID/
22752
23011
  MediaContentTypes no
22753
23012
  MediaCreated no
22754
23013
  MediaOriginalBroadcastDateTime no
@@ -22759,7 +23018,7 @@ are not shown because some are unruly GUID's.
22759
23018
  MiddleName no
22760
23019
  Mileage no
22761
23020
  ModifiedBy no
22762
- Mood no
23021
+ Mood Unicode/
22763
23022
  Mood no
22764
23023
  MoreInfo no
22765
23024
  Name no
@@ -22772,9 +23031,9 @@ are not shown because some are unruly GUID's.
22772
23031
  OrganizerAddress no
22773
23032
  OrganizerName no
22774
23033
  Orientation no
22775
- OriginalAlbumTitle no
22776
- OriginalArtist no
22777
- OriginalLyricist no
23034
+ OriginalAlbumTitle Unicode/
23035
+ OriginalArtist Unicode/
23036
+ OriginalLyricist Unicode/
22778
23037
  OtherAddress no
22779
23038
  OtherCity no
22780
23039
  OtherCountry-Region no
@@ -22786,7 +23045,7 @@ are not shown because some are unruly GUID's.
22786
23045
  POBox no
22787
23046
  Pager no
22788
23047
  Pages no
22789
- ParentalRating no
23048
+ ParentalRating Unicode/
22790
23049
  ParentalRating no
22791
23050
  ParentalRatingReason no
22792
23051
  PartOfSet no
@@ -22796,7 +23055,7 @@ are not shown because some are unruly GUID's.
22796
23055
  Path no
22797
23056
  PeakValue no
22798
23057
  PerceivedType no
22799
- Period no
23058
+ Period Unicode/
22800
23059
  Period no
22801
23060
  PersonalTitle no
22802
23061
  PixelAspectRatioX no
@@ -22806,7 +23065,7 @@ are not shown because some are unruly GUID's.
22806
23065
  PrimaryE-mail no
22807
23066
  PrimaryPhone no
22808
23067
  Priority no
22809
- Producer no
23068
+ Producer Unicode/+
22810
23069
  Producers no
22811
23070
  ProductName no
22812
23071
  ProductVersion no
@@ -22815,15 +23074,16 @@ are not shown because some are unruly GUID's.
22815
23074
  ProgramMode no
22816
23075
  ProgramName no
22817
23076
  Project no
23077
+ PromotionURL Unicode/
22818
23078
  Protected no
22819
23079
  ProtectionType no
22820
23080
  Provider no
22821
- Provider no
23081
+ Provider Unicode/
22822
23082
  ProviderLogoURL no
22823
23083
  ProviderRating no
22824
23084
  ProviderStyle no
22825
23085
  ProviderURL no
22826
- Publisher no
23086
+ Publisher Unicode/
22827
23087
  Publisher no
22828
23088
  RadioBand no
22829
23089
  RadioFormat no
@@ -22857,7 +23117,7 @@ are not shown because some are unruly GUID's.
22857
23117
  Sensitivity no
22858
23118
  ShadowFilePath no
22859
23119
  Shared no
22860
- SharedUserRating no
23120
+ SharedUserRating int64u/
22861
23121
  SharedWith no
22862
23122
  Size no
22863
23123
  Slides no
@@ -22878,7 +23138,7 @@ are not shown because some are unruly GUID's.
22878
23138
  Subject no
22879
23139
  SubjectDistance no
22880
23140
  SubscriptionContentID no
22881
- Subtitle no
23141
+ Subtitle Unicode/
22882
23142
  Subtitle no
22883
23143
  SubtitleDescription no
22884
23144
  Suffix no
@@ -22957,7 +23217,7 @@ are not shown because some are unruly GUID's.
22957
23217
  WhiteBalance no
22958
23218
  WindowsFileName no
22959
23219
  WordCount no
22960
- Writer no
23220
+ Writer Unicode/
22961
23221
  Writers no
22962
23222
  Year no
22963
23223
  Year no
@@ -23311,113 +23571,6 @@ to avoid name conflicts.
23311
23571
  'Duration' Duration rational64u~
23312
23572
  'data' RelatedVideoFile undef
23313
23573
 
23314
- =head2 Jpeg2000 Tags
23315
-
23316
- The tags below are extracted from JPEG 2000 images, however ExifTool
23317
- currently writes only EXIF, IPTC and XMP tags in these images.
23318
-
23319
- Tag ID Tag Name Writable
23320
- ------ -------- --------
23321
- 'asoc' Association Jpeg2000
23322
- 'bfil' BinaryFilter no
23323
- 'bpcc' BitsPerComponent no
23324
- 'cdef' ComponentDefinition no
23325
- 'cgrp' ColorGroup no
23326
- 'chck' DigitalSignature no
23327
- 'cmap' ComponentMapping no
23328
- 'colr' ColorSpecification Jpeg2000 ColorSpec
23329
- 'comp' Composition no
23330
- 'copt' CompositionOptions no
23331
- 'cref' Cross-Reference no
23332
- 'creg' CodestreamRegistration no
23333
- 'drep' DesiredReproductions no
23334
- 'dtbl' DataReference no
23335
- 'flst' FragmentList no
23336
- 'free' Free no
23337
- 'ftbl' FragmentTable no
23338
- 'ftyp' FileType Jpeg2000 FileType
23339
- 'gtso' GraphicsTechnologyStandardOutput no
23340
- 'ihdr' ImageHeader Jpeg2000 ImageHeader
23341
- 'inst' InstructionSet no
23342
- 'jP ' JP2Signature no
23343
- 'jp2c' ContiguousCodestream no
23344
- 'jp2h' JP2Header Jpeg2000
23345
- 'jp2i' IntellectualProperty XMP
23346
- 'jpch' CodestreamHeader Jpeg2000
23347
- 'jplh' CompositingLayerHeader Jpeg2000
23348
- 'lbl ' Label no
23349
- 'mdat' MediaData no
23350
- 'mp7b' MPEG7Binary no
23351
- 'nlst' NumberList no
23352
- 'opct' Opacity no
23353
- 'pclr' Palette no
23354
- 'prfl' Profile no
23355
- 'res ' Resolution Jpeg2000
23356
- 'resc' CaptureResolution Jpeg2000 CaptureResolution
23357
- 'resd' DisplayResolution Jpeg2000 DisplayResolution
23358
- 'roid' ROIDescription no
23359
- 'rreq' ReaderRequirements no
23360
- 'uinf' UUIDInfo Jpeg2000
23361
- 'ulst' UUIDList no
23362
- 'url ' URL no
23363
- 'uuid' UUID-EXIF EXIF
23364
- UUID-EXIF2 EXIF
23365
- UUID-EXIF_bad EXIF
23366
- UUID-IPTC IPTC
23367
- UUID-IPTC2 IPTC
23368
- UUID-XMP XMP
23369
- UUID-GeoJP2 EXIF
23370
- UUID-Photoshop Photoshop
23371
- UUID-Unknown no
23372
- 'xml ' XML XMP XML
23373
-
23374
- =head3 Jpeg2000 ColorSpec Tags
23375
-
23376
- Index1 Tag Name Writable
23377
- ------ -------- --------
23378
- 0 ColorSpecMethod no
23379
- 1 ColorSpecPrecedence no
23380
- 2 ColorSpecApproximation no
23381
- 3 ICC_Profile ICC_Profile
23382
- ColorSpace no
23383
- ColorSpecData no
23384
-
23385
- =head3 Jpeg2000 FileType Tags
23386
-
23387
- Index4 Tag Name Writable
23388
- ------ -------- --------
23389
- 0 MajorBrand no
23390
- 1 MinorVersion no
23391
- 2 CompatibleBrands no
23392
-
23393
- =head3 Jpeg2000 ImageHeader Tags
23394
-
23395
- Index1 Tag Name Writable
23396
- ------ -------- --------
23397
- 0 ImageHeight no
23398
- 4 ImageWidth no
23399
- 8 NumberOfComponents no
23400
- 10 BitsPerComponent no
23401
- 11 Compression no
23402
-
23403
- =head3 Jpeg2000 CaptureResolution Tags
23404
-
23405
- Index1 Tag Name Writable
23406
- ------ -------- --------
23407
- 0 CaptureYResolution no
23408
- 4 CaptureXResolution no
23409
- 8 CaptureYResolutionUnit no
23410
- 9 CaptureXResolutionUnit no
23411
-
23412
- =head3 Jpeg2000 DisplayResolution Tags
23413
-
23414
- Index1 Tag Name Writable
23415
- ------ -------- --------
23416
- 0 DisplayYResolution no
23417
- 4 DisplayXResolution no
23418
- 8 DisplayYResolutionUnit no
23419
- 9 DisplayXResolutionUnit no
23420
-
23421
23574
  =head2 GIF Tags
23422
23575
 
23423
23576
  This table lists information extracted from GIF images. See
@@ -23831,6 +23984,8 @@ available. Alternate language tags and values containing special characters
23831
23984
  if the Compress option is used and Compress::Zlib is available. Raw profile
23832
23985
  information is always created as compressed zTXt if Compress::Zlib is
23833
23986
  available, or tEXt otherwise. Standard XMP is written as uncompressed iTXt.
23987
+ User-defined tags may set an 'iTXt' flag in the tag definition to be written
23988
+ only as iTXt.
23834
23989
 
23835
23990
  Alternate languages are accessed by suffixing the tag name with a '-',
23836
23991
  followed by an RFC 3066 language code (eg. "PNG:Comment-fr", or
@@ -24264,6 +24419,7 @@ Tags extracted from DPX (Digital Picture Exchange) images.
24264
24419
  1532 SourceCreateDate no
24265
24420
  1556 InputDeviceName no
24266
24421
  1588 InputDeviceSerialNumber no
24422
+ 1628 AspectRatio no
24267
24423
  1724 OriginalFrameRate no
24268
24424
  1728 ShutterAngle no
24269
24425
  1732 FrameID no
@@ -24330,6 +24486,165 @@ files.
24330
24486
  48 PrimaryFileGUID no
24331
24487
  64 FileGUID no
24332
24488
 
24489
+ =head2 MRC Tags
24490
+
24491
+ Tags extracted from Medical Research Council (MRC) format imaging files.
24492
+ See L<https://www.ccpem.ac.uk/mrc_format/mrc2014.php> for the specification.
24493
+
24494
+ Index4 Tag Name Writable
24495
+ ------ -------- --------
24496
+ 0 ImageWidth no
24497
+ 1 ImageHeight no
24498
+ 2 ImageDepth no
24499
+ 3 ImageMode no
24500
+ 4 StartPoint no
24501
+ 7 GridSize no
24502
+ 10 CellWidth no
24503
+ 11 CellHeight no
24504
+ 12 CellDepth no
24505
+ 13 CellAlpha no
24506
+ 14 CellBeta no
24507
+ 15 CellGamma no
24508
+ 16 ImageWidthAxis no
24509
+ 17 ImageHeightAxis no
24510
+ 18 ImageDepthAxis no
24511
+ 19 DensityMin no
24512
+ 20 DensityMax no
24513
+ 21 DensityMean no
24514
+ 22 SpaceGroupNumber no
24515
+ 23 ExtendedHeaderSize no
24516
+ 26 ExtendedHeaderType no
24517
+ 27 MRCVersion no
24518
+ 49 Origin no
24519
+ 53 MachineStamp no
24520
+ 54 RMSDeviation no
24521
+ 55 NumberOfLabels no
24522
+ 56 Label0 no
24523
+ 76 Label1 no
24524
+ 96 Label2 no
24525
+ 116 Label3 no
24526
+ 136 Label4 no
24527
+ 156 Label5 no
24528
+ 176 Label6 no
24529
+ 196 Label7 no
24530
+ 216 Label8 no
24531
+ 236 Label9 no
24532
+
24533
+ =head3 MRC FEI12 Tags
24534
+
24535
+ Tags extracted from FEI1 and FEI2 extended headers.
24536
+
24537
+ Index1 Tag Name Writable
24538
+ ------ -------- --------
24539
+ 0 MetadataSize no
24540
+ 4 MetadataVersion no
24541
+ 8 Bitmask1 no
24542
+ 12 TimeStamp no
24543
+ 20 MicroscopeType no
24544
+ 36 MicroscopeID no
24545
+ 52 Application no
24546
+ 68 AppVersion no
24547
+ 84 HighTension no
24548
+ 92 Dose no
24549
+ 100 AlphaTilt no
24550
+ 108 BetaTilt no
24551
+ 116 XStage no
24552
+ 124 YStage no
24553
+ 132 ZStage no
24554
+ 140 TiltAxisAngle no
24555
+ 148 DualAxisRot no
24556
+ 156 PixelSizeX no
24557
+ 164 PixelSizeY no
24558
+ 220 Defocus no
24559
+ 228 STEMDefocus no
24560
+ 236 AppliedDefocus no
24561
+ 244 InstrumentMode no
24562
+ 248 ProjectionMode no
24563
+ 252 ObjectiveLens no
24564
+ 268 HighMagnificationMode no
24565
+ 284 ProbeMode no
24566
+ 288 EFTEMOn no
24567
+ 289 Magnification no
24568
+ 297 Bitmask2 no
24569
+ 301 CameraLength no
24570
+ 309 SpotIndex no
24571
+ 313 IlluminationArea no
24572
+ 321 Intensity no
24573
+ 329 ConvergenceAngle no
24574
+ 337 IlluminationMode no
24575
+ 353 WideConvergenceAngleRange no
24576
+ 354 SlitInserted no
24577
+ 355 SlitWidth no
24578
+ 363 AccelVoltOffset no
24579
+ 371 DriftTubeVolt no
24580
+ 379 EnergyShift no
24581
+ 387 ShiftOffsetX no
24582
+ 395 ShiftOffsetY no
24583
+ 403 ShiftX no
24584
+ 411 ShiftY no
24585
+ 419 IntegrationTime no
24586
+ 427 BinningWidth no
24587
+ 431 BinningHeight no
24588
+ 435 CameraName no
24589
+ 451 ReadoutAreaLeft no
24590
+ 455 ReadoutAreaTop no
24591
+ 459 ReadoutAreaRight no
24592
+ 463 ReadoutAreaBottom no
24593
+ 467 CetaNoiseReduct no
24594
+ 468 CetaFramesSummed no
24595
+ 472 DirectDetElectronCounting no
24596
+ 473 DirectDetAlignFrames no
24597
+ 490 Bitmask3 no
24598
+ 518 PhasePlate no
24599
+ 519 STEMDetectorName no
24600
+ 535 Gain no
24601
+ 543 Offset no
24602
+ 571 DwellTime no
24603
+ 579 FrameTime no
24604
+ 587 ScanSizeLeft no
24605
+ 591 ScanSizeTop no
24606
+ 595 ScanSizeRight no
24607
+ 599 ScanSizeBottom no
24608
+ 603 FullScanFOV_X no
24609
+ 611 FullScanFOV_Y no
24610
+ 619 Element no
24611
+ 635 EnergyIntervalLower no
24612
+ 643 EnergyIntervalHigher no
24613
+ 651 Method no
24614
+ 655 IsDoseFraction no
24615
+ 656 FractionNumber no
24616
+ 660 StartFrame no
24617
+ 664 EndFrame no
24618
+ 668 InputStackFilename no
24619
+ 748 Bitmask4 no
24620
+ 752 AlphaTiltMin no
24621
+ 760 AlphaTiltMax no
24622
+ 768 ScanRotation no
24623
+ 776 DiffractionPatternRotation no
24624
+ 784 ImageRotation no
24625
+ 792 ScanModeEnumeration no
24626
+ 796 AcquisitionTimeStamp no
24627
+ 804 DetectorCommercialName no
24628
+ 820 StartTiltAngle no
24629
+ 828 EndTiltAngle no
24630
+ 836 TiltPerImage no
24631
+ 844 TitlSpeed no
24632
+ 852 BeamCenterX no
24633
+ 856 BeamCenterY no
24634
+ 860 CFEGFlashTimeStamp no
24635
+ 868 PhasePlatePosition no
24636
+ 872 ObjectiveAperture no
24637
+
24638
+ =head2 LIF Tags
24639
+
24640
+ Tags extracted from Leica Image Format (LIF) imaging files. As well as the
24641
+ tags listed below, all available information is extracted from the
24642
+ XML-format metadata in the LIF header.
24643
+
24644
+ Tag Name Writable
24645
+ -------- --------
24646
+ TimeStampList no
24647
+
24333
24648
  =head2 MIFF Tags
24334
24649
 
24335
24650
  The MIFF (Magick Image File Format) format allows aribrary tag names to be
@@ -24516,6 +24831,18 @@ specification.
24516
24831
  'software' Software no
24517
24832
  'view' View no
24518
24833
 
24834
+ =head3 Other PFM Tags
24835
+
24836
+ Tags extracted from Portable FloatMap images. See
24837
+ L<http://www.pauldebevec.com/Research/HDR/PFM/> for the specification.
24838
+
24839
+ Tag Name Writable
24840
+ -------- --------
24841
+ ByteOrder no
24842
+ ColorSpace no
24843
+ ImageHeight no
24844
+ ImageWidth no
24845
+
24519
24846
  =head2 PDF Tags
24520
24847
 
24521
24848
  The tags listed in the PDF tables below are those which are used by ExifTool
@@ -24694,11 +25021,12 @@ This is the PDF document catalog.
24694
25021
 
24695
25022
  Tag ID Tag Name Writable
24696
25023
  ------ -------- --------
24697
- 'Cs1' Cs1 PDF Cs1
25024
+ 'CS0' CS0 PDF ICCBased
25025
+ 'Cs1' Cs1 PDF ICCBased
24698
25026
  'DefaultCMYK' DefaultCMYK PDF DefaultRGB
24699
25027
  'DefaultRGB' DefaultRGB PDF DefaultRGB
24700
25028
 
24701
- =head3 PDF Cs1 Tags
25029
+ =head3 PDF ICCBased Tags
24702
25030
 
24703
25031
  Tag ID Tag Name Writable
24704
25032
  ------ -------- --------
@@ -24710,12 +25038,6 @@ This is the PDF document catalog.
24710
25038
  ------ -------- --------
24711
25039
  'ICCBased' ICCBased PDF ICCBased
24712
25040
 
24713
- =head3 PDF ICCBased Tags
24714
-
24715
- Tag ID Tag Name Writable
24716
- ------ -------- --------
24717
- '_stream' _stream ICC_Profile
24718
-
24719
25041
  =head3 PDF Properties Tags
24720
25042
 
24721
25043
  Tag ID Tag Name Writable
@@ -24827,8 +25149,8 @@ Additional document permissions imposed by digital signatures.
24827
25149
 
24828
25150
  =head2 ID3 Tags
24829
25151
 
24830
- ExifTool extracts ID3 and Lyrics3 information from MP3, MPEG, AIFF, OGG,
24831
- FLAC, APE, MPC and RealAudio files. ID3v2 tags which support multiple
25152
+ ExifTool extracts ID3 and Lyrics3 information from MP3, MPEG, WAV, AIFF,
25153
+ OGG, FLAC, APE, MPC and RealAudio files. ID3v2 tags which support multiple
24832
25154
  languages (eg. Comment and Lyrics) are extracted by specifying the tag name,
24833
25155
  followed by a dash ('-'), then a 3-character ISO 639-2 language code (eg.
24834
25156
  "Comment-spa"). See L<http://www.id3.org/> for the official ID3
@@ -25695,11 +26017,13 @@ L<UserData|Image::ExifTool::TagNames/QuickTime UserData Tags>, and
25695
26017
  finally in L<Keys|Image::ExifTool::TagNames/QuickTime Keys Tags>,
25696
26018
  but this order may be changed by setting the PREFERRED level of the
25697
26019
  appropriate table in the config file (see
25698
- example.config in the full distribution for
25699
- an example). ExifTool currently writes only top-level metadata in
25700
- QuickTime-based files; it extracts other track-specific and timed
25701
- metadata, but can not yet edit tags in these locations (with the
25702
- exception of track-level date/time tags).
26020
+ example.config in the full distribution for an
26021
+ example). Note that some tags with the same name but different ID's may
26022
+ exist in the same location, but the family 7 group names may be used to
26023
+ differentiate these. ExifTool currently writes only top-level metadata in
26024
+ QuickTime-based files; it extracts other track-specific and timed metadata,
26025
+ but can not yet edit tags in these locations (with the exception of
26026
+ track-level date/time tags).
25703
26027
 
25704
26028
  Alternate language tags may be accessed for
25705
26029
  L<ItemList|Image::ExifTool::TagNames/QuickTime ItemList Tags> and
@@ -25724,8 +26048,8 @@ local time when extracting.
25724
26048
 
25725
26049
  When writing string-based date/time tags, the system time zone is added if
25726
26050
  the PrintConv option is enabled and no time zone is specified. This is
25727
- because Apple software may display a crazy values if the time zone is
25728
- missing for some tags.
26051
+ because Apple software may display crazy values if the time zone is missing
26052
+ for some tags.
25729
26053
 
25730
26054
  See
25731
26055
  L<https://developer.apple.com/library/archive/documentation/QuickTime/QTFF/>
@@ -25756,6 +26080,7 @@ for the official specification.
25756
26080
  'pict' PreviewPICT no
25757
26081
  'pnot' Preview QuickTime Preview
25758
26082
  'prrt' ARDroneTelemetry no
26083
+ 'sefd' SamsungTrailer Samsung Trailer
25759
26084
  'skip' CanonSkip Canon Skip
25760
26085
  PreviewImage no
25761
26086
  Skip? no
@@ -25797,10 +26122,10 @@ Tags found in Pittasoft Blackvue dashcam "free" data.
25797
26122
 
25798
26123
  =head3 QuickTime Stream Tags
25799
26124
 
25800
- Timed metadata extracted from QuickTime media data and some AVI videos when
25801
- the ExtractEmbedded option is used. Although most of these tags are
25802
- combined into the single table below, ExifTool currently reads 49 different
25803
- formats of timed GPS metadata from video files.
26125
+ The tags below are extracted from timed metadata in QuickTime and other
26126
+ formats of video files when the ExtractEmbedded option is used. Although
26127
+ most of these tags are combined into the single table below, ExifTool
26128
+ currently reads 57 different formats of timed GPS metadata from video files.
25804
26129
 
25805
26130
  Tag Name Writable
25806
26131
  -------- --------
@@ -25830,6 +26155,7 @@ formats of timed GPS metadata from video files.
25830
26155
  INSV QuickTime INSV_MakerNotes
25831
26156
  ISO no
25832
26157
  JpgFromRaw no
26158
+ KiloCalories no
25833
26159
  PreviewInfo QuickTime PreviewInfo
25834
26160
  RVMI_gReV QuickTime RVMI_gReV
25835
26161
  RVMI_sReV QuickTime RVMI_sReV
@@ -25855,8 +26181,10 @@ formats of timed GPS metadata from video files.
25855
26181
  camm6 QuickTime camm6
25856
26182
  camm7 QuickTime camm7
25857
26183
  fdsc GoPro fdsc
25858
- gpmd_GoPro GoPro GPMF
26184
+ gpmd_Kingslim QuickTime Stream
25859
26185
  gpmd_Rove QuickTime Stream
26186
+ gpmd_FMAS QuickTime Stream
26187
+ gpmd_GoPro GoPro GPMF
25860
26188
  marl QuickTime marl
25861
26189
  mebx QuickTime Keys
25862
26190
  mett Parrot mett
@@ -25989,66 +26317,75 @@ either of these tables, either the "Keys" location must be specified (eg.
25989
26317
  C<-Keys:Author=Phil> on the command line), or the PREFERRED level must be
25990
26318
  changed via the config file.
25991
26319
 
25992
- Tag ID Tag Name Writable
25993
- ------ -------- --------
25994
- 'Encoded_With' EncodedWith string
25995
- 'album' Album string
25996
- 'artist' Artist string
25997
- 'artwork' Artwork string
25998
- 'author' Author string
26320
+ Tag ID Tag Name Writable
26321
+ ------ -------- --------
26322
+ 'Encoded_With' EncodedWith yes
26323
+ 'album' Album yes
26324
+ 'apple.photos.variation-identifier'
26325
+ ApplePhotosVariationIdentifier int64s
26326
+ 'artist' Artist yes
26327
+ 'artwork' Artwork yes
26328
+ 'author' Author yes
25999
26329
  'camera.framereadouttimeinmicroseconds'
26000
- FrameReadoutTime string
26001
- 'camera.identifier' CameraIdentifier string
26002
- 'collection.user' UserCollection string
26003
- 'com.android.version' AndroidVersion string
26004
- 'com.apple.photos.captureMode' CaptureMode string
26005
- 'comment' Comment string
26006
- 'copyright' Copyright string
26007
- 'creationdate' CreationDate string
26008
- 'description' Description string
26009
- 'detected-face' FaceInfo QuickTime FaceInfo
26010
- 'detected-face.bounds' DetectedFaceBounds no
26330
+ FrameReadoutTime yes
26331
+ 'camera.identifier' CameraIdentifier yes
26332
+ 'collection.user' UserCollection yes
26333
+ 'com.android.version' AndroidVersion yes
26334
+ 'com.apple.photos.captureMode' CaptureMode yes
26335
+ 'comment' Comment yes
26336
+ 'copyright' Copyright yes
26337
+ 'creationdate' CreationDate yes
26338
+ 'description' Description yes
26339
+ 'detected-face' FaceInfo QuickTime FaceInfo
26340
+ 'detected-face.bounds' DetectedFaceBounds no
26011
26341
  'detected-face.face-id' DetectedFaceID no
26012
26342
  'detected-face.roll-angle'
26013
- DetectedFaceRollAngle no
26343
+ DetectedFaceRollAngle no
26014
26344
  'detected-face.yaw-angle'
26015
- DetectedFaceYawAngle no
26016
- 'direction.facing' CameraDirection string
26017
- 'direction.motion' CameraMotion string
26018
- 'director' Director string
26019
- 'displayname' DisplayName string
26020
- 'genre' Genre string
26021
- 'information' Information string
26022
- 'keywords' Keywords string
26023
- 'live-photo-info' LivePhotoInfo no
26024
- 'location.ISO6709' GPSCoordinates string
26025
- 'location.body' LocationBody string
26026
- 'location.date' LocationDate string
26027
- 'location.name' LocationName string
26028
- 'location.note' LocationNote string
26029
- 'location.role' LocationRole string
26030
- 'make' Make string
26031
- 'model' Model string
26032
- 'player.movie.audio.balance' Balance string
26033
- 'player.movie.audio.bass' Bass string
26034
- 'player.movie.audio.gain' AudioGain string
26345
+ DetectedFaceYawAngle no
26346
+ 'direction.facing' CameraDirection yes
26347
+ 'direction.motion' CameraMotion yes
26348
+ 'director' Director yes
26349
+ 'displayname' DisplayName yes
26350
+ 'genre' Genre yes
26351
+ 'information' Information yes
26352
+ 'keywords' Keywords yes
26353
+ 'live-photo-info' LivePhotoInfo no
26354
+ 'live-photo.auto' LivePhotoAuto int8u
26355
+ 'live-photo.vitality-score'
26356
+ LivePhotoVitalityScore float
26357
+ 'live-photo.vitality-scoring-version'
26358
+ LivePhotoVitalityScoringVersion int64s
26359
+ 'location.ISO6709' GPSCoordinates yes
26360
+ 'location.accuracy.horizontal'
26361
+ LocationAccuracyHorizontal yes
26362
+ 'location.body' LocationBody yes
26363
+ 'location.date' LocationDate yes
26364
+ 'location.name' LocationName yes
26365
+ 'location.note' LocationNote yes
26366
+ 'location.role' LocationRole yes
26367
+ 'make' Make yes
26368
+ 'model' Model yes
26369
+ 'player.movie.audio.balance' Balance yes
26370
+ 'player.movie.audio.bass' Bass yes
26371
+ 'player.movie.audio.gain' AudioGain yes
26035
26372
  'player.movie.audio.mute' Mute int8u
26036
- 'player.movie.audio.pitchshift' PitchShift string
26037
- 'player.movie.audio.treble' Trebel string
26038
- 'player.movie.visual.brightness' Brightness string
26039
- 'player.movie.visual.color' Color string
26040
- 'player.movie.visual.contrast' Contrast string
26041
- 'player.movie.visual.tint' Tint string
26042
- 'player.version' PlayerVersion string
26043
- 'producer' Producer string
26044
- 'publisher' Publisher string
26045
- 'rating.user' UserRating string
26046
- 'software' Software string
26047
- 'still-image-time' StillImageTime no
26048
- 'title' Title string
26049
- 'version' Version string
26050
- 'video-orientation' VideoOrientation no
26051
- 'year' Year string
26373
+ 'player.movie.audio.pitchshift' PitchShift yes
26374
+ 'player.movie.audio.treble' Trebel yes
26375
+ 'player.movie.visual.brightness' Brightness yes
26376
+ 'player.movie.visual.color' Color yes
26377
+ 'player.movie.visual.contrast' Contrast yes
26378
+ 'player.movie.visual.tint' Tint yes
26379
+ 'player.version' PlayerVersion yes
26380
+ 'producer' Producer yes
26381
+ 'publisher' Publisher yes
26382
+ 'rating.user' UserRating yes
26383
+ 'software' Software yes
26384
+ 'still-image-time' StillImageTime no
26385
+ 'title' Title yes
26386
+ 'version' Version yes
26387
+ 'video-orientation' VideoOrientation no
26388
+ 'year' Year yes
26052
26389
 
26053
26390
  =head3 QuickTime FaceInfo Tags
26054
26391
 
@@ -26165,9 +26502,9 @@ this table support alternate languages which are accessed by adding a
26165
26502
  3-character ISO 639-2 language code and an optional ISO 3166-1 alpha 2
26166
26503
  country code to the tag name (eg. "ItemList:Title-fra" or
26167
26504
  "ItemList::Title-fra-FR"). When creating a new Meta box to contain the
26168
- ItemList directory, by default ExifTool does not specify a
26169
- L<Handler|Image::ExifTool::TagNames/QuickTime Handler Tags>, but the
26170
- API QuickTimeHandler option may be used to include an 'mdir' Handler box.
26505
+ ItemList directory, by default ExifTool adds an 'mdir' (Metadata) Handler
26506
+ box because Apple software may ignore ItemList tags otherwise, but the API
26507
+ QuickTimeHandler option may be set to 0 to avoid this.
26171
26508
 
26172
26509
  Tag ID Tag Name Writable
26173
26510
  ------ -------- --------
@@ -26275,21 +26612,42 @@ API QuickTimeHandler option may be used to include an 'mdir' Handler box.
26275
26612
  =head3 QuickTime iTunesInfo Tags
26276
26613
 
26277
26614
  ExifTool will extract any iTunesInfo tags that exist, even if they are not
26278
- defined in this table.
26615
+ defined in this table. These tags belong to the family 1 "iTunes" group,
26616
+ and are not currently writable.
26279
26617
 
26280
26618
  Tag ID Tag Name Writable
26281
26619
  ------ -------- --------
26620
+ 'ARTISTS' Artists no
26621
+ 'BARCODE' Barcode no
26622
+ 'CATALOGNUMBER' CatalogNumber no
26282
26623
  'DISCNUMBER' DiscNumber no
26624
+ 'Dynamic Range (DR)' DynamicRange no
26625
+ 'Dynamic Range (R128)' DynamicRangeR128 no
26283
26626
  'Encoding Params' EncodingParams QuickTime EncodingParams
26627
+ 'LABEL' Label no
26628
+ 'MEDIA' Media no
26629
+ 'MOOD' Mood no
26630
+ 'Peak Level (R128)' PeakLevelR128 no
26631
+ 'Peak Level (Sample)' PeakLevelSample no
26632
+ 'RATING' Rating no
26633
+ 'SCRIPT' Script no
26284
26634
  'TRACKNUMBER' TrackNumber no
26635
+ 'Volume Level (R128)' VolumeLevelR128 no
26636
+ 'Volume Level (ReplayGain)' ReplayVolumeLevel no
26285
26637
  'iTunEXTC' ContentRating no
26286
26638
  'iTunMOVI' iTunMOVI PLIST
26287
26639
  'iTunNORM' VolumeNormalization no
26288
26640
  'iTunSMPB' iTunSMPB no
26289
26641
  'iTunes_CDDB_1' CDDB1Info no
26290
26642
  'iTunes_CDDB_TrackNumber' CDDBTrackNumber no
26643
+ 'initialkey' InitialKey no
26644
+ 'originaldate' OriginalDate no
26645
+ 'originalyear' OriginalYear no
26291
26646
  'popularimeter' Popularimeter no
26647
+ 'replaygain_track_gain' ReplayTrackGain no
26648
+ 'replaygain_track_peak' ReplayTrackPeak no
26292
26649
  'tool' iTunTool no
26650
+ '~length' Length no
26293
26651
 
26294
26652
  =head3 QuickTime EncodingParams Tags
26295
26653
 
@@ -26922,7 +27280,7 @@ the config file.
26922
27280
  'chpl' ChapterList no
26923
27281
  'clfn' ClipFileName string
26924
27282
  'clid' ClipID string
26925
- 'clsf' Classification no
27283
+ 'clsf' Classification undef/
26926
27284
  'cmid' CameraID string
26927
27285
  'cmnm' Model string/
26928
27286
  'coll' CollectionName string/
@@ -26940,10 +27298,11 @@ the config file.
26940
27298
  'infu' InfoURL string
26941
27299
  'kgtt' TrackType string
26942
27300
  'kywd' Keywords no
26943
- 'loci' LocationInformation no
27301
+ 'loci' LocationInformation undef/
26944
27302
  'lrcu' LyricsURI string
26945
27303
  'lvlm' LevelMeter? rational64s
26946
27304
  'manu' Make no
27305
+ 'mcvr' PreviewImage string
26947
27306
  'meta' Meta QuickTime Meta
26948
27307
  'modl' Model no
26949
27308
  'name' Name string
@@ -26955,7 +27314,7 @@ the config file.
26955
27314
  'rads' Rads? rational64s
26956
27315
  'reel' ReelName string
26957
27316
  'roll' Roll rational64s/
26958
- 'rtng' Rating no
27317
+ 'rtng' Rating undef/
26959
27318
  'scen' Scene string
26960
27319
  'scrn' OlympusPreview Olympus scrn
26961
27320
  'shot' ShotName string
@@ -26968,12 +27327,12 @@ the config file.
26968
27327
  ThumbnailPNG string
26969
27328
  UnknownThumbnail string
26970
27329
  'titl' Title string/
26971
- 'urat' UserRating no
27330
+ 'urat' UserRating undef/
26972
27331
  'uuid' GarminSoftware string
26973
27332
  UUID-Unknown? no
26974
27333
  'vndr' Vendor string
26975
27334
  'vrot' AccelerometerData no
26976
- 'yrrc' Year no
27335
+ 'yrrc' Year undef/
26977
27336
  "\xa9ART" Artist string
26978
27337
  "\xa9TIM" StartTimecode string
26979
27338
  "\xa9TSC" StartTimeScale string
@@ -27415,32 +27774,6 @@ Parrot streaming metadata automation extension.
27415
27774
  28 AutomationAnimation no
27416
27775
  29 AutomationFlags no
27417
27776
 
27418
- =head2 PLIST Tags
27419
-
27420
- Apple Property List tags. ExifTool reads both XML and binary-format PLIST
27421
- files, and will extract any existing tags even if they aren't listed below.
27422
- These tags belong to the family 0 "PLIST" group, but family 1 group may be
27423
- either "XML" or "PLIST" depending on whether the format is XML or binary.
27424
-
27425
- Tag ID Tag Name Writable
27426
- ------ -------- --------
27427
- 'MetaDataList//DateTimeOriginal'
27428
- DateTimeOriginal no
27429
- 'MetaDataList//Duration' Duration no
27430
- 'MetaDataList//Geolocation/Latitude'
27431
- GPSLatitude no
27432
- 'MetaDataList//Geolocation/Longitude'
27433
- GPSLongitude no
27434
- 'MetaDataList//Geolocation/MapDatum'
27435
- GPSMapDatum no
27436
- 'XMLFileType' XMLFileType no
27437
- 'cast//name' Cast no+
27438
- 'codirectors//name' Codirectors no+
27439
- 'directors//name' Directors no+
27440
- 'producers//name' Producers no+
27441
- 'screenwriters//name' Screenwriters no+
27442
- 'studio//name' Studio no+
27443
-
27444
27777
  =head2 Matroska Tags
27445
27778
 
27446
27779
  The following tags are extracted from Matroska multimedia container files.
@@ -29304,7 +29637,7 @@ because they are bulky 16-byte binary values.
29304
29637
  VideoAndFilmFrameRelationship no
29305
29638
  VideoAverageBitrate no
29306
29639
  VideoClipDuration no
29307
- VideoCodingSchemeID? no
29640
+ VideoCodingSchemeID no
29308
29641
  VideoColorKind no
29309
29642
  VideoCompressionAlgorithm no
29310
29643
  VideoDeviceKind no
@@ -29807,6 +30140,7 @@ sub-documents, but the Duration is calculated for the full video.
29807
30140
  'LIST_INF0' Info RIFF Info
29808
30141
  'LIST_INFO' Info RIFF Info
29809
30142
  'LIST_Tdat' Tdat RIFF Tdat
30143
+ 'LIST_adtl' AssociatedDataList RIFF
29810
30144
  'LIST_exif' Exif RIFF Exif
29811
30145
  'LIST_hdrl' Hdrl RIFF Hdrl
29812
30146
  'LIST_hydt' PentaxData Pentax AVI
@@ -29829,9 +30163,15 @@ sub-documents, but the Duration is calculated for the full video.
29829
30163
  'gps0' GPSTrack QuickTime Stream
29830
30164
  'gsen' GSensor QuickTime Stream
29831
30165
  'iXML' IXML XMP XML
29832
- 'labl' Label RIFF Label
30166
+ 'id3 ' ID3 ID3
30167
+ 'inst' Instrument RIFF Instrument
30168
+ 'labl' CuePointLabel no
29833
30169
  'list' ListType no
30170
+ 'ltxt' LabeledText no
30171
+ 'note' CuePointNote no
29834
30172
  'olym' Olym Olympus WAV
30173
+ 'plst' Playlist no
30174
+ 'smpl' Sampler RIFF Sampler
29835
30175
  'tx_USER' UserText RIFF UserText
29836
30176
  'tx_Unknown' Text no
29837
30177
 
@@ -29945,6 +30285,7 @@ by some software.
29945
30285
  'ISTD' ProductionStudio no
29946
30286
  'ISTR' Starring no
29947
30287
  'ITCH' Technician no
30288
+ 'ITRK' TrackNumber no
29948
30289
  'IWMU' WatermarkURL no
29949
30290
  'IWRI' WrittenBy no
29950
30291
  'LANG' Language no
@@ -30128,12 +30469,32 @@ L<https://tech.ebu.ch/docs/tech/tech3306-2009.pdf> for the specification.
30128
30469
  1 DataSize64 no
30129
30470
  2 NumberOfSamples64 no
30130
30471
 
30131
- =head3 RIFF Label Tags
30472
+ =head3 RIFF Instrument Tags
30473
+
30474
+ Index1 Tag Name Writable
30475
+ ------ -------- --------
30476
+ 0 UnshiftedNote no
30477
+ 1 FineTune no
30478
+ 2 Gain no
30479
+ 3 LowNote no
30480
+ 4 HighNote no
30481
+ 5 LowVelocity no
30482
+ 6 HighVelocity no
30483
+
30484
+ =head3 RIFF Sampler Tags
30132
30485
 
30133
30486
  Index4 Tag Name Writable
30134
30487
  ------ -------- --------
30135
- 0 LabelID no
30136
- 1 LabelText no
30488
+ 0 Manufacturer no
30489
+ 1 Product no
30490
+ 2 SamplePeriod no
30491
+ 3 MIDIUnityNote no
30492
+ 4 MIDIPitchFraction no
30493
+ 5 SMPTEFormat no
30494
+ 6 SMPTEOffset no
30495
+ 7 NumSampleLoops no
30496
+ 8 SamplerDataLen no
30497
+ 9 SamplerData no
30137
30498
 
30138
30499
  =head3 RIFF UserText Tags
30139
30500
 
@@ -33738,9 +34099,11 @@ L<https://fits.gsfc.nasa.gov/fits_standard.html> for the specification.
33738
34099
  ------ -------- --------
33739
34100
  'AUTHOR' Author no
33740
34101
  'BACKGRND' Background no
34102
+ 'COMMENT' Comment no
33741
34103
  'DATE' CreateDate no
33742
34104
  'DATE-END' ObservationDateEnd no
33743
34105
  'DATE-OBS' ObservationDate no
34106
+ 'HISTORY' History no
33744
34107
  'INSTRUME' Instrument no
33745
34108
  'OBJECT' Object no
33746
34109
  'OBSERVER' Observer no
@@ -33749,23 +34112,6 @@ L<https://fits.gsfc.nasa.gov/fits_standard.html> for the specification.
33749
34112
  'TIME-END' ObservationTimeEnd no
33750
34113
  'TIME-OBS' ObservationTime no
33751
34114
 
33752
- =head2 JSON Tags
33753
-
33754
- Other than a few tags in the table below, JSON tags have not been
33755
- pre-defined. However, ExifTool will read any existing tags from basic
33756
- JSON-formatted files.
33757
-
33758
- Tag Name Writable
33759
- -------- --------
33760
- ON1_SettingsData PLIST
33761
- ON1_SettingsMetadataCreated no
33762
- ON1_SettingsMetadataModified no
33763
- ON1_SettingsMetadataName no
33764
- ON1_SettingsMetadataPluginID no
33765
- ON1_SettingsMetadataTimestamp no
33766
- ON1_SettingsMetadataUsage no
33767
- ON1_SettingsMetadataVisibleToUser no
33768
-
33769
34115
  =head2 HTML Tags
33770
34116
 
33771
34117
  Meta information extracted from the header of HTML and XHTML files. This is
@@ -34845,7 +35191,7 @@ options, but these files are not writable directly.
34845
35191
  XAttr tags are extracted using the "xattr" utility. They are extracted if
34846
35192
  any "XAttr*" tag or the MacOS group is specifically requested, or by setting
34847
35193
  the XAttrTags API option to 1 or the RequestAll API option to 2 or higher.
34848
- And they extracted by default from MacOS "._" files when reading
35194
+ And they are extracted by default from MacOS "._" files when reading
34849
35195
  these files directly.
34850
35196
 
34851
35197
  Tag Name Writable
@@ -35022,6 +35368,7 @@ FileName.
35022
35368
  Tag Name Group Writable
35023
35369
  -------- ----- --------
35024
35370
  Adobe Adobe yes!
35371
+ BaseName System no
35025
35372
  CanonDR4 CanonVRD yes!^
35026
35373
  CanonVRD CanonVRD yes!^
35027
35374
  Comment File yes
@@ -35233,11 +35580,15 @@ values, may created via the ExifTool configuration file.
35233
35580
  GPS:GPSLatitudeRef
35234
35581
  GPSLatitude QuickTime:GPSCoordinates no
35235
35582
  GPSLatitude QuickTime:LocationInformation no
35583
+ GPSLatitude Sony:GPSLatitude no
35584
+ Sony:GPSLatitudeRef
35236
35585
  GPSLatitudeRef XMP-exif:GPSLatitude no
35237
35586
  GPSLongitude GPS:GPSLongitude no
35238
35587
  GPS:GPSLongitudeRef
35239
35588
  GPSLongitude QuickTime:GPSCoordinates no
35240
35589
  GPSLongitude QuickTime:LocationInformation no
35590
+ GPSLongitude Sony:GPSLongitude no
35591
+ Sony:GPSLongitudeRef
35241
35592
  GPSLongitudeRef XMP-exif:GPSLongitude no
35242
35593
  GPSPosition GPSLatitude no
35243
35594
  GPSLongitude
@@ -35654,6 +36005,13 @@ for more details.
35654
36005
  InteropIFD:InteropVersion
35655
36006
  InteropIFD:RelatedImageWidth
35656
36007
  InteropIFD:RelatedImageHeight
36008
+ ls-l FilePermissions yes
36009
+ FileHardLinks
36010
+ FileUserID
36011
+ FileGroupID
36012
+ FileSize#
36013
+ FileModifyDate
36014
+ FileName
35657
36015
 
35658
36016
  =head2 MWG Tags
35659
36017
 
@@ -35662,7 +36020,7 @@ overlapping EXIF, IPTC and XMP tags to be reconciled when reading, and
35662
36020
  synchronized when writing. The MWG Composite tags below are designed to aid
35663
36021
  in the implementation of these recommendations. As well, the MWG defines
35664
36022
  new XMP tags which are listed in the subsequent tables below. See
35665
- L<https://web.archive.org/web/20181006115950/http://www.metadataworkinggroup.org/specs/>
36023
+ L<https://web.archive.org/web/20180919181934/http://www.metadataworkinggroup.org/pdf/mwg_guidance.pdf>
35666
36024
  for the official MWG specification.
35667
36025
 
35668
36026
  =head3 MWG Composite Tags
@@ -35773,7 +36131,7 @@ implements this policy and changes EXIF:Artist to a list-type tag.
35773
36131
 
35774
36132
  Image region metadata defined by the MWG 2.0 specification. These tags
35775
36133
  may be accessed without the need to load the MWG Composite tags above. See
35776
- L<https://web.archive.org/web/20181006115950/http://www.metadataworkinggroup.org/specs/>
36134
+ L<https://web.archive.org/web/20180919181934/http://www.metadataworkinggroup.org/pdf/mwg_guidance.pdf>
35777
36135
  for the official specification.
35778
36136
 
35779
36137
  These tags belong to the ExifTool XMP-mwg-rs family 1 group.
@@ -35843,7 +36201,7 @@ Hierarchical keywords metadata defined by the MWG 2.0 specification.
35843
36201
  ExifTool unrolls keyword structures to an arbitrary depth of 6 to allow
35844
36202
  individual levels to be accessed with different tag names, and to avoid
35845
36203
  infinite recursion. See
35846
- L<https://web.archive.org/web/20181006115950/http://www.metadataworkinggroup.org/specs/>
36204
+ L<https://web.archive.org/web/20180919181934/http://www.metadataworkinggroup.org/pdf/mwg_guidance.pdf>
35847
36205
  for the official specification.
35848
36206
 
35849
36207
  These tags belong to the ExifTool XMP-mwg-kw family 1 group.
@@ -35887,7 +36245,7 @@ These tags belong to the ExifTool XMP-mwg-kw family 1 group.
35887
36245
  =head3 MWG Collections Tags
35888
36246
 
35889
36247
  Collections metadata defined by the MWG 2.0 specification. See
35890
- L<https://web.archive.org/web/20181006115950/http://www.metadataworkinggroup.org/specs/>
36248
+ L<https://web.archive.org/web/20180919181934/http://www.metadataworkinggroup.org/pdf/mwg_guidance.pdf>
35891
36249
  for the official specification.
35892
36250
 
35893
36251
  These tags belong to the ExifTool XMP-mwg-coll family 1 group.