exiftool-vendored.exe 13.35.1 → 13.36.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/exiftool.exe +0 -0
- package/bin/exiftool_files/exiftool.pl +1 -1
- package/bin/exiftool_files/lib/Image/ExifTool/FujiFilm.pm +2 -2
- package/bin/exiftool_files/lib/Image/ExifTool/Geolocation.dat +0 -0
- package/bin/exiftool_files/lib/Image/ExifTool/Nikon.pm +2 -1
- package/bin/exiftool_files/lib/Image/ExifTool/Pentax.pm +2 -1
- package/bin/exiftool_files/lib/Image/ExifTool/RIFF.pm +5 -3
- package/bin/exiftool_files/lib/Image/ExifTool/Sony.pm +3 -1
- package/bin/exiftool_files/lib/Image/ExifTool.pm +1 -1
- package/bin/exiftool_files/windows_exiftool.txt +1 -1
- package/package.json +1 -1
package/bin/exiftool.exe
CHANGED
|
Binary file
|
|
Binary file
|
|
@@ -65,7 +65,7 @@ use Image::ExifTool::Exif;
|
|
|
65
65
|
use Image::ExifTool::GPS;
|
|
66
66
|
use Image::ExifTool::XMP;
|
|
67
67
|
|
|
68
|
-
$VERSION = '4.
|
|
68
|
+
$VERSION = '4.51';
|
|
69
69
|
|
|
70
70
|
sub LensIDConv($$$);
|
|
71
71
|
sub ProcessNikonAVI($$$);
|
|
@@ -583,6 +583,7 @@ sub GetAFPointGrid($$;$);
|
|
|
583
583
|
'0E 4A 31 48 23 2D 0E 02' => 'Tamron SP AF 20-40mm f/2.7-3.5 (166D)',
|
|
584
584
|
'FE 48 37 5C 24 24 DF 0E' => 'Tamron SP 24-70mm f/2.8 Di VC USD (A007)', #24
|
|
585
585
|
'CE 47 37 5C 25 25 DF 4E' => 'Tamron SP 24-70mm f/2.8 Di VC USD G2 (A032)', #forum9110
|
|
586
|
+
'CE 00 37 5C 25 25 DF 4E' => 'Tamron SP 24-70mm f/2.8 Di VC USD G2 (A032)', #github345
|
|
586
587
|
'45 41 37 72 2C 3C 48 02' => 'Tamron SP AF 24-135mm f/3.5-5.6 AD Aspherical (IF) Macro (190D)',
|
|
587
588
|
'33 54 3C 5E 24 24 62 02' => 'Tamron SP AF 28-75mm f/2.8 XR Di LD Aspherical (IF) Macro (A09)',
|
|
588
589
|
'FA 54 3C 5E 24 24 84 06' => 'Tamron SP AF 28-75mm f/2.8 XR Di LD Aspherical (IF) Macro (A09NII)', #JD
|
|
@@ -59,7 +59,7 @@ use Image::ExifTool::Exif;
|
|
|
59
59
|
use Image::ExifTool::GPS;
|
|
60
60
|
use Image::ExifTool::HP;
|
|
61
61
|
|
|
62
|
-
$VERSION = '3.
|
|
62
|
+
$VERSION = '3.57';
|
|
63
63
|
|
|
64
64
|
sub CryptShutterCount($$);
|
|
65
65
|
sub PrintFilter($$$);
|
|
@@ -564,6 +564,7 @@ my %pentaxModelID = (
|
|
|
564
564
|
0x1329a => 'GR IIIx', # (Ricoh)
|
|
565
565
|
0x132b8 => 'KF', #github322 (Ricoh)
|
|
566
566
|
0x132d6 => 'K-3 Mark III Monochrome', #github226 (Ricoh)
|
|
567
|
+
0x132e0 => 'GR IV', #github347 (Ricoh)
|
|
567
568
|
);
|
|
568
569
|
|
|
569
570
|
# Pentax city codes - (PH, Optio WP)
|
|
@@ -30,7 +30,7 @@ use strict;
|
|
|
30
30
|
use vars qw($VERSION $AUTOLOAD);
|
|
31
31
|
use Image::ExifTool qw(:DataAccess :Utils);
|
|
32
32
|
|
|
33
|
-
$VERSION = '1.
|
|
33
|
+
$VERSION = '1.72';
|
|
34
34
|
|
|
35
35
|
sub ConvertTimecode($);
|
|
36
36
|
sub ProcessSGLT($$$);
|
|
@@ -2031,6 +2031,7 @@ sub ProcessRIFF($$)
|
|
|
2031
2031
|
my $validate = $et->Options('Validate');
|
|
2032
2032
|
my $ee = $et->Options('ExtractEmbedded');
|
|
2033
2033
|
my $hash = $$et{ImageDataHash};
|
|
2034
|
+
my $base = 0;
|
|
2034
2035
|
|
|
2035
2036
|
# verify this is a valid RIFF file
|
|
2036
2037
|
return 0 unless $raf->Read($buff, 12) == 12;
|
|
@@ -2042,7 +2043,8 @@ sub ProcessRIFF($$)
|
|
|
2042
2043
|
return 0 unless $buff =~ /^(LA0[234]|OFR |LPAC|wvpk)/ and $raf->Read($buf2, 1024);
|
|
2043
2044
|
$type = $riffType{$1};
|
|
2044
2045
|
$buff .= $buf2;
|
|
2045
|
-
return 0 unless $buff =~ /WAVE(.{4})?fmt /sg and $raf->Seek(pos($buff) - 4, 0);
|
|
2046
|
+
return 0 unless $buff =~ /WAVE(.{4})?(junk|fmt )/sg and $raf->Seek(pos($buff) - 4, 0);
|
|
2047
|
+
$base = pos($buff) - 16;
|
|
2046
2048
|
}
|
|
2047
2049
|
$$raf{NoBuffer} = 1 if $et->Options('FastScan'); # disable buffering in FastScan mode
|
|
2048
2050
|
$mime = $riffMimeType{$type} if $type;
|
|
@@ -2159,7 +2161,7 @@ sub ProcessRIFF($$)
|
|
|
2159
2161
|
DataPos => 0, # (relative to Base)
|
|
2160
2162
|
Start => 0,
|
|
2161
2163
|
Size => $len,
|
|
2162
|
-
Base => $pos,
|
|
2164
|
+
Base => $pos + $base,
|
|
2163
2165
|
);
|
|
2164
2166
|
if ($setGroups) {
|
|
2165
2167
|
delete $$et{SET_GROUP0};
|
|
@@ -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.76';
|
|
38
38
|
|
|
39
39
|
sub ProcessSRF($$$);
|
|
40
40
|
sub ProcessSR2($$$);
|
|
@@ -2193,6 +2193,8 @@ my %hidUnk = ( Hidden => 1, Unknown => 1 );
|
|
|
2193
2193
|
399 => 'ZV-E10M2', #JR
|
|
2194
2194
|
400 => 'ILCE-1M2', #PH
|
|
2195
2195
|
401 => 'DSC-RX1RM3', #JR
|
|
2196
|
+
402 => 'ILCE-6400A', #github347
|
|
2197
|
+
404 => 'DSC-RX100M7A', #github347
|
|
2196
2198
|
406 => 'ILME-FX2', #JR
|
|
2197
2199
|
},
|
|
2198
2200
|
},
|
|
@@ -29,7 +29,7 @@ use vars qw($VERSION $RELEASE @ISA @EXPORT_OK %EXPORT_TAGS $AUTOLOAD @fileTypes
|
|
|
29
29
|
%jpegMarker %specialTags %fileTypeLookup $testLen $exeDir
|
|
30
30
|
%static_vars $advFmtSelf $configFile @configFiles $noConfig);
|
|
31
31
|
|
|
32
|
-
$VERSION = '13.
|
|
32
|
+
$VERSION = '13.36';
|
|
33
33
|
$RELEASE = '';
|
|
34
34
|
@ISA = qw(Exporter);
|
|
35
35
|
%EXPORT_TAGS = (
|
package/package.json
CHANGED