exiftool_vendored 13.36.0 → 13.37.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.
- checksums.yaml +4 -4
- data/bin/Changes +23 -0
- data/bin/MANIFEST +5 -0
- data/bin/META.json +1 -1
- data/bin/META.yml +1 -1
- data/bin/README +2 -2
- data/bin/build_geolocation +7 -3
- data/bin/exiftool +2 -2
- data/bin/lib/Image/ExifTool/Audible.pm +1 -1
- data/bin/lib/Image/ExifTool/BMP.pm +1 -1
- data/bin/lib/Image/ExifTool/BuildTagLookup.pm +15 -8
- data/bin/lib/Image/ExifTool/CBOR.pm +1 -1
- data/bin/lib/Image/ExifTool/Canon.pm +59 -5
- data/bin/lib/Image/ExifTool/CanonVRD.pm +1 -1
- data/bin/lib/Image/ExifTool/CaptureOne.pm +1 -1
- data/bin/lib/Image/ExifTool/DJI.pm +5 -5
- data/bin/lib/Image/ExifTool/DV.pm +1 -1
- data/bin/lib/Image/ExifTool/EXE.pm +3 -2
- data/bin/lib/Image/ExifTool/FLIF.pm +1 -1
- data/bin/lib/Image/ExifTool/FLIR.pm +3 -3
- data/bin/lib/Image/ExifTool/FlashPix.pm +1 -1
- data/bin/lib/Image/ExifTool/FujiFilm.pm +5 -4
- data/bin/lib/Image/ExifTool/GIF.pm +1 -1
- data/bin/lib/Image/ExifTool/GM.pm +1 -1
- data/bin/lib/Image/ExifTool/Geolocation.pm +3 -1
- data/bin/lib/Image/ExifTool/Geotag.pm +10 -2
- data/bin/lib/Image/ExifTool/GoPro.pm +5 -5
- data/bin/lib/Image/ExifTool/Google.pm +804 -0
- data/bin/lib/Image/ExifTool/H264.pm +1 -1
- data/bin/lib/Image/ExifTool/ICC_Profile.pm +1 -1
- data/bin/lib/Image/ExifTool/ID3.pm +3 -3
- data/bin/lib/Image/ExifTool/JPEG.pm +1 -1
- data/bin/lib/Image/ExifTool/JSON.pm +1 -1
- data/bin/lib/Image/ExifTool/LIF.pm +1 -1
- data/bin/lib/Image/ExifTool/LNK.pm +2 -2
- data/bin/lib/Image/ExifTool/Lytro.pm +1 -1
- data/bin/lib/Image/ExifTool/M2TS.pm +2 -2
- data/bin/lib/Image/ExifTool/MPEG.pm +1 -1
- data/bin/lib/Image/ExifTool/MWG.pm +1 -1
- data/bin/lib/Image/ExifTool/MXF.pm +1 -1
- data/bin/lib/Image/ExifTool/MacOS.pm +2 -2
- data/bin/lib/Image/ExifTool/MakerNotes.pm +30 -7
- data/bin/lib/Image/ExifTool/Microsoft.pm +4 -4
- data/bin/lib/Image/ExifTool/Nikon.pm +4 -4
- data/bin/lib/Image/ExifTool/OOXML.pm +1 -1
- data/bin/lib/Image/ExifTool/Ogg.pm +1 -1
- data/bin/lib/Image/ExifTool/Olympus.pm +2 -1
- data/bin/lib/Image/ExifTool/Other.pm +1 -1
- data/bin/lib/Image/ExifTool/Panasonic.pm +1 -1
- data/bin/lib/Image/ExifTool/Pentax.pm +18 -7
- data/bin/lib/Image/ExifTool/Protobuf.pm +12 -6
- data/bin/lib/Image/ExifTool/Qualcomm.pm +2 -2
- data/bin/lib/Image/ExifTool/QuickTime.pm +30 -8
- data/bin/lib/Image/ExifTool/README +7 -6
- data/bin/lib/Image/ExifTool/Rawzor.pm +1 -1
- data/bin/lib/Image/ExifTool/Reconyx.pm +375 -91
- data/bin/lib/Image/ExifTool/Samsung.pm +1 -1
- data/bin/lib/Image/ExifTool/Shortcuts.pm +8 -5
- data/bin/lib/Image/ExifTool/Sony.pm +18 -3
- data/bin/lib/Image/ExifTool/TagInfoXML.pm +3 -2
- data/bin/lib/Image/ExifTool/TagLookup.pm +5745 -5695
- data/bin/lib/Image/ExifTool/TagNames.pod +662 -509
- data/bin/lib/Image/ExifTool/Text.pm +1 -1
- data/bin/lib/Image/ExifTool/Trailer.pm +1 -1
- data/bin/lib/Image/ExifTool/WPG.pm +1 -1
- data/bin/lib/Image/ExifTool/WTV.pm +1 -1
- data/bin/lib/Image/ExifTool/XMP.pm +31 -30
- data/bin/lib/Image/ExifTool/XMP2.pl +0 -482
- data/bin/lib/Image/ExifTool/ZIP.pm +1 -1
- data/bin/lib/Image/ExifTool/iWork.pm +1 -1
- data/bin/lib/Image/ExifTool.pm +4 -4
- data/bin/lib/Image/ExifTool.pod +3 -3
- data/bin/perl-Image-ExifTool.spec +1 -1
- data/lib/exiftool_vendored/version.rb +1 -1
- metadata +4 -6
@@ -258,7 +258,7 @@ my %iWorkType = (
|
|
258
258
|
# RAR v5 tags (ref 7, github#203)
|
259
259
|
%Image::ExifTool::ZIP::RAR5 = (
|
260
260
|
GROUPS => { 2 => 'Other' },
|
261
|
-
VARS => {
|
261
|
+
VARS => { ID_FMT => 'none' },
|
262
262
|
NOTES => 'These tags are extracted from RAR v5 and 7z archive files.',
|
263
263
|
FileVersion => { },
|
264
264
|
CompressedSize => { },
|
@@ -48,7 +48,7 @@ my %mimeType = (
|
|
48
48
|
%Image::ExifTool::iWork::Main = (
|
49
49
|
GROUPS => { 0 => 'XML', 1 => 'XML', 2 => 'Document' },
|
50
50
|
PROCESS_PROC => \&Image::ExifTool::XMP::ProcessXMP,
|
51
|
-
VARS => {
|
51
|
+
VARS => { ID_FMT => 'none' },
|
52
52
|
NOTES => q{
|
53
53
|
The Apple iWork '09 file format is a ZIP archive containing XML files
|
54
54
|
similar to the Office Open XML (OOXML) format. Metadata tags in iWork
|
data/bin/lib/Image/ExifTool.pm
CHANGED
@@ -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.37';
|
33
33
|
$RELEASE = '';
|
34
34
|
@ISA = qw(Exporter);
|
35
35
|
%EXPORT_TAGS = (
|
@@ -1259,7 +1259,7 @@ my %systemTagsNotes = (
|
|
1259
1259
|
# used to write the entire corresponding directory as a block.
|
1260
1260
|
%Image::ExifTool::Extra = (
|
1261
1261
|
GROUPS => { 0 => 'File', 1 => 'File', 2 => 'Image' },
|
1262
|
-
VARS => {
|
1262
|
+
VARS => { ID_FMT => 'none' }, # tag ID's aren't meaningful for these tags
|
1263
1263
|
WRITE_PROC => \&DummyWriteProc,
|
1264
1264
|
Error => {
|
1265
1265
|
Priority => 0,
|
@@ -2122,7 +2122,7 @@ my %systemTagsNotes = (
|
|
2122
2122
|
%Image::ExifTool::JPEG::SOF = (
|
2123
2123
|
GROUPS => { 0 => 'File', 1 => 'File', 2 => 'Image' },
|
2124
2124
|
NOTES => 'This information is extracted from the JPEG Start Of Frame segment.',
|
2125
|
-
VARS => {
|
2125
|
+
VARS => { ID_FMT => 'none' }, # tag ID's aren't meaningful for these tags
|
2126
2126
|
EncodingProcess => {
|
2127
2127
|
PrintHex => 1,
|
2128
2128
|
PrintConv => {
|
@@ -2261,7 +2261,7 @@ my %systemTagsNotes = (
|
|
2261
2261
|
GROUPS => { 0 => 'Composite', 1 => 'Composite' },
|
2262
2262
|
TABLE_NAME => 'Image::ExifTool::Composite',
|
2263
2263
|
SHORT_NAME => 'Composite',
|
2264
|
-
VARS => {
|
2264
|
+
VARS => { ID_FMT => 'none' }, # want empty tagID's for Composite tags
|
2265
2265
|
WRITE_PROC => \&DummyWriteProc,
|
2266
2266
|
);
|
2267
2267
|
|
data/bin/lib/Image/ExifTool.pod
CHANGED
@@ -2298,14 +2298,14 @@ identical group names unless the family string begins with a colon.
|
|
2298
2298
|
The group family numbers are currently available:
|
2299
2299
|
|
2300
2300
|
0) Information Type (eg. EXIF, XMP, IPTC)
|
2301
|
-
1) Specific Location (eg. IFD0, XMP-dc)
|
2301
|
+
1) Specific Location (eg. IFD0, ExifIFD, XMP-dc)
|
2302
2302
|
2) Category (eg. Author, Time)
|
2303
2303
|
3) Document Number (eg. Main, Doc1, Doc3-2)
|
2304
|
-
4) Instance Number (eg. Copy1, Copy2, Copy3
|
2304
|
+
4) Instance Number (eg. Copy1, Copy2, Copy3)
|
2305
2305
|
5) Metadata Path (eg. JPEG-APP1-IFD0-ExifIFD)
|
2306
2306
|
6) EXIF/TIFF Format (eg. int8u, int32u, undef, string)
|
2307
2307
|
7) Tag ID (eg. ID-271, ID-rights, ID-a9aut)
|
2308
|
-
8) Alternate File Number (eg. File1, File2, File3
|
2308
|
+
8) Alternate File Number (eg. File1, File2, File3)
|
2309
2309
|
|
2310
2310
|
Families 0 and 1 are based on the file structure, and are similar except
|
2311
2311
|
that family 1 is more specific and sub-divides some groups to give more
|
metadata
CHANGED
@@ -1,15 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: exiftool_vendored
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 13.
|
4
|
+
version: 13.37.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Matthew McEachen
|
8
8
|
- Sergey Morozov
|
9
|
-
autorequire:
|
10
9
|
bindir: bin
|
11
10
|
cert_chain: []
|
12
|
-
date:
|
11
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
13
12
|
dependencies:
|
14
13
|
- !ruby/object:Gem::Dependency
|
15
14
|
name: exiftool
|
@@ -164,6 +163,7 @@ files:
|
|
164
163
|
- bin/lib/Image/ExifTool/Geolocation.pm
|
165
164
|
- bin/lib/Image/ExifTool/Geotag.pm
|
166
165
|
- bin/lib/Image/ExifTool/GoPro.pm
|
166
|
+
- bin/lib/Image/ExifTool/Google.pm
|
167
167
|
- bin/lib/Image/ExifTool/H264.pm
|
168
168
|
- bin/lib/Image/ExifTool/HP.pm
|
169
169
|
- bin/lib/Image/ExifTool/HTML.pm
|
@@ -325,7 +325,6 @@ licenses:
|
|
325
325
|
- MIT
|
326
326
|
metadata:
|
327
327
|
rubygems_mfa_required: 'true'
|
328
|
-
post_install_message:
|
329
328
|
rdoc_options: []
|
330
329
|
require_paths:
|
331
330
|
- lib
|
@@ -340,8 +339,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
340
339
|
- !ruby/object:Gem::Version
|
341
340
|
version: '0'
|
342
341
|
requirements: []
|
343
|
-
rubygems_version: 3.
|
344
|
-
signing_key:
|
342
|
+
rubygems_version: 3.6.9
|
345
343
|
specification_version: 4
|
346
344
|
summary: Vendored version of exiftool
|
347
345
|
test_files: []
|