exiftool_vendored 11.89.0 → 11.90.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.

@@ -15,7 +15,11 @@ package Image::ExifTool::QuickTime;
15
15
 
16
16
  use strict;
17
17
 
18
+ use Image::ExifTool qw(:DataAccess :Utils);
19
+ use Image::ExifTool::QuickTime;
20
+
18
21
  sub Process_tx3g($$$);
22
+ sub Process_mebx($$$);
19
23
  sub ProcessFreeGPS($$$);
20
24
  sub ProcessFreeGPS2($$$);
21
25
 
@@ -524,7 +524,6 @@ $VERSION = '1.31';
524
524
  Name => 'LensType',
525
525
  Condition => '$$self{MakerNoteSigmaVer} >= 3 and $format eq "string"',
526
526
  Notes => 'some newer models only',
527
-
528
527
  ValueConv => '$val =~ /^[0-9a-f]+$/i ? hex($val) : $val',
529
528
  # (truncate decimal part and convert hex)
530
529
  ValueConvInv => '$val=~s/\.\d+$//;$val=~/^0x/ and $val=hex($val);IsInt($val) ? sprintf("%x",$val) : $val',
@@ -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.21';
37
+ $VERSION = '3.22';
38
38
 
39
39
  sub ProcessSRF($$$);
40
40
  sub ProcessSR2($$$);
@@ -142,6 +142,7 @@ sub PrintInvLensSpec($;$$);
142
142
  32853 => 'Sony E 16-55mm F2.8 G', #IB/JR
143
143
  32854 => 'Sony E 70-350mm F4.5-6.3 G OSS', #IB/JR
144
144
  32858 => 'Sony FE 35mm F1.8', #JR/IB
145
+ 32859 => 'Sony FE 20mm F1.8 G', #IB/JR
145
146
 
146
147
  # (comment this out so LensID will report the LensModel, which is more useful)
147
148
  # 32952 => 'Metabones Canon EF Speed Booster Ultra', #JR (corresponds to 184, but 'Advanced' mode, LensMount reported as E-mount)
@@ -12681,7 +12681,7 @@ These tags are written by Nikon DSLR's which have the live view feature.
12681
12681
  AFPointsUsed undef[21]
12682
12682
  AFPointsUsed undef[29]
12683
12683
  AFPointsUsed undef[20]
12684
- AFPointsUsed undef[62]
12684
+ AFPointsUsed undef[13]
12685
12685
  AFPointsUsed undef[7]
12686
12686
  16 AFImageWidth int16u
12687
12687
  18 AFImageHeight int16u
@@ -110,7 +110,7 @@ sub ProcessTXT($$)
110
110
  }
111
111
  $nl = $1 if $$dataPt =~ /(\r\n|\r|\n)/;
112
112
  }
113
-
113
+
114
114
  my $tagTablePtr = GetTagTable('Image::ExifTool::Text::Main');
115
115
 
116
116
  $et->SetFileType();
@@ -158,7 +158,7 @@ my %timeInfo = (
158
158
  'X-apple-calendar-color'=> 'CalendarColor',
159
159
  'X-apple-default-alarm' => 'DefaultAlarm',
160
160
  'X-apple-local-default-alarm' => 'LocalDefaultAlarm',
161
- 'X-microsoft-cdo-appt-sequence' => 'AppointmentSequence',
161
+ 'X-microsoft-cdo-appt-sequence' => 'AppointmentSequence',
162
162
  'X-microsoft-cdo-ownerapptid' => 'OwnerAppointmentID',
163
163
  'X-microsoft-cdo-busystatus' => 'BusyStatus',
164
164
  'X-microsoft-cdo-intendedstatus' => 'IntendedBusyStatus',
@@ -362,7 +362,7 @@ sub WriteKeys($$$)
362
362
  my $pos = 8;
363
363
  my $newTags = $et->GetNewTagInfoHash($tagTablePtr);
364
364
  my $newData = substr($$dataPt, 0, $pos);
365
-
365
+
366
366
  my $newIndex = 1;
367
367
  my $index = 1;
368
368
  while ($pos < $dirLen - 4) {
@@ -916,7 +916,7 @@ sub WriteQuickTime($$$)
916
916
  my $hdlr = substr($buff,8,4);
917
917
  $$et{HandlerType} = $hdlr if $hdlr =~ /^(vide|soun)$/;
918
918
  }
919
-
919
+
920
920
  # if this atom stores offsets, save its location so we can fix up offsets later
921
921
  # (are there any other atoms that may store absolute file offsets?)
922
922
  if ($tag =~ /^(stco|co64|iloc|mfra|moof|sidx|saio|gps |CTBO|uuid)$/) {
@@ -1750,7 +1750,7 @@ sub WriteQuickTime($$$)
1750
1750
  }
1751
1751
 
1752
1752
  # switch back to actual output file
1753
- $outfile = $$dirInfo{OutFile};
1753
+ $outfile = $$dirInfo{OutFile};
1754
1754
 
1755
1755
  # write the metadata
1756
1756
  Write($outfile, $outBuff) or $rtnVal = 0;
@@ -1778,7 +1778,7 @@ sub WriteQuickTime($$$)
1778
1778
 
1779
1779
  # write the stuff that must come last
1780
1780
  Write($outfile, $writeLast) or $rtnVal = 0 if $writeLast;
1781
-
1781
+
1782
1782
  return $rtnVal;
1783
1783
  }
