exiftool-vendored.pl 13.35.0 → 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/Changes CHANGED
@@ -4,9 +4,17 @@ ExifTool Version History
4
4
 
5
5
  RSS feed: https://exiftool.org/rss.xml
6
6
 
7
- Note: The most recent production release is Version 13.35. (Other versions are
7
+ Note: The most recent production release is Version 13.36. (Other versions are
8
8
  considered development releases, and are not uploaded to MetaCPAN.)
9
9
 
10
+ Sept. 9, 2025 - Version 13.36 (production release)
11
+
12
+ - Added a new Nikon LensID (thanks Max, github #345)
13
+ - Added new Sony and Pentax camera ID's (thanks Hubert Figuiere, github #347)
14
+ - Tolerate 'junk' after 'WAVE' chunk in LA, PAC, OFR and WV audio files
15
+ - Use gnu tar 1.35 to build the .tar.gz distribution package (versions
16
+ 13.31-13.35 used bsdtar 3.5.3, and earlier versions used bsdtar 2.8.3)
17
+
10
18
  Sept. 6, 2025 - Version 13.35 (production release)
11
19
 
12
20
  - Added a new CanonModelID
package/bin/META.json CHANGED
@@ -50,6 +50,6 @@
50
50
  }
51
51
  },
52
52
  "release_status" : "stable",
53
- "version" : "13.35",
53
+ "version" : "13.36",
54
54
  "x_serialization_backend" : "JSON::PP version 4.06"
55
55
  }
package/bin/META.yml CHANGED
@@ -31,5 +31,5 @@ recommends:
31
31
  Time::HiRes: '0'
32
32
  requires:
33
33
  perl: '5.004'
34
- version: '13.35'
34
+ version: '13.36'
35
35
  x_serialization_backend: 'CPAN::Meta::YAML version 0.018'
package/bin/Makefile.PL CHANGED
@@ -46,6 +46,7 @@ WriteMakefile(
46
46
  },
47
47
  } ) : ()),
48
48
  clean => { FILES => 't/*.tmp' },
49
+ dist => { TAR => 'gtar' },
49
50
  EXE_FILES => [ 'exiftool' ],
50
51
  ($] >= 5.005 ?
51
52
  (ABSTRACT_FROM => $ExifTool_pod,
package/bin/README CHANGED
@@ -110,8 +110,8 @@ your home directory, then you would type the following commands in a
110
110
  terminal window to extract and run ExifTool:
111
111
 
112
112
  cd ~/Desktop
113
- gzip -dc Image-ExifTool-13.35.tar.gz | tar -xf -
114
- cd Image-ExifTool-13.35
113
+ gzip -dc Image-ExifTool-13.36.tar.gz | tar -xf -
114
+ cd Image-ExifTool-13.36
115
115
  ./exiftool t/images/ExifTool.jpg
116
116
 
117
117
  Note: These commands extract meta information from one of the test images.
package/bin/exiftool CHANGED
@@ -11,7 +11,7 @@ use strict;
11
11
  use warnings;
12
12
  require 5.004;
13
13
 
14
- my $version = '13.35';
14
+ my $version = '13.36';
15
15
 
16
16
  $^W = 1; # enable global warnings
17
17
 
@@ -6082,7 +6082,7 @@ with this command:
6082
6082
 
6083
6083
  produces output like this:
6084
6084
 
6085
- -- Generated by ExifTool 13.35 --
6085
+ -- Generated by ExifTool 13.36 --
6086
6086
  File: a.jpg - 2003:10:31 15:44:19
6087
6087
  (f/5.6, 1/60s, ISO 100)
6088
6088
  File: b.jpg - 2006:05:23 11:57:38
@@ -643,8 +643,8 @@ my %faceCategories = (
643
643
  Writable => 'int16u',
644
644
  PrintConv => {
645
645
  1 => 'Right',
646
- 2 => 'Up',
647
- 3 => 'Left',
646
+ 2 => 'Up', # (or Left?, forum17591)
647
+ 3 => 'Left', # (or Up?, forum17591)
648
648
  4 => 'Down',
649
649
  },
650
650
  },
@@ -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.50';
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.56';
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.71';
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.75';
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.35';
32
+ $VERSION = '13.36';
33
33
  $RELEASE = '';
34
34
  @ISA = qw(Exporter);
35
35
  %EXPORT_TAGS = (
@@ -1,6 +1,6 @@
1
1
  Summary: perl module for image data extraction
2
2
  Name: perl-Image-ExifTool
3
- Version: 13.35
3
+ Version: 13.36
4
4
  Release: 1
5
5
  License: Artistic/GPL
6
6
  Group: Development/Libraries/Perl
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "exiftool-vendored.pl",
3
- "version": "13.35.0",
3
+ "version": "13.36.0",
4
4
  "description": "Vendored perl ExifTool for Node.js",
5
5
  "main": "./index.js",
6
6
  "homepage": "https://github.com/photostructure/exiftool-vendored.pl#readme",