exiftool-vendored.pl 12.41.0 → 12.44.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.
- package/bin/Changes +60 -1
- package/bin/META.json +1 -1
- package/bin/META.yml +1 -1
- package/bin/README +2 -2
- package/bin/exiftool +5 -4
- package/bin/lib/Image/ExifTool/Apple.pm +11 -2
- package/bin/lib/Image/ExifTool/Canon.pm +39 -24
- package/bin/lib/Image/ExifTool/DJI.pm +60 -1
- package/bin/lib/Image/ExifTool/DNG.pm +8 -2
- package/bin/lib/Image/ExifTool/DarwinCore.pm +13 -1
- package/bin/lib/Image/ExifTool/Exif.pm +9 -0
- package/bin/lib/Image/ExifTool/FlashPix.pm +23 -2
- package/bin/lib/Image/ExifTool/FujiFilm.pm +23 -2
- package/bin/lib/Image/ExifTool/GPS.pm +21 -1
- package/bin/lib/Image/ExifTool/Geotag.pm +24 -4
- package/bin/lib/Image/ExifTool/ICC_Profile.pm +10 -8
- package/bin/lib/Image/ExifTool/ID3.pm +5 -5
- package/bin/lib/Image/ExifTool/LNK.pm +5 -2
- package/bin/lib/Image/ExifTool/MakerNotes.pm +5 -0
- package/bin/lib/Image/ExifTool/Motorola.pm +8 -2
- package/bin/lib/Image/ExifTool/Nikon.pm +84 -29
- package/bin/lib/Image/ExifTool/NikonCustom.pm +4 -1
- package/bin/lib/Image/ExifTool/Olympus.pm +21 -2
- package/bin/lib/Image/ExifTool/PDF.pm +2 -1
- package/bin/lib/Image/ExifTool/Panasonic.pm +10 -1
- package/bin/lib/Image/ExifTool/Parrot.pm +96 -2
- package/bin/lib/Image/ExifTool/Pentax.pm +1 -1
- package/bin/lib/Image/ExifTool/Photoshop.pm +6 -5
- package/bin/lib/Image/ExifTool/QuickTime.pm +7 -1
- package/bin/lib/Image/ExifTool/QuickTimeStream.pl +41 -6
- package/bin/lib/Image/ExifTool/README +8 -2
- package/bin/lib/Image/ExifTool/Samsung.pm +233 -2
- package/bin/lib/Image/ExifTool/Shortcuts.pm +2 -1
- package/bin/lib/Image/ExifTool/Sony.pm +36 -28
- package/bin/lib/Image/ExifTool/TagLookup.pm +2528 -2483
- package/bin/lib/Image/ExifTool/TagNames.pod +192 -97
- package/bin/lib/Image/ExifTool/WritePhotoshop.pl +5 -5
- package/bin/lib/Image/ExifTool/Writer.pl +4 -3
- package/bin/lib/Image/ExifTool.pm +40 -16
- package/bin/lib/Image/ExifTool.pod +13 -4
- package/bin/perl-Image-ExifTool.spec +1 -1
- package/bin/pp_build_exe.args +4 -4
- package/package.json +3 -3
|
@@ -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.
|
|
37
|
+
$VERSION = '3.51';
|
|
38
38
|
|
|
39
39
|
sub ProcessSRF($$$);
|
|
40
40
|
sub ProcessSR2($$$);
|
|
@@ -154,7 +154,12 @@ sub PrintInvLensSpec($;$$);
|
|
|
154
154
|
32866 => 'Sony FE 24mm F2.8 G', #IB
|
|
155
155
|
32867 => 'Sony FE 40mm F2.5 G', #IB
|
|
156
156
|
32868 => 'Sony FE 50mm F2.5 G', #IB
|
|
157
|
+
32871 => 'Sony FE PZ 16-35mm F4 G', #JR
|
|
158
|
+
32873 => 'Sony E PZ 10-20mm F4 G', #JR
|
|
157
159
|
32874 => 'Sony FE 70-200mm F2.8 GM OSS II', #IB
|
|
160
|
+
32875 => 'Sony FE 24-70mm F2.8 GM II', #JR
|
|
161
|
+
32876 => 'Sony E 11mm F1.8', #JR
|
|
162
|
+
32877 => 'Sony E 15mm F1.4 G', #JR
|
|
158
163
|
|
|
159
164
|
# (comment this out so LensID will report the LensModel, which is more useful)
|
|
160
165
|
# 32952 => 'Metabones Canon EF Speed Booster Ultra', #JR (corresponds to 184, but 'Advanced' mode, LensMount reported as E-mount)
|
|
@@ -245,6 +250,7 @@ sub PrintInvLensSpec($;$$);
|
|
|
245
250
|
50530 => 'Sigma 24mm F2 DG DN | C', #JR (021)
|
|
246
251
|
50531 => 'Sigma 18-50mm F2.8 DC DN | C', #IB/JR (021)
|
|
247
252
|
50532 => 'Sigma 20mm F2 DG DN | C', #JR (022)
|
|
253
|
+
50533 => 'Sigma 16-28mm F2.8 DG DN | C', #JR (022)
|
|
248
254
|
|
|
249
255
|
50992 => 'Voigtlander SUPER WIDE-HELIAR 15mm F4.5 III', #JR
|
|
250
256
|
50993 => 'Voigtlander HELIAR-HYPER WIDE 10mm F5.6', #IB
|
|
@@ -9937,20 +9943,22 @@ my %isoSetting2010 = (
|
|
|
9937
9943
|
WRITE_PROC => \&Image::ExifTool::Exif::WriteExif,
|
|
9938
9944
|
CHECK_PROC => \&Image::ExifTool::Exif::CheckExif,
|
|
9939
9945
|
GROUPS => { 0 => 'MakerNotes', 1 => 'SR2SubIFD', 2 => 'Camera' },
|
|
9946
|
+
WRITE_GROUP => 'SR2SubIFD',
|
|
9947
|
+
PERMANENT => 1,
|
|
9940
9948
|
SET_GROUP1 => 1, # set group1 name to directory name for all tags in table
|
|
9941
9949
|
NOTES => 'Tags in the encrypted SR2SubIFD',
|
|
9942
|
-
0x7300 => 'BlackLevel',
|
|
9943
|
-
0x7302 => 'WB_GRBGLevelsAuto', #IB (R1)
|
|
9944
|
-
0x7303 => 'WB_GRBGLevels', #1 (R1 "as shot", ref IB)
|
|
9945
|
-
0x7310 => 'BlackLevel', #IB (divide by 4)
|
|
9946
|
-
0x7312 => 'WB_RGGBLevelsAuto', #IB
|
|
9947
|
-
0x7313 => 'WB_RGGBLevels', #6
|
|
9948
|
-
0x7480 => 'WB_RGBLevelsDaylight', #IB (R1)
|
|
9949
|
-
0x7481 => 'WB_RGBLevelsCloudy', #IB (R1)
|
|
9950
|
-
0x7482 => 'WB_RGBLevelsTungsten', #IB (R1)
|
|
9951
|
-
0x7483 => 'WB_RGBLevelsFlash', #IB (R1)
|
|
9952
|
-
0x7484 => 'WB_RGBLevels4500K', #IB (R1)
|
|
9953
|
-
0x7486 => 'WB_RGBLevelsFluorescent', #IB (R1)
|
|
9950
|
+
0x7300 => { Name => 'BlackLevel', Writable => 'int16u', Count => 4, Protected => 1 },
|
|
9951
|
+
0x7302 => { Name => 'WB_GRBGLevelsAuto', Writable => 'int16s', Count => 4, Protected => 1 }, #IB (R1)
|
|
9952
|
+
0x7303 => { Name => 'WB_GRBGLevels', Writable => 'int16s', Count => 4, Protected => 1 }, #1 (R1 "as shot", ref IB)
|
|
9953
|
+
0x7310 => { Name => 'BlackLevel', Writable => 'int16u', Count => 4, Protected => 1 }, #IB (divide by 4)
|
|
9954
|
+
0x7312 => { Name => 'WB_RGGBLevelsAuto', Writable => 'int16s', Count => 4, Protected => 1 }, #IB
|
|
9955
|
+
0x7313 => { Name => 'WB_RGGBLevels', Writable => 'int16s', Count => 4, Protected => 1 }, #6
|
|
9956
|
+
0x7480 => { Name => 'WB_RGBLevelsDaylight', Writable => 'int16s', Count => 4, Protected => 1 }, #IB (R1)
|
|
9957
|
+
0x7481 => { Name => 'WB_RGBLevelsCloudy', Writable => 'int16s', Count => 4, Protected => 1 }, #IB (R1)
|
|
9958
|
+
0x7482 => { Name => 'WB_RGBLevelsTungsten', Writable => 'int16s', Count => 4, Protected => 1 }, #IB (R1)
|
|
9959
|
+
0x7483 => { Name => 'WB_RGBLevelsFlash', Writable => 'int16s', Count => 4, Protected => 1 }, #IB (R1)
|
|
9960
|
+
0x7484 => { Name => 'WB_RGBLevels4500K', Writable => 'int16s', Count => 4, Protected => 1 }, #IB (R1)
|
|
9961
|
+
0x7486 => { Name => 'WB_RGBLevelsFluorescent', Writable => 'int16s', Count => 4, Protected => 1 }, #IB (R1)
|
|
9954
9962
|
0x74a0 => 'MaxApertureAtMaxFocal', #PH
|
|
9955
9963
|
0x74a1 => 'MaxApertureAtMinFocal', #PH
|
|
9956
9964
|
0x74a2 => { #IB (R1)
|
|
@@ -9972,21 +9980,21 @@ my %isoSetting2010 = (
|
|
|
9972
9980
|
},
|
|
9973
9981
|
},
|
|
9974
9982
|
0x7800 => 'ColorMatrix', #IB (divide by 1024)
|
|
9975
|
-
0x7820 => 'WB_RGBLevelsDaylight', #6 (or 5300K, ref IB)
|
|
9976
|
-
0x7821 => 'WB_RGBLevelsCloudy', #6 (or 6100K, ref IB)
|
|
9977
|
-
0x7822 => 'WB_RGBLevelsTungsten', #6
|
|
9978
|
-
0x7823 => 'WB_RGBLevelsFlash', #IB
|
|
9979
|
-
0x7824 => 'WB_RGBLevels4500K', #IB
|
|
9980
|
-
0x7825 => 'WB_RGBLevelsShade', #6 (or 7500K, ref IB)
|
|
9981
|
-
0x7826 => 'WB_RGBLevelsFluorescent', #6 (~4000K)
|
|
9982
|
-
0x7827 => 'WB_RGBLevelsFluorescentP1', #IB (~5000K)
|
|
9983
|
-
0x7828 => 'WB_RGBLevelsFluorescentP2', #IB (~6500K) (was Flash, ref 6)
|
|
9984
|
-
0x7829 => 'WB_RGBLevelsFluorescentM1', #IB (~3500K)
|
|
9985
|
-
0x782a => 'WB_RGBLevels8500K', #IB
|
|
9986
|
-
0x782b => 'WB_RGBLevels6000K', #IB
|
|
9987
|
-
0x782c => 'WB_RGBLevels3200K', #IB
|
|
9988
|
-
0x782d => 'WB_RGBLevels2500K', #IB
|
|
9989
|
-
0x787f => 'WhiteLevel', #IB (divide by 4)
|
|
9983
|
+
0x7820 => { Name => 'WB_RGBLevelsDaylight', Writable => 'int16s', Count => 3, Protected => 1 }, #6 (or 5300K, ref IB)
|
|
9984
|
+
0x7821 => { Name => 'WB_RGBLevelsCloudy', Writable => 'int16s', Count => 3, Protected => 1 }, #6 (or 6100K, ref IB)
|
|
9985
|
+
0x7822 => { Name => 'WB_RGBLevelsTungsten', Writable => 'int16s', Count => 3, Protected => 1 }, #6
|
|
9986
|
+
0x7823 => { Name => 'WB_RGBLevelsFlash', Writable => 'int16s', Count => 3, Protected => 1 }, #IB
|
|
9987
|
+
0x7824 => { Name => 'WB_RGBLevels4500K', Writable => 'int16s', Count => 3, Protected => 1 }, #IB
|
|
9988
|
+
0x7825 => { Name => 'WB_RGBLevelsShade', Writable => 'int16s', Count => 3, Protected => 1 }, #6 (or 7500K, ref IB)
|
|
9989
|
+
0x7826 => { Name => 'WB_RGBLevelsFluorescent', Writable => 'int16s', Count => 3, Protected => 1 }, #6 (~4000K)
|
|
9990
|
+
0x7827 => { Name => 'WB_RGBLevelsFluorescentP1', Writable => 'int16s', Count => 3, Protected => 1 }, #IB (~5000K)
|
|
9991
|
+
0x7828 => { Name => 'WB_RGBLevelsFluorescentP2', Writable => 'int16s', Count => 3, Protected => 1 }, #IB (~6500K) (was Flash, ref 6)
|
|
9992
|
+
0x7829 => { Name => 'WB_RGBLevelsFluorescentM1', Writable => 'int16s', Count => 3, Protected => 1 }, #IB (~3500K)
|
|
9993
|
+
0x782a => { Name => 'WB_RGBLevels8500K', Writable => 'int16s', Count => 3, Protected => 1 }, #IB
|
|
9994
|
+
0x782b => { Name => 'WB_RGBLevels6000K', Writable => 'int16s', Count => 3, Protected => 1 }, #IB
|
|
9995
|
+
0x782c => { Name => 'WB_RGBLevels3200K', Writable => 'int16s', Count => 3, Protected => 1 }, #IB
|
|
9996
|
+
0x782d => { Name => 'WB_RGBLevels2500K', Writable => 'int16s', Count => 3, Protected => 1 }, #IB
|
|
9997
|
+
0x787f => { Name => 'WhiteLevel', Writable => 'int16u', Count => 3, Protected => 1 }, #IB (divide by 4)
|
|
9990
9998
|
0x797d => 'VignettingCorrParams', #forum7640
|
|
9991
9999
|
0x7980 => 'ChromaticAberrationCorrParams', #forum6509 (Sony A7 ARW)
|
|
9992
10000
|
0x7982 => 'DistortionCorrParams', #forum6509 (Sony A7 ARW)
|