exiftool_vendored 11.55.0 → 11.57.0
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of exiftool_vendored might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/bin/Changes +19 -0
- data/bin/MANIFEST +3 -0
- data/bin/META.json +1 -1
- data/bin/META.yml +1 -1
- data/bin/README +2 -2
- data/bin/exiftool +3 -4
- data/bin/lib/Image/ExifTool.pm +20 -3
- data/bin/lib/Image/ExifTool/BuildTagLookup.pm +13 -4
- data/bin/lib/Image/ExifTool/Canon.pm +11 -1
- data/bin/lib/Image/ExifTool/DV.pm +1 -0
- data/bin/lib/Image/ExifTool/Exif.pm +25 -9
- data/bin/lib/Image/ExifTool/JPEG.pm +5 -1
- data/bin/lib/Image/ExifTool/Lytro.pm +1 -0
- data/bin/lib/Image/ExifTool/MOI.pm +1 -0
- data/bin/lib/Image/ExifTool/Minolta.pm +8 -125
- data/bin/lib/Image/ExifTool/Motorola.pm +119 -9
- data/bin/lib/Image/ExifTool/Nikon.pm +12 -1
- data/bin/lib/Image/ExifTool/Olympus.pm +1 -0
- data/bin/lib/Image/ExifTool/OpenEXR.pm +1 -0
- data/bin/lib/Image/ExifTool/Panasonic.pm +1 -1
- data/bin/lib/Image/ExifTool/QuickTime.pm +13 -1
- data/bin/lib/Image/ExifTool/Sony.pm +92 -64
- data/bin/lib/Image/ExifTool/TagLookup.pm +6 -4
- data/bin/lib/Image/ExifTool/TagNames.pod +476 -468
- data/bin/lib/Image/ExifTool/Validate.pm +2 -2
- data/bin/lib/Image/ExifTool/WriteXMP.pl +11 -9
- data/bin/perl-Image-ExifTool.spec +1 -1
- data/lib/exiftool_vendored/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5f39d0dfd8b00a1bac3a670f442b82c5cf53d68b
|
4
|
+
data.tar.gz: 2023c7abb0eced3d54c86e14f82850f4b2b67dc2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 15fc97cb632287191ff51434fe2b7b788eea7e21e0e1272a19a7743d835fd7e0c6746487e018cf44d03f72d15b99b6e4da5883315e5fa1244b75ee1d855dd856
|
7
|
+
data.tar.gz: 863527e8a305cec53ba64ad4b2d4fea0411d4ca158fb03a5629949f2c7eba1c2a3aaee28a2b19032bb6bebf3d35c84a5f3acf28aef41890c90495bd567890fa1
|
data/bin/Changes
CHANGED
@@ -7,6 +7,25 @@ RSS feed: http://owl.phy.queensu.ca/~phil/exiftool/rss.xml
|
|
7
7
|
Note: The most recent production release is Version 11.50. (Other versions are
|
8
8
|
considered development releases, and are not uploaded to CPAN.)
|
9
9
|
|
10
|
+
July 19, 2019 - Version 11.57
|
11
|
+
|
12
|
+
- Improved decoding of some tags for the Sony ILCE-7RM4 (thanks Jos Roost)
|
13
|
+
- Minor change to a Sony lens name
|
14
|
+
- Fixed format of a number of 8-bit integer QuickTime tags when writing
|
15
|
+
- Fixed problem replacing multiple structure elements in lists of XMP
|
16
|
+
structures
|
17
|
+
|
18
|
+
July 18, 2019 - Version 11.56
|
19
|
+
|
20
|
+
- Added support for the Sony ILCE-7RM4 (thanks Jos Roost)
|
21
|
+
- Added a new SonyModelID (thanks LibRaw)
|
22
|
+
- Added a few new Sony/Minolta LensType values (thanks LibRaw and Jos Roost)
|
23
|
+
- Decode some new Nikon and Motorola tags (thanks Neal Krawetz)
|
24
|
+
- Decode a couple more ColorData tags for some Canon models
|
25
|
+
- Extract PreviewImage from DNG files which don't have a .DNG extension
|
26
|
+
- Extract Huawei APP7 maker notes with the Unknown (-u) option
|
27
|
+
- Internal change in LensID logic for Sony E-type lenses
|
28
|
+
|
10
29
|
July 12, 2019 - Version 11.55
|
11
30
|
|
12
31
|
- Added write support for XMP-crs:Texture and XMP-drs tags
|
data/bin/MANIFEST
CHANGED
@@ -881,6 +881,8 @@ t/XMP_43.out
|
|
881
881
|
t/XMP_44.out
|
882
882
|
t/XMP_45.out
|
883
883
|
t/XMP_46.out
|
884
|
+
t/XMP_47.out
|
885
|
+
t/XMP_48.out
|
884
886
|
t/XMP_5.out
|
885
887
|
t/XMP_6.out
|
886
888
|
t/XMP_7.out
|
@@ -1056,6 +1058,7 @@ t/images/XMP3.xmp
|
|
1056
1058
|
t/images/XMP4.xmp
|
1057
1059
|
t/images/XMP5.xmp
|
1058
1060
|
t/images/XMP6.xmp
|
1061
|
+
t/images/XMP7.xmp
|
1059
1062
|
t/images/ZIP.gz
|
1060
1063
|
t/images/ZIP.zip
|
1061
1064
|
t/images/iWork.numbers
|
data/bin/META.json
CHANGED
data/bin/META.yml
CHANGED
data/bin/README
CHANGED
@@ -104,8 +104,8 @@ your home directory, then you would type the following commands in a
|
|
104
104
|
terminal window to extract and run ExifTool:
|
105
105
|
|
106
106
|
cd ~/Desktop
|
107
|
-
gzip -dc Image-ExifTool-11.
|
108
|
-
cd Image-ExifTool-11.
|
107
|
+
gzip -dc Image-ExifTool-11.57.tar.gz | tar -xf -
|
108
|
+
cd Image-ExifTool-11.57
|
109
109
|
./exiftool t/images/ExifTool.jpg
|
110
110
|
|
111
111
|
Note: These commands extract meta information from one of the test images.
|
data/bin/exiftool
CHANGED
@@ -6,13 +6,11 @@
|
|
6
6
|
#
|
7
7
|
# Revisions: Nov. 12/03 - P. Harvey Created
|
8
8
|
# (See html/history.html for revision history)
|
9
|
-
#
|
10
|
-
# References: ATV - Alexander Vonk, private communication
|
11
9
|
#------------------------------------------------------------------------------
|
12
10
|
use strict;
|
13
11
|
require 5.004;
|
14
12
|
|
15
|
-
my $version = '11.
|
13
|
+
my $version = '11.57';
|
16
14
|
|
17
15
|
# add our 'lib' directory to the include list BEFORE 'use Image::ExifTool'
|
18
16
|
my $exeDir;
|
@@ -3085,6 +3083,7 @@ sub EncodeXML($)
|
|
3085
3083
|
{
|
3086
3084
|
# encode binary data and non-UTF8 with special characters as base64
|
3087
3085
|
$$strPt = Image::ExifTool::XMP::EncodeBase64($$strPt);
|
3086
|
+
# #ATV = Alexander Vonk, private communication
|
3088
3087
|
return 'http://www.w3.org/2001/XMLSchema#base64Binary'; #ATV
|
3089
3088
|
} elsif ($escapeHTML) {
|
3090
3089
|
$$strPt = Image::ExifTool::HTML::EscapeHTML($$strPt, $altEnc);
|
@@ -5158,7 +5157,7 @@ with this command:
|
|
5158
5157
|
|
5159
5158
|
produces output like this:
|
5160
5159
|
|
5161
|
-
-- Generated by ExifTool 11.
|
5160
|
+
-- Generated by ExifTool 11.57 --
|
5162
5161
|
File: a.jpg - 2003:10:31 15:44:19
|
5163
5162
|
(f/5.6, 1/60s, ISO 100)
|
5164
5163
|
File: b.jpg - 2006:05:23 11:57:38
|
data/bin/lib/Image/ExifTool.pm
CHANGED
@@ -7,7 +7,7 @@
|
|
7
7
|
#
|
8
8
|
# Revisions: Nov. 12/2003 - P. Harvey Created
|
9
9
|
# (See html/history.html for revision history)
|
10
|
-
#
|
10
|
+
#
|
11
11
|
# Legal: Copyright (c) 2003-2019, Phil Harvey (phil at owl.phy.queensu.ca)
|
12
12
|
# This library is free software; you can redistribute it and/or
|
13
13
|
# modify it under the same terms as Perl itself.
|
@@ -27,7 +27,7 @@ use vars qw($VERSION $RELEASE @ISA @EXPORT_OK %EXPORT_TAGS $AUTOLOAD @fileTypes
|
|
27
27
|
%mimeType $swapBytes $swapWords $currentByteOrder %unpackStd
|
28
28
|
%jpegMarker %specialTags %fileTypeLookup);
|
29
29
|
|
30
|
-
$VERSION = '11.
|
30
|
+
$VERSION = '11.57';
|
31
31
|
$RELEASE = '';
|
32
32
|
@ISA = qw(Exporter);
|
33
33
|
%EXPORT_TAGS = (
|
@@ -6597,7 +6597,7 @@ sub ProcessJPEG($$)
|
|
6597
6597
|
DirStart(\%dirInfo, 6);
|
6598
6598
|
$self->ProcessDirectory(\%dirInfo, $tagTablePtr);
|
6599
6599
|
}
|
6600
|
-
} elsif ($marker == 0xe7) { # APP7 (Pentax, Qualcomm)
|
6600
|
+
} elsif ($marker == 0xe7) { # APP7 (Pentax, Huawei, Qualcomm)
|
6601
6601
|
if ($$segDataPt =~ /^PENTAX \0(II|MM)/) {
|
6602
6602
|
# found in K-3 images (is this multi-segment??)
|
6603
6603
|
SetByteOrder($1);
|
@@ -6612,6 +6612,23 @@ sub ProcessJPEG($$)
|
|
6612
6612
|
$dumpEnd = $segPos + $length;
|
6613
6613
|
}
|
6614
6614
|
$self->ProcessDirectory(\%dirInfo, $tagTablePtr);
|
6615
|
+
} elsif ($$segDataPt =~ /^HUAWEI\0\0(II|MM)/) {
|
6616
|
+
SetByteOrder($1);
|
6617
|
+
undef $dumpType; # (dump this ourself)
|
6618
|
+
my $hdrLen = 16;
|
6619
|
+
my $tagTablePtr = GetTagTable('Image::ExifTool::Unknown::Main');
|
6620
|
+
DirStart(\%dirInfo, $hdrLen, 8);
|
6621
|
+
$dirInfo{DirName} = 'Huawei APP7';
|
6622
|
+
if ($htmlDump) {
|
6623
|
+
$self->HDump($segPos-4, 4, 'APP7 header', "Data size: $length bytes");
|
6624
|
+
$self->HDump($segPos, $hdrLen, 'Huawei header', 'APP7 data type: Huawei');
|
6625
|
+
$dumpEnd = $segPos + $length;
|
6626
|
+
}
|
6627
|
+
$$self{SET_GROUP0} = 'APP7';
|
6628
|
+
$$self{SET_GROUP1} = 'Huawei';
|
6629
|
+
$self->ProcessDirectory(\%dirInfo, $tagTablePtr);
|
6630
|
+
delete $$self{SET_GROUP0};
|
6631
|
+
delete $$self{SET_GROUP1};
|
6615
6632
|
} elsif ($$segDataPt =~ /^\x1aQualcomm Camera Attributes/) {
|
6616
6633
|
# found in HP iPAQ_VoiceMessenger
|
6617
6634
|
$dumpType = 'Qualcomm';
|
@@ -31,10 +31,11 @@ use Image::ExifTool::IPTC;
|
|
31
31
|
use Image::ExifTool::XMP;
|
32
32
|
use Image::ExifTool::Canon;
|
33
33
|
use Image::ExifTool::Nikon;
|
34
|
+
use Image::ExifTool::Sony;
|
34
35
|
use Image::ExifTool::Validate;
|
35
36
|
use Image::ExifTool::MacOS;
|
36
37
|
|
37
|
-
$VERSION = '3.
|
38
|
+
$VERSION = '3.26';
|
38
39
|
@ISA = qw(Exporter);
|
39
40
|
|
40
41
|
sub NumbersFirst($$);
|
@@ -822,7 +823,8 @@ sub new
|
|
822
823
|
$hexID = $$vars{HEX_ID};
|
823
824
|
my $processBinaryData = ($$table{PROCESS_PROC} and (
|
824
825
|
$$table{PROCESS_PROC} eq \&Image::ExifTool::ProcessBinaryData or
|
825
|
-
$$table{PROCESS_PROC} eq \&Image::ExifTool::Nikon::ProcessNikonEncrypted
|
826
|
+
$$table{PROCESS_PROC} eq \&Image::ExifTool::Nikon::ProcessNikonEncrypted or
|
827
|
+
$$table{PROCESS_PROC} eq \&Image::ExifTool::Sony::ProcessEnciphered));
|
826
828
|
if ($$vars{ID_LABEL} or $processBinaryData) {
|
827
829
|
my $s = $$table{FORMAT} ? Image::ExifTool::FormatSize($$table{FORMAT}) || 1 : 1;
|
828
830
|
$binaryTable = 1;
|
@@ -960,6 +962,11 @@ TagID: foreach $tagID (@keys) {
|
|
960
962
|
$$tagInfo{Groups}{2} ne 'Time') and $short ne 'DICOM') {
|
961
963
|
warn "$short $name should be in 'Time' group!\n";
|
962
964
|
}
|
965
|
+
if ($name eq 'DateTimeOriginal' and (not $$tagInfo{Description} or
|
966
|
+
$$tagInfo{Description} ne 'Date/Time Original'))
|
967
|
+
{
|
968
|
+
warn "Need Description for $short DateTimeOriginal\n";
|
969
|
+
}
|
963
970
|
# validate Description (can't contain special characters)
|
964
971
|
if ($$tagInfo{Description} and
|
965
972
|
$$tagInfo{Description} ne EscapeHTML($$tagInfo{Description}))
|
@@ -1426,11 +1433,13 @@ TagID: foreach $tagID (@keys) {
|
|
1426
1433
|
if ($$table{$var}) {
|
1427
1434
|
foreach $tagID (@{$$table{$var}}) {
|
1428
1435
|
$$hash{$tagID} and delete($$hash{$tagID}), next;
|
1429
|
-
warn "Warning: Extra
|
1436
|
+
warn sprintf("Warning: Extra %s for %s tag %d (0x%.4x)\n",
|
1437
|
+
$var, $short, $tagID, $tagID);
|
1430
1438
|
}
|
1431
1439
|
}
|
1432
1440
|
foreach $tagID (sort keys %$hash) {
|
1433
|
-
warn "Warning: Missing
|
1441
|
+
warn sprintf("Warning: Missing %s for %s %s, tag %d (0x%.4x)\n",
|
1442
|
+
$var, $short, $$hash{$tagID}, $tagID, $tagID);
|
1434
1443
|
}
|
1435
1444
|
}
|
1436
1445
|
}
|
@@ -88,7 +88,7 @@ sub ProcessCTMD($$$);
|
|
88
88
|
sub ProcessExifInfo($$$);
|
89
89
|
sub SwapWords($);
|
90
90
|
|
91
|
-
$VERSION = '4.
|
91
|
+
$VERSION = '4.18';
|
92
92
|
|
93
93
|
# Note: Removed 'USM' from 'L' lenses since it is redundant - PH
|
94
94
|
# (or is it? Ref 32 shows 5 non-USM L-type lenses)
|
@@ -7417,6 +7417,16 @@ my %ciMaxFocal = (
|
|
7417
7417
|
Condition => '$$self{ColorDataVersion} == -4',
|
7418
7418
|
Format => 'int16s[4]',
|
7419
7419
|
},
|
7420
|
+
0x0569 => { #PH (NC)
|
7421
|
+
Name => 'NormalWhiteLevel',
|
7422
|
+
Condition => '$$self{ColorDataVersion} == -4',
|
7423
|
+
Format => 'int16u',
|
7424
|
+
},
|
7425
|
+
0x056a => { #PH (NC)
|
7426
|
+
Name => 'SpecularWhiteLevel',
|
7427
|
+
Condition => '$$self{ColorDataVersion} == -4',
|
7428
|
+
Format => 'int16u',
|
7429
|
+
},
|
7420
7430
|
);
|
7421
7431
|
|
7422
7432
|
# Color data (MakerNotes tag 0x4001, count=1273|1275) (ref PH)
|
@@ -136,6 +136,7 @@ my @dvTags = (
|
|
136
136
|
VARS => { NO_ID => 1 },
|
137
137
|
NOTES => 'The following tags are extracted from DV videos.',
|
138
138
|
DateTimeOriginal => {
|
139
|
+
Description => 'Date/Time Original',
|
139
140
|
Groups => { 2 => 'Time' },
|
140
141
|
PrintConv => '$self->ConvertDateTime($val)',
|
141
142
|
},
|
@@ -55,7 +55,7 @@ use vars qw($VERSION $AUTOLOAD @formatSize @formatName %formatNumber %intFormat
|
|
55
55
|
use Image::ExifTool qw(:DataAccess :Utils);
|
56
56
|
use Image::ExifTool::MakerNotes;
|
57
57
|
|
58
|
-
$VERSION = '4.
|
58
|
+
$VERSION = '4.19';
|
59
59
|
|
60
60
|
sub ProcessExif($$$);
|
61
61
|
sub WriteExif($$$);
|
@@ -530,7 +530,7 @@ my %sampleFormat = (
|
|
530
530
|
# (APP1 IFD2 is for Leica JPEG preview)
|
531
531
|
Condition => q[
|
532
532
|
not ($$self{TIFF_TYPE} eq 'CR2' and $$self{DIR_NAME} eq 'IFD0') and
|
533
|
-
not ($$self{TIFF_TYPE}
|
533
|
+
not ($$self{TIFF_TYPE} =~ /^(DNG|TIFF)$/ and $$self{Compression} eq '7' and $$self{SubfileType} ne '0') and
|
534
534
|
not ($$self{TIFF_TYPE} eq 'APP1' and $$self{DIR_NAME} eq 'IFD2')
|
535
535
|
],
|
536
536
|
Name => 'StripOffsets',
|
@@ -616,7 +616,7 @@ my %sampleFormat = (
|
|
616
616
|
# (APP1 IFD2 is for Leica JPEG preview)
|
617
617
|
Condition => q[
|
618
618
|
not ($$self{TIFF_TYPE} eq 'CR2' and $$self{DIR_NAME} eq 'IFD0') and
|
619
|
-
not ($$self{TIFF_TYPE}
|
619
|
+
not ($$self{TIFF_TYPE} =~ /^(DNG|TIFF)$/ and $$self{Compression} eq '7' and $$self{SubfileType} ne '0') and
|
620
620
|
not ($$self{TIFF_TYPE} eq 'APP1' and $$self{DIR_NAME} eq 'IFD2')
|
621
621
|
],
|
622
622
|
Name => 'StripByteCounts',
|
@@ -5171,6 +5171,7 @@ sub MatchLensModel($$)
|
|
5171
5171
|
# 3) LensSpec print value, 4) LensType numerical value, 5) FocalLength,
|
5172
5172
|
# 6) MaxAperture, 7) MaxApertureValue, 8) MinFocalLength, 9) MaxFocalLength,
|
5173
5173
|
# 10) LensModel, 11) LensFocalRange, 12) LensSpec
|
5174
|
+
my %sonyEtype;
|
5174
5175
|
sub PrintLensID($$@)
|
5175
5176
|
{
|
5176
5177
|
my ($et, $lensTypePrt, $printConv, $lensSpecPrt, $lensType, $focalLength,
|
@@ -5205,12 +5206,27 @@ sub PrintLensID($$@)
|
|
5205
5206
|
($shortFocal, $longFocal) = ($1, $2 || $1);
|
5206
5207
|
}
|
5207
5208
|
if ($$et{Make} eq 'SONY') {
|
5208
|
-
|
5209
|
-
|
5210
|
-
|
5211
|
-
|
5212
|
-
|
5213
|
-
|
5209
|
+
if ($lensType eq 65535) {
|
5210
|
+
# handle Sony E-type lenses when LensType2 isn't valid (NEX/ILCE models only)
|
5211
|
+
if ($$et{Model} =~ /NEX|ILCE/) {
|
5212
|
+
unless (%sonyEtype) {
|
5213
|
+
my ($index, $i, %did, $lens);
|
5214
|
+
require Image::ExifTool::Sony;
|
5215
|
+
foreach (sort keys %Image::ExifTool::Sony::sonyLensTypes2) {
|
5216
|
+
($lens = $Image::ExifTool::Sony::sonyLensTypes2{$_}) =~ s/ or .*//;
|
5217
|
+
next if $did{$lens};
|
5218
|
+
($i, $index) = $index ? ("65535.$index", $index + 1) : (65535, 1);
|
5219
|
+
$did{$sonyEtype{$i} = $lens} = 1;
|
5220
|
+
}
|
5221
|
+
}
|
5222
|
+
$printConv = \%sonyEtype;
|
5223
|
+
}
|
5224
|
+
} elsif ($lensType != 0xff00) {
|
5225
|
+
# Patch for Metabones or other adapters on Sony E-mount cameras (ref Jos Roost)
|
5226
|
+
# Metabones Canon EF to E-mount adapters add 0xef00, 0xbc00 or 0x7700 to the
|
5227
|
+
# high byte for 2-byte Canon LensType values, so we need to adjust for these.
|
5228
|
+
# Offset 0xef00 is also used by Sigma MC-11, Fotodiox and Viltrox EF-E adapters.
|
5229
|
+
# Have to exclude A-mount Sigma Filtermatic with 'odd' LensType=0xff00.
|
5214
5230
|
require Image::ExifTool::Minolta;
|
5215
5231
|
if ($Image::ExifTool::Minolta::metabonesID{$lensType & 0xff00}) {
|
5216
5232
|
$lensType -= ($lensType >= 0xef00 ? 0xef00 : $lensType >= 0xbc00 ? 0xbc00 : 0x7700);
|
@@ -11,7 +11,7 @@ use strict;
|
|
11
11
|
use vars qw($VERSION);
|
12
12
|
use Image::ExifTool qw(:DataAccess :Utils);
|
13
13
|
|
14
|
-
$VERSION = '1.
|
14
|
+
$VERSION = '1.28';
|
15
15
|
|
16
16
|
sub ProcessOcad($$$);
|
17
17
|
sub ProcessJPEG_HDR($$$);
|
@@ -139,6 +139,10 @@ sub ProcessJPEG_HDR($$$);
|
|
139
139
|
Name => 'Pentax',
|
140
140
|
Condition => '$$valPt =~ /^PENTAX \0/',
|
141
141
|
SubDirectory => { TagTable => 'Image::ExifTool::Pentax::Main' },
|
142
|
+
}, {
|
143
|
+
Name => 'Huawei',
|
144
|
+
Condition => '$$valPt =~ /^HUAWEI\0\0/',
|
145
|
+
SubDirectory => { TagTable => 'Image::ExifTool::Unknown::Main' },
|
142
146
|
}, {
|
143
147
|
Name => 'Qualcomm',
|
144
148
|
Condition => '$$valPt =~ /^\x1aQualcomm Camera Attributes/',
|
@@ -50,6 +50,7 @@ sub ExtractTags($$$);
|
|
50
50
|
DevicesAccelerometerSampleArrayZ => { Name => 'AccelerometerZ'},
|
51
51
|
DevicesClockZuluTime => {
|
52
52
|
Name => 'DateTimeOriginal',
|
53
|
+
Description => 'Date/Time Original',
|
53
54
|
Groups => { 2 => 'Time' },
|
54
55
|
ValueConv => 'require Image::ExifTool::XMP; Image::ExifTool::XMP::ConvertXMPDate($val)',
|
55
56
|
PrintConv => '$self->ConvertDateTime($val)',
|
@@ -49,7 +49,7 @@ use vars qw($VERSION %minoltaLensTypes %minoltaTeleconverters %minoltaColorMode
|
|
49
49
|
use Image::ExifTool qw(:DataAccess :Utils);
|
50
50
|
use Image::ExifTool::Exif;
|
51
51
|
|
52
|
-
$VERSION = '2.
|
52
|
+
$VERSION = '2.78';
|
53
53
|
|
54
54
|
# Full list of product codes for Sony-compatible Minolta lenses
|
55
55
|
# (ref http://www.kb.sony.com/selfservice/documentLink.do?externalId=C1000570)
|
@@ -539,130 +539,13 @@ $VERSION = '2.77';
|
|
539
539
|
65280 => 'Sigma 16mm F2.8 Filtermatic Fisheye', #IB
|
540
540
|
# all M42-type lenses give a value of 65535 (and FocalLength=0, FNumber=1)
|
541
541
|
65535 => 'E-Mount, T-Mount, Other Lens or no lens', #JD/JR
|
542
|
-
#
|
543
|
-
|
544
|
-
#
|
545
|
-
|
546
|
-
|
547
|
-
|
548
|
-
|
549
|
-
65535.5 => 'Sony E 30mm F3.5 Macro', #JR (32788 - SEL30M35)
|
550
|
-
65535.6 => 'Sony E 24mm F1.8 ZA', #PH (32789 - SEL24F18Z)
|
551
|
-
65535.7 => 'Sony E 50mm F1.8 OSS', #PH (32790 - SEL50F18)
|
552
|
-
65535.8 => 'Sony E 16-70mm F4 ZA OSS', #JR (32791 - SEL1670Z)
|
553
|
-
65535.9 => 'Sony E 10-18mm F4 OSS', #PH (32792 - SEL1018)
|
554
|
-
'65535.10' => 'Sony E PZ 16-50mm F3.5-5.6 OSS', #PH (32793 - SELP1650)
|
555
|
-
'65535.11' => 'Sony FE 35mm F2.8 ZA', #JR (32794 - SEL35F28Z)
|
556
|
-
'65535.12' => 'Sony FE 24-70mm F4 ZA OSS', #JR (32795 - SEL2470Z)
|
557
|
-
'65535.13' => 'Sony FE 85mm F1.8', #JR (32796 - SEL85F18)
|
558
|
-
'65535.14' => 'Sony E 18-200mm F3.5-6.3 OSS LE', #JR (32797 or 0 - SEL18200LE)
|
559
|
-
'65535.15' => 'Sony E 20mm F2.8', #PH (32798 - SEL20F28)
|
560
|
-
'65535.16' => 'Sony E 35mm F1.8 OSS', #JR (32799 - SEL35F18)
|
561
|
-
'65535.17' => 'Sony E PZ 18-105mm F4 G OSS', #JR (32800 - SELP18105G)
|
562
|
-
'65535.18' => 'Sony FE 12-24mm F4 G', #JR (32801 - SEL1224G)
|
563
|
-
'65535.19' => 'Sony FE 90mm F2.8 Macro G OSS', #JR (32802 - SEL90M28G)
|
564
|
-
'65535.20' => 'Sony E 18-50mm F4-5.6', #JR (32803 - SEL1850)
|
565
|
-
'65535.21' => 'Sony FE 24mm F1.4 GM', #IB (32804 - SEL24F14GM)
|
566
|
-
'65535.22' => 'Sony FE 24-105mm F4 G OSS', #IB (32805 - SEL24105G)
|
567
|
-
'65535.23' => 'Sony E PZ 18-200mm F3.5-6.3 OSS', #JR (32807 - SELP18200)
|
568
|
-
'65535.24' => 'Sony FE 55mm F1.8 ZA', #JR (32808 - SEL55F18Z)
|
569
|
-
'65535.25' => 'Sony FE 70-200mm F4 G OSS', #JR (32810 - SEL70200G)
|
570
|
-
'65535.26' => 'Sony FE 16-35mm F4 ZA OSS', #JR (32811 - SEL1635Z)
|
571
|
-
'65535.27' => 'Sony FE 50mm F2.8 Macro', #JR (32812 - SEL50M28)
|
572
|
-
'65535.28' => 'Sony FE 28-70mm F3.5-5.6 OSS', #JR (32813 - SEL2870)
|
573
|
-
'65535.29' => 'Sony FE 35mm F1.4 ZA', #JR (32814 - SEL35F14Z)
|
574
|
-
'65535.30' => 'Sony FE 24-240mm F3.5-6.3 OSS', #JR (32815 - SEL24240)
|
575
|
-
'65535.31' => 'Sony FE 28mm F2', #JR (32816 - SEL28F20)
|
576
|
-
'65535.32' => 'Sony FE PZ 28-135mm F4 G OSS', #JR (32817 - SELP28135G)
|
577
|
-
'65535.33' => 'Sony FE 100mm F2.8 STF GM OSS', #JR (32819 - SEL100F28GM, uses 33076 when set to 0.57m - 1.0m range)
|
578
|
-
'65535.34' => 'Sony E PZ 18-110mm F4 G OSS', #JR (32820 - SELP18110G)
|
579
|
-
'65535.35' => 'Sony FE 24-70mm F2.8 GM', #JR (32821 - SEL2470GM)
|
580
|
-
'65535.36' => 'Sony FE 50mm F1.4 ZA', #JR (32822 - SEL50F14Z)
|
581
|
-
'65535.37' => 'Sony FE 85mm F1.4 GM', #JR (32823 - SEL85F14GM)
|
582
|
-
'65535.38' => 'Sony FE 50mm F1.8', #JR (32824 - SEL50F18F with trailing "F" as compared to 32790)
|
583
|
-
'65535.39' => 'Sony FE 21mm F2.8 (SEL28F20 + SEL075UWC)', #JR (32826 - SEL28F20 + SEL075UWC Ultra-wide converter)
|
584
|
-
'65535.40' => 'Sony FE 16mm F3.5 Fisheye (SEL28F20 + SEL057FEC)', #JR (32827 - SEL28F20 + SEL057FEC Fisheye converter)
|
585
|
-
'65535.41' => 'Sony FE 70-300mm F4.5-5.6 G OSS', #JR (32828 - SEL70300G)
|
586
|
-
'65535.42' => 'Sony FE 100-400mm F4.5-5.6 GM OSS', #JR (32829 - SEL100400GM)
|
587
|
-
'65535.43' => 'Sony FE 70-200mm F2.8 GM OSS', #JR (32830 - SEL70200GM)
|
588
|
-
'65535.44' => 'Sony FE 16-35mm F2.8 GM', #JR (32831 - SEL1635GM)
|
589
|
-
'65535.45' => 'Sony FE 400mm F2.8 GM OSS', #IB (32848 - SEL400F28GM)
|
590
|
-
'65535.46' => 'Sony E 18-135mm F3.5-5.6 OSS', #JR (32849 - SEL18135)
|
591
|
-
'65535.47' => 'Sony FE 135mm F1.8 GM', #IB (32850 - SEL135F18GM)
|
592
|
-
'65535.48' => 'Sony FE 200-600mm F5.6-6.3 G OSS',#IB (32851 - SEL200600G)
|
593
|
-
'65535.49' => 'Sony FE 600mm F4 GM OSS', #IB (32852 - SEL600F40GM)
|
594
|
-
'65535.50' => 'Sony FE 35mm F1.8', #JR/IB (32858 - SEL35F18F)
|
595
|
-
'65535.51' => 'Sony FE 70-200mm F2.8 GM OSS + 1.4X Teleconverter', #JR (33072 - SEL70200GM + SEL14TC)
|
596
|
-
'65535.52' => 'Sony FE 70-200mm F2.8 GM OSS + 2X Teleconverter', #JR (33073 - SEL70200GM + SEL20TC)
|
597
|
-
'65535.53' => 'Sony FE 100-400mm F4.5-5.6 GM OSS + 1.4X Teleconverter', #JR (33077 - SEL100400GM + SEL14TC)
|
598
|
-
'65535.54' => 'Sony FE 100-400mm F4.5-5.6 GM OSS + 2X Teleconverter', #JR (33078 - SEL100400GM + SEL20TC)
|
599
|
-
'65535.55' => 'Sony FE 400mm F2.8 GM OSS + 1.4X Teleconverter', #IB (33079 - SEL400F28GM + SEL14TC)
|
600
|
-
'65535.56' => 'Sony FE 400mm F2.8 GM OSS + 2X Teleconverter', #JR (33080 - SEL400F28GM + SEL20TC)
|
601
|
-
'65535.57' => 'Sony FE 200-600mm F5.6-6.3 G OSS + 1.4X Teleconverter', #JR (33081 - SEL200600G + SEL14TC) (NC)
|
602
|
-
'65535.58' => 'Sony FE 200-600mm F5.6-6.3 G OSS + 2X Teleconverter', #JR (33082 - SEL200600G + SEL20TC)
|
603
|
-
'65535.59' => 'Sony FE 600mm F4 GM OSS + 1.4X Teleconverter', #JR (33083 - SEL600F40GM + SEL14TC) (NC)
|
604
|
-
'65535.60' => 'Sony FE 600mm F4 GM OSS + 2X Teleconverter', #JR (33084 - SEL600F40GM + SEL20TC)
|
605
|
-
#
|
606
|
-
# 3rd party E lenses
|
607
|
-
#
|
608
|
-
'65535.61' => 'Samyang AF 50mm F1.4', #JR (32789)
|
609
|
-
'65535.62' => 'Samyang AF 14mm F2.8', #JR (32790 and 51505)
|
610
|
-
'65535.63' => 'Samyang AF 24mm F2.8', #JR (32794)
|
611
|
-
'65535.64' => 'Samyang AF 35mm F2.8', #PH (51505)
|
612
|
-
'65535.65' => 'Samyang AF 35mm F1.4', #IB (51507)
|
613
|
-
'65535.66' => 'Samyang AF 85mm F1.4', #IB (32823)
|
614
|
-
'65535.67' => 'Sigma 19mm F2.8 [EX] DN', #JR (0)
|
615
|
-
'65535.68' => 'Sigma 30mm F2.8 [EX] DN', #JR (0)
|
616
|
-
'65535.69' => 'Sigma 60mm F2.8 DN', #JR (0)
|
617
|
-
'65535.70' => 'Sigma 30mm F1.4 DC DN | C', #IB (50480) (016)
|
618
|
-
'65535.71' => 'Sigma 85mm F1.4 DG HSM | A', #JR (50499) (018)
|
619
|
-
'65535.72' => 'Sigma 16mm F1.4 DC DN | C', #JR (50503) (017)
|
620
|
-
'65535.73' => 'Sigma 105mm F1.4 DG HSM | A', #IB (50507) (018)
|
621
|
-
'65535.74' => 'Sigma 56mm F1.4 DC DN | C', #JR (50508) (018)
|
622
|
-
'65535.75' => 'Sigma 70-200mm F2.8 DG OS HSM | S',#IB (50512) (018)
|
623
|
-
'65535.76' => 'Sigma 70mm F2.8 DG MACRO | A', #JR (50513) (018)
|
624
|
-
'65535.77' => 'Sigma 50mm F1.4 DG HSM | A', #JR (50481) (018)
|
625
|
-
'65535.78' => 'Sigma 35mm F1.4 DG HSM | A', #JR (50488) (018)
|
626
|
-
'65535.79' => 'Tamron 18-200mm F3.5-6.3 Di III VC', #JR (0 - Model B011)
|
627
|
-
'65535.80' => 'Tamron 28-75mm F2.8 Di III RXD', #JR (49457 - Model A036)
|
628
|
-
'65535.81' => 'Tamron 17-28mm F2.8 Di III RXD', #JR (49458 - Model A046)
|
629
|
-
'65535.82' => 'Tokina FiRIN 20mm F2 FE MF', #JR (0)
|
630
|
-
'65535.83' => 'Tokina FiRIN 20mm F2 FE AF', #JR (49712 or 0)
|
631
|
-
'65535.84' => 'Tokina FiRIN 100mm F2.8 FE MACRO',#JR (49713)
|
632
|
-
'65535.85' => 'Voigtlander SUPER WIDE-HELIAR 15mm F4.5 III', #JR (50992)
|
633
|
-
'65535.86' => 'Voigtlander HELIAR-HYPER WIDE 10mm F5.6', #IB (50993)
|
634
|
-
'65535.87' => 'Voigtlander ULTRA WIDE-HELIAR 12mm F5.6 III', #IB (50994)
|
635
|
-
'65535.88' => 'Voigtlander MACRO APO-LANTHAR 65mm F2 Aspherical', #JR (50995)
|
636
|
-
'65535.89' => 'Voigtlander NOKTON 40mm F1.2 Aspherical', #JR (50996)
|
637
|
-
'65535.90' => 'Voigtlander NOKTON classic 35mm F1.4', #JR (50997)
|
638
|
-
'65535.91' => 'Voigtlander MACRO APO-LANTHAR 110mm F2.5', #JR (50998)
|
639
|
-
'65535.92' => 'Voigtlander COLOR-SKOPAR 21mm F3.5 Aspherical', #IB (50999)
|
640
|
-
'65535.93' => 'Voigtlander NOKTON 50mm F1.2 Aspherical', #JR (51000)
|
641
|
-
'65535.94' => 'Voigtlander NOKTON 21mm F1.4 Aspherical', #JR (51001)
|
642
|
-
'65535.95' => 'Viltrox PFU RBMH 85mm F1.8', #JR (32796)
|
643
|
-
'65535.96' => 'Zeiss Touit 12mm F2.8', #JR (49201 or 0)
|
644
|
-
'65535.97' => 'Zeiss Touit 32mm F1.8', #JR (49202 or 0)
|
645
|
-
'65535.98' => 'Zeiss Touit 50mm F2.8 Macro', #JR (49203 or 0)
|
646
|
-
'65535.99' => 'Zeiss Batis 25mm F2', #JR (49216)
|
647
|
-
'65535.100' => 'Zeiss Batis 85mm F1.8', #JR (49217)
|
648
|
-
'65535.101' => 'Zeiss Batis 18mm F2.8', #IB (49218)
|
649
|
-
'65535.102' => 'Zeiss Batis 135mm F2.8', #IB (49219)
|
650
|
-
'65535.103' => 'Zeiss Batis 40mm F2 CF', #JR (49220)
|
651
|
-
'65535.104' => 'Zeiss Loxia 50mm F2', #JR (49232 or 0)
|
652
|
-
'65535.105' => 'Zeiss Loxia 35mm F2', #JR (49233 or 0)
|
653
|
-
'65535.106' => 'Zeiss Loxia 21mm F2.8', #JR (49234)
|
654
|
-
'65535.107' => 'Zeiss Loxia 85mm F2.4', #JR (49235)
|
655
|
-
'65535.108' => 'Zeiss Loxia 25mm F2.4', #JR (49236)
|
656
|
-
#
|
657
|
-
# other lenses
|
658
|
-
#
|
659
|
-
'65535.109' => 'Arax MC 35mm F2.8 Tilt+Shift', #JD
|
660
|
-
'65535.110' => 'Arax MC 80mm F2.8 Tilt+Shift', #JD
|
661
|
-
'65535.111' => 'Zenitar MF 16mm F2.8 Fisheye M42', #JD
|
662
|
-
'65535.112' => 'Samyang 500mm Mirror F8.0', #19
|
663
|
-
'65535.113' => 'Pentacon Auto 135mm F2.8', #19
|
664
|
-
'65535.114' => 'Pentacon Auto 29mm F2.8', #19
|
665
|
-
'65535.115' => 'Helios 44-2 58mm F2.0', #19
|
542
|
+
'65535.1' => 'Arax MC 35mm F2.8 Tilt+Shift', #JD
|
543
|
+
'65535.2' => 'Arax MC 80mm F2.8 Tilt+Shift', #JD
|
544
|
+
'65535.3' => 'Zenitar MF 16mm F2.8 Fisheye M42', #JD
|
545
|
+
'65535.4' => 'Samyang 500mm Mirror F8.0', #19
|
546
|
+
'65535.5' => 'Pentacon Auto 135mm F2.8', #19
|
547
|
+
'65535.6' => 'Pentacon Auto 29mm F2.8', #19
|
548
|
+
'65535.7' => 'Helios 44-2 58mm F2.0', #19
|
666
549
|
);
|
667
550
|
|
668
551
|
%minoltaTeleconverters = (
|