exiftool-vendored.exe 12.67.0 → 12.69.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 (31) hide show
  1. package/bin/exiftool_files/Changes +40 -2
  2. package/bin/exiftool_files/README +7 -7
  3. package/bin/exiftool_files/exiftool.pl +26 -20
  4. package/bin/exiftool_files/lib/Image/ExifTool/Canon.pm +25 -1
  5. package/bin/exiftool_files/lib/Image/ExifTool/DNG.pm +25 -2
  6. package/bin/exiftool_files/lib/Image/ExifTool/Exif.pm +95 -13
  7. package/bin/exiftool_files/lib/Image/ExifTool/FujiFilm.pm +17 -1
  8. package/bin/exiftool_files/lib/Image/ExifTool/Geotag.pm +16 -11
  9. package/bin/exiftool_files/lib/Image/ExifTool/Nikon.pm +38 -11
  10. package/bin/exiftool_files/lib/Image/ExifTool/PNG.pm +14 -7
  11. package/bin/exiftool_files/lib/Image/ExifTool/Panasonic.pm +13 -9
  12. package/bin/exiftool_files/lib/Image/ExifTool/Pentax.pm +6 -1
  13. package/bin/exiftool_files/lib/Image/ExifTool/PhotoMechanic.pm +2 -1
  14. package/bin/exiftool_files/lib/Image/ExifTool/QuickTime.pm +62 -52
  15. package/bin/exiftool_files/lib/Image/ExifTool/README +7 -3
  16. package/bin/exiftool_files/lib/Image/ExifTool/RIFF.pm +8 -2
  17. package/bin/exiftool_files/lib/Image/ExifTool/Sony.pm +66 -21
  18. package/bin/exiftool_files/lib/Image/ExifTool/TagLookup.pm +6881 -6710
  19. package/bin/exiftool_files/lib/Image/ExifTool/TagNames.pod +445 -32
  20. package/bin/exiftool_files/lib/Image/ExifTool/Validate.pm +18 -16
  21. package/bin/exiftool_files/lib/Image/ExifTool/WriteCanonRaw.pl +2 -2
  22. package/bin/exiftool_files/lib/Image/ExifTool/WriteExif.pl +14 -4
  23. package/bin/exiftool_files/lib/Image/ExifTool/WriteQuickTime.pl +2 -0
  24. package/bin/exiftool_files/lib/Image/ExifTool/WriteRIFF.pl +22 -3
  25. package/bin/exiftool_files/lib/Image/ExifTool/Writer.pl +52 -11
  26. package/bin/exiftool_files/lib/Image/ExifTool/XISF.pm +185 -0
  27. package/bin/exiftool_files/lib/Image/ExifTool/XMP.pm +67 -2
  28. package/bin/exiftool_files/lib/Image/ExifTool/XMP2.pl +35 -0
  29. package/bin/exiftool_files/lib/Image/ExifTool.pm +36 -15
  30. package/bin/exiftool_files/lib/Image/ExifTool.pod +5 -5
  31. package/package.json +1 -1
@@ -34,7 +34,7 @@ use Image::ExifTool qw(:DataAccess :Utils);
34
34
  use Image::ExifTool::Exif;
35
35
  use Image::ExifTool::Minolta;
36
36
 
37
- $VERSION = '3.62';
37
+ $VERSION = '3.63';
38
38
 
39
39
  sub ProcessSRF($$$);
40
40
  sub ProcessSR2($$$);
@@ -163,6 +163,7 @@ sub PrintInvLensSpec($;$$);
163
163
  32878 => 'Sony FE 20-70mm F4 G', #JR
164
164
  32879 => 'Sony FE 50mm F1.4 GM', #JR
165
165
  32884 => 'Sony FE 70-200mm F4 Macro G OSS II', #JR
166
+ 32885 => 'Sony FE 16-35mm F2.8 GM II', #JR
166
167
 
167
168
  # (comment this out so LensID will report the LensModel, which is more useful)