1784
1784
 
@@ -28,7 +28,7 @@ use vars qw($VERSION $RELEASE @ISA @EXPORT_OK %EXPORT_TAGS $AUTOLOAD @fileTypes
28
28
  %mimeType $swapBytes $swapWords $currentByteOrder %unpackStd
29
29
  %jpegMarker %specialTags %fileTypeLookup $testLen);
30
30
 
31
- $VERSION = '11.89';
31
+ $VERSION = '11.90';
32
32
  $RELEASE = '';
33
33
  @ISA = qw(Exporter);
34
34
  %EXPORT_TAGS = (
@@ -7029,8 +7029,8 @@ sub DoProcessTIFF($$;$)
7029
7029
  $$self{EXIF_DATA} = "II\x2a\0\x08\0\0\0";
7030
7030
  }
7031
7031
  }
7032
- $$self{FIRST_EXIF_POS} = $base + $$self{BASE} unless defined $$self{FIRST_EXIF_POS};
7033
7032
  $$self{EXIF_POS} = $base + $$self{BASE};
7033
+ $$self{FIRST_EXIF_POS} = $$self{EXIF_POS} unless defined $$self{FIRST_EXIF_POS};
7034
7034
  $dataPt = \$$self{EXIF_DATA};
7035
7035
 
7036
7036
  # set byte ordering
@@ -534,9 +534,9 @@ Comma-delimited list of settings for writing compact XMP. Below is a list
534
534
  of available settings. Note that 'NoPadding' effects only embedded XMP
535
535
  since padding is never written for stand-alone XMP files. Also note that
536
536
  'OneDesc' is not recommended when writing XMP larger than 64 kB to a JPG
537
- file because it interferes with ExifTool's technique of splitting off the
538
- large description elements into the extended XMP. Case is not significant
539
- for any of these options. Aliases are given in brackets. Default is undef.
537
+ file because it interferes with ExifTool's technique of splitting off large
538
+ rdf:Description elements into the extended XMP. Case is not significant for
539
+ any of these options. Aliases are given in brackets. Default is undef.
540
540
 
541
541
  NoPadding - Avoid 2 kB of recommended padding at end of XMP (NoPad)
542
542
  NoIndent - No spaces to indent lines (NoSpace, NoSpaces)
@@ -1,6 +1,6 @@
1
1
  Summary: perl module for image data extraction
2
2
  Name: perl-Image-ExifTool
3
- Version: 11.89
3
+ Version: 11.90
4
4
  Release: 1
5
5
  License: Artistic/GPL
6
6
  Group: Development/Libraries/Perl
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module ExiftoolVendored
4
- VERSION = Gem::Version.new('11.89.0')
4
+ VERSION = Gem::Version.new('11.90.0')
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: exiftool_vendored
3
3
  version: !ruby/object:Gem::Version
4
- version: 11.89.0
4
+ version: 11.90.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Matthew McEachen
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2020-02-26 00:00:00.000000000 Z
12
+ date: 2020-03-03 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: exiftool