exiftool_vendored 12.63.0 → 12.64.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/bin/Changes +22 -1
- data/bin/MANIFEST +3 -0
- data/bin/META.json +1 -1
- data/bin/META.yml +1 -1
- data/bin/README +47 -46
- data/bin/config_files/guano.config +161 -0
- data/bin/exiftool +73 -53
- data/bin/lib/Image/ExifTool/Apple.pm +6 -3
- data/bin/lib/Image/ExifTool/CanonVRD.pm +4 -1
- data/bin/lib/Image/ExifTool/Jpeg2000.pm +4 -3
- data/bin/lib/Image/ExifTool/Lang/fr.pm +1467 -202
- data/bin/lib/Image/ExifTool/Matroska.pm +16 -1
- data/bin/lib/Image/ExifTool/Nikon.pm +419 -5
- data/bin/lib/Image/ExifTool/NikonCustom.pm +13 -3
- data/bin/lib/Image/ExifTool/PDF.pm +9 -1
- data/bin/lib/Image/ExifTool/PLIST.pm +8 -1
- data/bin/lib/Image/ExifTool/QuickTime.pm +33 -9
- data/bin/lib/Image/ExifTool/QuickTimeStream.pl +2 -1
- data/bin/lib/Image/ExifTool/README +1 -1
- data/bin/lib/Image/ExifTool/Sony.pm +1 -0
- data/bin/lib/Image/ExifTool/TagLookup.pm +4719 -4640
- data/bin/lib/Image/ExifTool/TagNames.pod +175 -1
- data/bin/lib/Image/ExifTool/WriteQuickTime.pl +21 -9
- data/bin/lib/Image/ExifTool/WriteXMP.pl +2 -2
- data/bin/lib/Image/ExifTool/Writer.pl +21 -4
- data/bin/lib/Image/ExifTool/XMPStruct.pl +96 -28
- data/bin/lib/Image/ExifTool.pm +17 -10
- data/bin/lib/Image/ExifTool.pod +71 -51
- data/bin/perl-Image-ExifTool.spec +44 -44
- data/lib/exiftool_vendored/version.rb +1 -1
- metadata +3 -2
@@ -16,7 +16,7 @@ use strict;
|
|
16
16
|
use vars qw($VERSION);
|
17
17
|
use Image::ExifTool qw(:DataAccess :Utils);
|
18
18
|
|
19
|
-
$VERSION = '1.
|
19
|
+
$VERSION = '1.36';
|
20
20
|
|
21
21
|
sub ProcessJpeg2000Box($$$);
|
22
22
|
sub ProcessJUMD($$$);
|
@@ -132,7 +132,7 @@ my %j2cMarker = (
|
|
132
132
|
images, but not all of these are extracted. Note that ExifTool currently
|
133
133
|
writes only EXIF, IPTC and XMP tags in Jpeg2000 images, and EXIF and XMP in
|
134
134
|
JXL images. ExifTool will read/write Brotli-compressed EXIF and XMP in JXL
|
135
|
-
images, but the API Compress option must be set to create new EXIF and XMP
|
135
|
+
images, but the API L<Compress|../ExifTool.html#Compress> option must be set to create new EXIF and XMP
|
136
136
|
in compressed format.
|
137
137
|
},
|
138
138
|
#
|
@@ -1429,7 +1429,8 @@ sub ProcessJXLCodestream($$)
|
|
1429
1429
|
|
1430
1430
|
return 0 unless $$dataPt =~ /^(\0\0\0\0)?\xff\x0a/; # validate codestream
|
1431
1431
|
# ignore if already extracted (ie. subsequent jxlp boxes)
|
1432
|
-
return 0 if $$et{
|
1432
|
+
return 0 if $$et{ProcessedJXLCodestream};
|
1433
|
+
$$et{ProcessedJXLCodestream} = 1;
|
1433
1434
|
# work with first 64 bytes of codestream data
|
1434
1435
|
# (and add padding if necessary to avoid unpacking past end of data)
|
1435
1436
|
my $dat;
|