168
169
  # 32952 => 'Metabones Canon EF Speed Booster Ultra', #JR (corresponds to 184, but 'Advanced' mode, LensMount reported as E-mount)
@@ -219,6 +220,9 @@ sub PrintInvLensSpec($;$$);
219
220
  49473 => 'Tokina atx-m 85mm F1.8 FE or Viltrox lens', #JR
220
221
  49473.1 => 'Viltrox 23mm F1.4 E', #JR
221
222
  49473.2 => 'Viltrox 56mm F1.4 E', #JR
223
+ 49474 => 'Tamron 70-180mm F2.8 Di III VXD G2 or Viltrox lens', #JR (Model A065)
224
+ 49474.1 => 'Viltrox 23mm F1.4 E', #JR
225
+ 49474.2 => 'Viltrox 16mm F1.8 FE', #JR
222
226
  49712 => 'Tokina FiRIN 20mm F2 FE AF', # (firmware Ver.01)
223
227
  49713 => 'Tokina FiRIN 100mm F2.8 FE MACRO', # (firmware Ver.01)
224
228
  49714 => 'Tokina atx-m 11-18mm F2.8 E', #JR
@@ -270,6 +274,7 @@ sub PrintInvLensSpec($;$$);
270
274
  50539 => 'Sigma 50mm F1.4 DG DN | A', #JR (023)
271
275
  50540 => 'Sigma 14mm F1.4 DG DN | A', #JR (023)
272
276
  50544 => 'Sigma 23mm F1.4 DC DN | C', #JR (023)
277
+ 50547 => 'Sigma 10-18mm F2.8 DC DN | C', #JR (023)
273
278
 
274
279
  50992 => 'Voigtlander SUPER WIDE-HELIAR 15mm F4.5 III', #JR
275
280
  50993 => 'Voigtlander HELIAR-HYPER WIDE 10mm F5.6', #IB
@@ -1304,7 +1309,7 @@ my %hidUnk = ( Hidden => 1, Unknown => 1 );
1304
1309
  Name => 'AFPointSelected',
1305
1310
  # non-zero only when AFAreaMode is 'Zone', and 'Expanded-Flexible-Spot' for ILCE-6300/7RM2/7SM2
1306
1311
  # each Zone has 3x3 AF Areas --> 9 positions within 5x5 total Contrast AF Areas
1307
- Condition => '$$self{Model} =~ /^(NEX-|ILCE-|ILME-)/',
1312
+ Condition => '$$self{Model} =~ /^(NEX-|ILCE-|ILME-|ZV-|DSC-RX)/',
1308
1313
  Notes => 'NEX and ILCE models',
1309
1314
  Writable => 'int8u',
