exiftool_vendored 11.47.0 → 11.48.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 +7 -0
- data/bin/META.json +1 -1
- data/bin/META.yml +1 -1
- data/bin/README +2 -2
- data/bin/exiftool +2 -2
- data/bin/lib/Image/ExifTool.pm +1 -1
- data/bin/lib/Image/ExifTool/QuickTime.pm +1 -3
- data/bin/lib/Image/ExifTool/TagLookup.pm +1585 -1573
- data/bin/lib/Image/ExifTool/TagNames.pod +29 -2
- data/bin/lib/Image/ExifTool/WriteQuickTime.pl +2 -0
- data/bin/lib/Image/ExifTool/XMP.pm +11 -1
- data/bin/lib/Image/ExifTool/XMP2.pl +30 -1
- data/bin/perl-Image-ExifTool.spec +1 -1
- data/lib/exiftool_vendored/version.rb +1 -1
- metadata +2 -2
@@ -12,7 +12,7 @@ meta information extracted from or written to a file.
|
|
12
12
|
=head1 TAG TABLES
|
13
13
|
|
14
14
|
The tables listed below give the names of all tags recognized by ExifTool.
|
15
|
-
They contain a total of
|
15
|
+
They contain a total of 22593 tags, with 15011 unique tag names.
|
16
16
|
|
17
17
|
B<Tag ID>, B<Index#> or B<Sequence> is given in the first column of each
|
18
18
|
table. A B<Tag ID> is the computer-readable equivalent of a tag name, and
|
@@ -1273,6 +1273,8 @@ L<http://www.adobe.com/devnet/xmp/> for the official XMP specification.
|
|
1273
1273
|
extensis XMP extensis
|
1274
1274
|
fpv XMP fpv
|
1275
1275
|
GAudio XMP GAudio
|
1276
|
+
GCamera XMP GCamera
|
1277
|
+
GCreations XMP GCreations
|
1276
1278
|
GDepth XMP GDepth
|
1277
1279
|
getty XMP GettyImages
|
1278
1280
|
GFocus XMP GFocus
|
@@ -2306,6 +2308,31 @@ These tags belong to the ExifTool XMP-GAudio family 1 group.
|
|
2306
2308
|
AudioData string
|
2307
2309
|
AudioMimeType string
|
2308
2310
|
|
2311
|
+
=head3 XMP GCamera Tags
|
2312
|
+
|
2313
|
+
Camera information found in Google panorama images.
|
2314
|
+
|
2315
|
+
These tags belong to the ExifTool XMP-GCamera family 1 group.
|
2316
|
+
|
2317
|
+
Tag Name Writable
|
2318
|
+
-------- --------
|
2319
|
+
BurstID string
|
2320
|
+
BurstPrimary string
|
2321
|
+
PortraitNote string
|
2322
|
+
PortraitRequest string
|
2323
|
+
PortraitVersion string
|
2324
|
+
SpecialTypeID string+
|
2325
|
+
|
2326
|
+
=head3 XMP GCreations Tags
|
2327
|
+
|
2328
|
+
Google creations tags.
|
2329
|
+
|
2330
|
+
These tags belong to the ExifTool XMP-GCreations family 1 group.
|
2331
|
+
|
2332
|
+
Tag Name Writable
|
2333
|
+
-------- --------
|
2334
|
+
CameraBurstID string
|
2335
|
+
|
2309
2336
|
=head3 XMP GDepth Tags
|
2310
2337
|
|
2311
2338
|
Google depthmap information. See
|
@@ -2317,7 +2344,7 @@ These tags belong to the ExifTool XMP-GDepth family 1 group.
|
|
2317
2344
|
-------- --------
|
2318
2345
|
Confidence string/
|
2319
2346
|
ConfidenceMime string/
|
2320
|
-
|
2347
|
+
DepthImage string/
|
2321
2348
|
Far real/
|
2322
2349
|
Format string/
|
2323
2350
|
ImageHeight real/
|
@@ -49,7 +49,7 @@ use Image::ExifTool::Exif;
|
|
49
49
|
use Image::ExifTool::GPS;
|
50
50
|
require Exporter;
|
51
51
|
|
52
|
-
$VERSION = '3.
|
52
|
+
$VERSION = '3.23';
|
53
53
|
@ISA = qw(Exporter);
|
54
54
|
@EXPORT_OK = qw(EscapeXML UnescapeXML);
|
55
55
|
|
@@ -176,6 +176,8 @@ my %xmpNS = (
|
|
176
176
|
GSpherical=> 'http://ns.google.com/videos/1.0/spherical/',
|
177
177
|
GDepth => 'http://ns.google.com/photos/1.0/depthmap/',
|
178
178
|
GFocus => 'http://ns.google.com/photos/1.0/focus/',
|
179
|
+
GCamera => 'http://ns.google.com/photos/1.0/camera/',
|
180
|
+
GCreations=> 'http://ns.google.com/photos/1.0/creations/',
|
179
181
|
dwc => 'http://rs.tdwg.org/dwc/index.htm',
|
180
182
|
GettyImagesGIFT => 'http://xmp.gettyimages.com/gift/1.0/',
|
181
183
|
LImage => 'http://ns.leiainc.com/photos/1.0/image/',
|
@@ -746,6 +748,14 @@ my %sRetouchArea = (
|
|
746
748
|
Name => 'GFocus',
|
747
749
|
SubDirectory => { TagTable => 'Image::ExifTool::XMP::GFocus' },
|
748
750
|
},
|
751
|
+
GCamera => {
|
752
|
+
Name => 'GCamera',
|
753
|
+
SubDirectory => { TagTable => 'Image::ExifTool::XMP::GCamera' },
|
754
|
+
},
|
755
|
+
GCreations => {
|
756
|
+
Name => 'GCreations',
|
757
|
+
SubDirectory => { TagTable => 'Image::ExifTool::XMP::GCreations' },
|
758
|
+
},
|
749
759
|
dwc => {
|
750
760
|
Name => 'dwc',
|
751
761
|
SubDirectory => { TagTable => 'Image::ExifTool::DarwinCore::Main' },
|
@@ -1647,7 +1647,7 @@ my %sSubVersion = (
|
|
1647
1647
|
# Google depthmap information (ref https://developers.google.com/depthmap-metadata/reference)
|
1648
1648
|
%Image::ExifTool::XMP::GDepth = (
|
1649
1649
|
GROUPS => { 0 => 'XMP', 1 => 'XMP-GDepth', 2 => 'Image' },
|
1650
|
-
NAMESPACE =>
|
1650
|
+
NAMESPACE => 'GDepth',
|
1651
1651
|
AVOID => 1, # (too potential tag name conflicts)
|
1652
1652
|
NOTES => q{
|
1653
1653
|
Google depthmap information. See
|
@@ -1665,6 +1665,7 @@ my %sSubVersion = (
|
|
1665
1665
|
Far => { Writable => 'real' },
|
1666
1666
|
Mime => { },
|
1667
1667
|
Data => {
|
1668
|
+
Name => 'DepthImage',
|
1668
1669
|
ValueConv => 'Image::ExifTool::XMP::DecodeBase64($val)',
|
1669
1670
|
ValueConvInv => 'Image::ExifTool::XMP::EncodeBase64($val)',
|
1670
1671
|
},
|
@@ -1699,6 +1700,34 @@ my %sSubVersion = (
|
|
1699
1700
|
FocalPointY => { Writable => 'real' },
|
1700
1701
|
);
|
1701
1702
|
|
1703
|
+
# Google camera namespace (ref PH)
|
1704
|
+
%Image::ExifTool::XMP::GCamera = (
|
1705
|
+
%xmpTableDefaults,
|
1706
|
+
GROUPS => { 1 => 'XMP-GCamera', 2 => 'Camera' },
|
1707
|
+
NAMESPACE => 'GCamera',
|
1708
|
+
NOTES => 'Camera information found in Google panorama images.',
|
1709
|
+
BurstID => { },
|
1710
|
+
BurstPrimary => { },
|
1711
|
+
PortraitNote => { },
|
1712
|
+
PortraitRequest => {
|
1713
|
+
Notes => 'High Definition Render Pipeline (HDRP) data', #PH (guess)
|
1714
|
+
ValueConv => 'Image::ExifTool::XMP::DecodeBase64($val)',
|
1715
|
+
ValueConvInv => 'Image::ExifTool::XMP::EncodeBase64($val)',
|
1716
|
+
},
|
1717
|
+
PortraitVersion => { },
|
1718
|
+
SpecialTypeID => { List => 'Bag' },
|
1719
|
+
PortraitNote => { },
|
1720
|
+
);
|
1721
|
+
|
1722
|
+
# Google creations namespace (ref PH)
|
1723
|
+
%Image::ExifTool::XMP::GCreations = (
|
1724
|
+
%xmpTableDefaults,
|
1725
|
+
GROUPS => { 1 => 'XMP-GCreations', 2 => 'Camera' },
|
1726
|
+
NAMESPACE => 'GCreations',
|
1727
|
+
NOTES => 'Google creations tags.',
|
1728
|
+
CameraBurstID => { },
|
1729
|
+
);
|
1730
|
+
|
1702
1731
|
# Getty Images namespace (ref PH)
|
1703
1732
|
%Image::ExifTool::XMP::GettyImages = (
|
1704
1733
|
%xmpTableDefaults,
|
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.
|
4
|
+
version: 11.48.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: 2019-
|
12
|
+
date: 2019-06-01 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: exiftool
|