1310
1315
  PrintConv => {
@@ -1326,7 +1331,7 @@ my %hidUnk = ( Hidden => 1, Unknown => 1 );
1326
1331
  # but not used by ILCA-99M2 anymore ... ?
1327
1332
  0x2020 => [{
1328
1333
  Name => 'AFPointsUsed',
1329
- Condition => '$$self{Model} !~ /^(ILCA-|DSC-)/', # (doesn't seem to apply to DSC-models)
1334
+ Condition => '$$self{Model} !~ /^(ILCA-|DSC-|ZV-)/', # (doesn't seem to apply to DSC-models)
1330
1335
  Notes => 'SLT models, or NEX/ILCE with A-mount lenses',
1331
1336
  BitsPerWord => 8,
1332
1337
  BitsTotal => 80,
@@ -1618,7 +1623,16 @@ my %hidUnk = ( Hidden => 1, Unknown => 1 );
1618
1623
  65535 => 'n/a',
1619
1624
  },
1620
1625
  },
1621
- # 0x203a - 0x2041: first seen October 2021 for ILCE-7M4
1626
+ # 0x203a - 0x2044: seen from October 2021 for ILCE-7M4 and newer
1627
+ # 0x203a - int8u[32]
1628
+ # 0x203c - undef[26] only non-zero data in Continuous drive mode
1629
+ # 0x203d - int32u
1630
+ # 0x203e - int8u: seen 0, 1, 2, 3, 4 and 255: possibly nr. of detected/tracked faces?
1631
+ # 0x203f - int16u
1632
+ # 0x2041 - int8u
1633
+ # 0x2044 - int32u[2] in ILCE-6700/7CM2/7CR, ILCE-7M4 v1.10, ILCE-7RM5 JPG and ZV-E1:
1634
+ # ARW: seen 143360 53248 and 139264 53248
1635
+ # JPG: [~filesize] 53248
1622
1636
  0x3000 => {
1623
1637
  Name => 'ShotInfo',
1624
1638
  SubDirectory => { TagTable => 'Image::ExifTool::Sony::ShotInfo' },
@@ -1654,7 +1668,7 @@ my %hidUnk = ( Hidden => 1, Unknown => 1 );
1654
1668
  },
1655
1669
  },{
1656
1670
  Name => 'Tag9050b',
1657
- Condition => '$$self{Model} =~ /^(ILCE-(6100|6300|6400|6500|6600|7C|7M3|7RM2|7RM3A?|7RM4A?|7SM2|9|9M2)|ILCA-99M2|ZV-E10)/',
1671
+ Condition => '$$self{Model} =~ /^(ILCE-(6100|6300|6400|6500|6600|7C|7M3|7RM2|7RM3A?|7RM4A?|7SM2|9|9M2)|ILCA-99M2|ZV-E10)\b/',
1658
1672
  SubDirectory => {
1659
1673
  TagTable => 'Image::ExifTool::Sony::Tag9050b',
1660
1674
  ByteOrder => 'LittleEndian',
@@ -1668,7 +1682,7 @@ my %hidUnk = ( Hidden => 1, Unknown => 1 );
1668
1682
  },
1669
1683
  },{
1670
1684
  Name => 'Tag9050d',
1671
- Condition => '$$self{Model} =~ /^(ILCE-6700|ZV-E1)/',
1685
+ Condition => '$$self{Model} =~ /^(ILCE-(6700|7CM2|7CR)|ZV-E1)\b/',
1672
1686
  SubDirectory => {
1673
1687
  TagTable => 'Image::ExifTool::Sony::Tag9050d',
1674
1688
  ByteOrder => 'LittleEndian',
@@ -1690,7 +1704,7 @@ my %hidUnk = ( Hidden => 1, Unknown => 1 );
1690
1704
  # 0x28 (e) for ILCE-7RM4/9M2, DSC-RX100M7, ZV-1/1F/1M2/E10
1691
1705
  # 0x31 (e) for ILCE-1/7M4/7SM3, ILME-FX3
1692
1706
  # 0x32 (e) for ILCE-7RM5, ILME-FX30
1693
- # 0x33 (e) for ILCE-6700, ZV-E1
1707
+ # 0x33 (e) for ILCE-6700, 7CM2, 7CR, ZV-E1
1694
1708
  # first byte decoded: 40, 204, 202, 27, 58, 62, 48, 215, 28, 106, 89, 63 respectively
1695
1709
  {
1696
1710
  Name => 'Tag9400a',
@@ -1807,7 +1821,11 @@ my %hidUnk = ( Hidden => 1, Unknown => 1 );
1807
1821
  # 0x1f 0x01 DSC-HX95/HX99
1808
1822
  # 0x20 0x01 ILCE-6100/6400/6600/7RM4/9M2, ILCE-9 v5.00-v6.00, DSC-RX0M2/RX100M7
1809
1823
  # 0x21 0x01 ZV-1/1F/1M2/E10
1810
- # 0x27 0x01 ZV-E1
1824
+ # 0x22 (34) ILCE-7SM3, ILME-FX3
1825
+ # 0x24 (36) ILCE-1
1826
+ # 0x25 (37) ILCE-7M4
1827
+ # 0x26 (38) ILCE-7RM5, ILME-FX30
1828
+ # 0x27 (39) ILCE-6700/7CM2/7CR, ZV-E1
1811
1829
  # var var SLT-A58/A99V, HV, ILCA-68/77M2/99M2
1812
1830
  # only valid when first byte 0x0f, 0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x17, 0x19, 0x1a, 0x1c (enciphered 0x8a, 0x70, 0xb6, 0x69, 0x88, 0x20, 0x30, 0xd7, 0xbb, 0x92, 0x28)
1813
1831
  # Condition => '$$self{DoubleCipher} ? $$valPt =~ /^[\x7e\x46\x1d\x18\x3a\x95\x24\x26\xd6]\x01/ : $$valPt =~ /^[\x8a\x70\xb6\x69\x88\x20\x30\xd7\xbb\x92\x28]\x01/',
@@ -2092,6 +2110,8 @@ my %hidUnk = ( Hidden => 1, Unknown => 1 );
2092
2110
  393 => 'ZV-E1', #JR
2093
2111
  394 => 'ILCE-6700', #JR
2094
2112
  395 => 'ZV-1M2', #JR
2113
+ 396 => 'ILCE-7CR', #JR
2114
+ 397 => 'ILCE-7CM2', #JR
2095
2115
  },
2096
2116
  },
2097
2117
  0xb020 => { #2
@@ -7896,7 +7916,7 @@ my %isoSetting2010 = (
7896
7916
  },
7897
7917
  0x01eb => {
7898
7918
  Name => 'APS-CSizeCapture',
7899
- Condition => '$$self{Model} =~ /^ILCE-(7RM4A?|7C|9M2)|ZV-E10/ or $$self{Software} =~ /^ILCE-9 (v5.0|v6.0)/',
7919
+ Condition => '$$self{Model} =~ /^ILCE-(7RM4A?|7C|9M2)/ or $$self{Software} =~ /^ILCE-9 (v5.0|v6.0)/',
7900
7920
  PrintConv => {
7901
7921
  0 => 'Off',
7902
7922
  1 => 'On',
@@ -8110,14 +8130,14 @@ my %isoSetting2010 = (
8110
8130
  WRITE_PROC => \&WriteEnciphered,
8111
8131
  CHECK_PROC => \&Image::ExifTool::CheckBinaryData,
8112
8132
  FORMAT => 'int8u',
8113
- NOTES => 'Valid for ILCE-6700/ZV-E1.',
8133
+ NOTES => 'Valid for ILCE-6700/7CM2/7CR/ZV-E1.',
8114
8134
  WRITABLE => 1,
8115
8135
  FIRST_ENTRY => 0,
8116
8136
  GROUPS => { 0 => 'MakerNotes', 2 => 'Image' },
8117
8137
  0x000a => {
8118
8138
  Name => 'ShutterCount',
8119
8139
  # number of mechanical shutter actuations, does not increase during electronic shutter / Silent Shooting
8120
- Condition => '$$self{Model} =~ /^(ILCE-6700)/',
8140
+ Condition => '$$self{Model} =~ /^(ILCE-(6700|7CM2|7CR))/',
8121
8141
  Format => 'int32u',
8122
8142
  Notes => 'total number of image exposures made by the camera',
8123
8143
  RawConv => '$val & 0x00ffffff',
@@ -8377,7 +8397,7 @@ my %isoSetting2010 = (
8377
8397
  },
8378
8398
  0x002a => [{
8379
8399
  Name => 'Quality2',
8380
- Condition => '$$self{Model} !~ /^(ILCE-(1|6700|7M4|7RM5|7SM3)|ILME-(FX3|FX30)|ZV-E1)\b/',
8400
+ Condition => '$$self{Model} !~ /^(ILCE-(1|6700|7CM2|7CR|7M4|7RM5|7SM3)|ILME-(FX3|FX30)|ZV-E1)\b/',
8381
8401
  PrintConv => {
8382
8402
  0 => 'JPEG',
8383
8403
  1 => 'RAW',
@@ -8402,7 +8422,7 @@ my %isoSetting2010 = (
8402
8422
  },
8403
8423
  0x0053 => {
8404
8424
  Name => 'ModelReleaseYear',
8405
- Condition => '$$self{Model} !~ /^(ILCE-(1|6700|7M4|7RM5|7SM3)|ILME-(FX3|FX30)|ZV-E1)\b/',
8425
+ Condition => '$$self{Model} !~ /^(ILCE-(1|6700|7CM2|7CR|7M4|7RM5|7SM3)|ILME-(FX3|FX30)|ZV-E1)\b/',
8406
8426
  Format => 'int8u',
8407
8427
  PrintConv => 'sprintf("20%.2d", $val)',
8408
8428
  },
@@ -8521,8 +8541,8 @@ my %isoSetting2010 = (
8521
8541
  14 => 'Tracking',
8522
8542
  15 => 'Face Tracking',
8523
8543
  20 => 'Animal Eye Tracking',
8524
- # 21 => '???', # (ILCE-1/6700/7SM3, ILME-FX3, ZV-E1: tracking ... mostly human face ...)
8525
- # 22 => '???', # (ILCE-6700, ZV-E1: tracking ...)
8544
+ 21 => 'Human Eye Tracking', # always "Face tracking", seen for ILCE-7SM3, ILCE-1 and newer
8545
+ # 22 => 'Object Tracking???', # always "Lock On AF", seen for ILCE-6700, ZV-E1 (no animal or human in picture)
8526
8546
  255 => 'Manual',
8527
8547
  },
8528
8548
  },
@@ -8997,11 +9017,12 @@ my %isoSetting2010 = (
8997
9017
  GROUPS => { 0 => 'MakerNotes', 2 => 'Image' },
8998
9018
  # 0x0000: 1 for SLT-A37/A57/A65/A77, NEX-5N/7/F3/VG20
8999
9019
  # 2 for SLT-A58/99V, NEX-3N/5R/5T/6/VG30/VG900, ILCA-68/77M2, ILCE-3000/3500/7/7M2/7R/7S/5000/6000
9000
- # 3 for ILCA-99M2, ILCE-6100/6300/6400/6500/6600/7M3/7RM2/7RM3/7RM4/7SM2/9/9M2
9001
- # 4 for ILCE-6700, ZV-E1
9020
+ # 3 for ILCA-99M2, ILCE-6100/6300/6400/6500/6600/7C/7M3/7M4/7RM2/7RM3/7RM4/7RM5/7SM2/7SM3/9/9M2/1
9021
+ # 4 for ILCE-6700/7CM2/7CR, ZV-E1
9002
9022
  0x0000 => { Name => 'Ver9406', Hidden => 1, RawConv => '$$self{Ver9406} = $val; $$self{OPTIONS}{Unknown}<2 ? undef : $val' },
9003
9023
  # 0x0001+0x0002: Int16u, seen 580 - 770: similar to "BatteryUnknown" ??
9004
9024
  # 0x0005: int8u, seen 73 - 117: maybe Fahrenheit? Higher than "AmbientTemperature", but same trend.
9025
+ # 0x0004: for Ver9406=4: seen 3, 5, 7: when 3 or 7 0x0005 appears valid; when 5, 0x0005 always 0
9005
9026
  0x0005 => [{
9006
9027
  Name => 'BatteryTemperature',
9007
9028
  Condition => '$$self{Ver9406} != 4',
@@ -9739,7 +9760,7 @@ my %isoSetting2010 = (
9739
9760
  WRITE_PROC => \&WriteEnciphered,
9740
9761
  CHECK_PROC => \&Image::ExifTool::CheckBinaryData,
9741
9762
  FORMAT => 'int8u',
9742
- NOTES => 'Valid for the ILCE-1/6700/7M4/7RM5/7SM3, ILME-FX3/FX30, ZV-E1.',
9763
+ NOTES => 'Valid for the ILCE-1/6700/7CM2/7CR/7M4/7RM5/7SM3, ILME-FX3/FX30, ZV-E1.',
9743
9764
  FIRST_ENTRY => 0,
9744
9765
  GROUPS => { 0 => 'MakerNotes', 2 => 'Image' },
9745
9766
  0x0000 => { Name => 'Tag9416_0000', PrintConv => 'sprintf("%3d",$val)', RawConv => '$$self{TagVersion} = $val' },
@@ -9783,12 +9804,36 @@ my %isoSetting2010 = (
9783
9804
  PrintConvInv => '$val',
9784
9805
  },
9785
9806
  0x001d => { %sequenceImageNumber },
9807
+ 0x002b => { %releaseMode2 },
9786
9808
  0x0035 => {
9787
9809
  Name => 'ExposureProgram',
9788
9810
  Priority => 0,
9789
9811
  SeparateTable => 'ExposureProgram3',
9790
9812
  PrintConv => \%sonyExposureProgram3,
9791
9813
  },
9814
+ 0x0037 => {
9815
+ Name => 'CreativeStyle',
9816
+ PrintConv => {
9817
+ 0 => 'Standard',
9818
+ 1 => 'Vivid',
9819
+ 2 => 'Neutral',
9820
+ 3 => 'Portrait',
9821
+ 4 => 'Landscape',
9822
+ 5 => 'B&W',
9823
+ 6 => 'Clear',
9824
+ 7 => 'Deep',
9825
+ 8 => 'Light',
9826
+ 9 => 'Sunset',
9827
+ 10 => 'Night View/Portrait',
9828
+ 11 => 'Autumn Leaves',
9829
+ 13 => 'Sepia',
9830
+ 15 => 'FL',
9831
+ 16 => 'VV2',
9832
+ 17 => 'IN',
9833
+ 18 => 'SH',
9834
+ 255 => 'Off',
9835
+ },
9836
+ },
9792
9837
  0x0048 => {
9793
9838
  Name => 'LensMount',
9794
9839
  Condition => '$$self{Model} !~ /^(DSC-)/',
@@ -9876,9 +9921,9 @@ my %isoSetting2010 = (
9876
9921
  Condition => '$$self{Model} =~ /^(ILCE-7M4)/',
9877
9922
  Format => 'int16s[16]',
9878
9923
  },
9879
- 0x089d => { # Note: 32 values for these newer models, and 32 non-zero values present for new lenses like SEL2470GM2 and SEL2470G
9924
+ 0x089d => { # Note: 32 values for these newer models, and 32 non-zero values present for new lenses like SEL2470GM2 and SEL2070G
9880
9925
  Name => 'VignettingCorrParams',
9881
- Condition => '$$self{Model} =~ /^(ILCE-(6700|7RM5)|ILME-FX30|ZV-E1)\b/',
9926
+ Condition => '$$self{Model} =~ /^(ILCE-(6700|7CM2|7CR|7RM5)|ILME-FX30|ZV-E1)\b/',
9882
9927
  Format => 'int16s[32]',
9883
9928
  },
9884
9929
  0x08b5 => {
@@ -9917,7 +9962,7 @@ my %isoSetting2010 = (
9917
9962
  },
9918
9963
  0x0945 => {
9919
9964
  Name => 'ChromaticAberrationCorrParams',
9920
- Condition => '$$self{Model} =~ /^(ILCE-(6700|7RM5)|ILME-FX30|ZV-E1)\b/',
9965
+ Condition => '$$self{Model} =~ /^(ILCE-(6700|7CM2|7CR|7RM5)|ILME-FX30|ZV-E1)\b/',
9921
9966
  Format => 'int16s[32]',
9922
9967
  },
9923
9968
  );