exiftool_vendored 13.17.0 → 13.18.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 +16 -3
- data/bin/META.json +1 -1
- data/bin/META.yml +1 -1
- data/bin/README +2 -2
- data/bin/config_files/example.config +1 -1
- data/bin/exiftool +12 -8
- data/bin/lib/Image/ExifTool/CanonRaw.pm +1 -1
- data/bin/lib/Image/ExifTool/GoPro.pm +58 -48
- data/bin/lib/Image/ExifTool/Nikon.pm +45 -19
- data/bin/lib/Image/ExifTool/Photoshop.pm +2 -2
- data/bin/lib/Image/ExifTool/QuickTime.pm +255 -251
- data/bin/lib/Image/ExifTool/TagLookup.pm +36 -2
- data/bin/lib/Image/ExifTool/TagNames.pod +48 -7
- data/bin/lib/Image/ExifTool/Trailer.pm +1 -1
- data/bin/lib/Image/ExifTool/WriteCanonRaw.pl +1 -1
- data/bin/lib/Image/ExifTool/WriteQuickTime.pl +4 -1
- data/bin/lib/Image/ExifTool/Writer.pl +5 -3
- data/bin/lib/Image/ExifTool/XMP2.pl +2 -0
- data/bin/lib/Image/ExifTool.pm +11 -12
- data/bin/perl-Image-ExifTool.spec +1 -1
- data/lib/exiftool_vendored/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7ed6242287b3fc53d1781c76868bb76b2ae54d5a43dcd48a52ff5678ecf6984d
|
4
|
+
data.tar.gz: 8b0446136fa4d3b248742abc3c961ddd60d1b849ce0e8505af39b65c6662b32f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a1863a2767968d76be14ffee77fb966c7d643a501c5dffed80291ccabf73b58775ecf5ffb6a2d54a1fd3cec10e07f7c28a32cb8567f6a6a6948ce4eb06728914
|
7
|
+
data.tar.gz: a2bde276ca6e28bc212c82751848fdc9a8c27a41b7abd522d27ddc8490be0b2d67f8a537c52f14cbfb4fc4b3424efe6dcc1ed2c67909cbc270fb5521c8a889bc
|
data/bin/Changes
CHANGED
@@ -7,6 +7,20 @@ RSS feed: https://exiftool.org/rss.xml
|
|
7
7
|
Note: The most recent production release is Version 13.10. (Other versions are
|
8
8
|
considered development releases, and are not uploaded to MetaCPAN.)
|
9
9
|
|
10
|
+
Feb. 3, 2025 - Version 13.18
|
11
|
+
|
12
|
+
- Decode a number of new GoPro tags
|
13
|
+
- Enhanced -geotag option to set Geotime from either SubSecDateTimeOriginal
|
14
|
+
(preferentially) or DateTimeOriginal if not otherwise specified
|
15
|
+
- Don't allow ICC_Profile to be deleted from QuickTime-based files
|
16
|
+
(specifically HEIC, to avoid problem where Apple Preview wouldn't display the
|
17
|
+
resulting file)
|
18
|
+
- Improved decoding of AF points for Nikon D3400 and D7500
|
19
|
+
- Patched issue introduced in 13.13 which could give a "No data reference"
|
20
|
+
error when writing MP4 videos from some Google phones
|
21
|
+
- Fixed problem writing XMP-iptcExt:LocationCreatedGPSAltitudeRef with an
|
22
|
+
incorrect namespace
|
23
|
+
|
10
24
|
Jan. 29, 2025 - Version 13.17
|
11
25
|
|
12
26
|
- Added support for reading more embedded images and videos written in the
|
@@ -14,10 +28,9 @@ Jan. 29, 2025 - Version 13.17
|
|
14
28
|
- Added support for reading JPEG trailer written by some OnePlus phones
|
15
29
|
- Added a -validate warning for QuickTime 'wide' atoms with an invalid size
|
16
30
|
- Added a new CanonLensType
|
17
|
-
- Extract more embedded videos and depth/gain maps from JPEG images written
|
18
31
|
- Avoid decoding Sony 0x9050 data for the ILCE-1M2 because the encoding has
|
19
|
-
changed since the ILCE-1 and the new encoding is not yet known
|
20
|
-
- Fixed issue that could cause runtime
|
32
|
+
changed since the ILCE-1 and the new encoding is not yet known (github #310)
|
33
|
+
- Fixed issue that could cause runtime warning when using -j with -b
|
21
34
|
- Fixed some issues decoding AFPointsUsed for some newer Nikon models
|
22
35
|
- Fixed problem corrupting QuickTime-format videos when writing if they
|
23
36
|
contain a 'wide' atom with an invalid size
|
data/bin/META.json
CHANGED
data/bin/META.yml
CHANGED
data/bin/README
CHANGED
@@ -109,8 +109,8 @@ your home directory, then you would type the following commands in a
|
|
109
109
|
terminal window to extract and run ExifTool:
|
110
110
|
|
111
111
|
cd ~/Desktop
|
112
|
-
gzip -dc Image-ExifTool-13.
|
113
|
-
cd Image-ExifTool-13.
|
112
|
+
gzip -dc Image-ExifTool-13.18.tar.gz | tar -xf -
|
113
|
+
cd Image-ExifTool-13.18
|
114
114
|
./exiftool t/images/ExifTool.jpg
|
115
115
|
|
116
116
|
Note: These commands extract meta information from one of the test images.
|
@@ -371,7 +371,7 @@ $Image::ExifTool::QuickTime::Keys{PREFERRED} = 3;
|
|
371
371
|
# Add user-defined cities to the Geolocation lookup
|
372
372
|
@Image::ExifTool::UserDefined::Geolocation = (
|
373
373
|
# (city,region,subregion,country_code,country,timezone,feature_code,population,lat,lon)
|
374
|
-
['Sinemorets','
|
374
|
+
['Sinemorets','Burgas','Obshtina Tsarevo','BG','','Europe/Sofia','PPL',400,42.06115,27.97833],
|
375
375
|
);
|
376
376
|
|
377
377
|
#------------------------------------------------------------------------------
|
data/bin/exiftool
CHANGED
@@ -11,7 +11,7 @@ use strict;
|
|
11
11
|
use warnings;
|
12
12
|
require 5.004;
|
13
13
|
|
14
|
-
my $version = '13.
|
14
|
+
my $version = '13.18';
|
15
15
|
|
16
16
|
# add our 'lib' directory to the include list BEFORE 'use Image::ExifTool'
|
17
17
|
my $exePath;
|
@@ -1391,7 +1391,8 @@ for (;;) {
|
|
1391
1391
|
# add geotag/geosync/geolocate commands first
|
1392
1392
|
unshift @newValues, pop @newValues;
|
1393
1393
|
if (lc $2 eq 'geotag' and (not defined $addGeotime or $addGeotime) and length $val) {
|
1394
|
-
$addGeotime = ($1 || '') . 'Geotime<DateTimeOriginal#'
|
1394
|
+
$addGeotime = [ ($1 || '') . 'Geotime<DateTimeOriginal#',
|
1395
|
+
($1 || '') . 'Geotime<SubSecDateTimeOriginal#' ];
|
1395
1396
|
}
|
1396
1397
|
}
|
1397
1398
|
}
|
@@ -1670,8 +1671,9 @@ if (@newValues) {
|
|
1670
1671
|
# assume -geotime value if -geotag specified without -geotime
|
1671
1672
|
if ($addGeotime) {
|
1672
1673
|
AddSetTagsFile($setTagsFile = '@') unless $setTagsFile and $setTagsFile eq '@';
|
1673
|
-
push @{$setTags{$setTagsFile}},
|
1674
|
-
|
1674
|
+
push @{$setTags{$setTagsFile}}, @$addGeotime;
|
1675
|
+
my @a = map qq("-$_"), @$addGeotime;
|
1676
|
+
$verbose and print $vout 'Arguments ',join(' and ', @a)," are assumed\n";
|
1675
1677
|
}
|
1676
1678
|
my %setTagsIndex;
|
1677
1679
|
# add/delete option lookup
|
@@ -5984,7 +5986,7 @@ with this command:
|
|
5984
5986
|
|
5985
5987
|
produces output like this:
|
5986
5988
|
|
5987
|
-
-- Generated by ExifTool 13.
|
5989
|
+
-- Generated by ExifTool 13.18 --
|
5988
5990
|
File: a.jpg - 2003:10:31 15:44:19
|
5989
5991
|
(f/5.6, 1/60s, ISO 100)
|
5990
5992
|
File: b.jpg - 2006:05:23 11:57:38
|
@@ -7808,8 +7810,9 @@ the B<-geotag> option.)
|
|
7808
7810
|
|
7809
7811
|
Geotag an image (C<a.jpg>) from position information in a GPS track log
|
7810
7812
|
(C<track.log>). Since the C<Geotime> tag is not specified, the value of
|
7811
|
-
DateTimeOriginal is used for
|
7812
|
-
unless
|
7813
|
+
SubSecDateTimeOriginal (preferentially) or DateTimeOriginal is used for
|
7814
|
+
geotagging. Local system time is assumed unless the time contains a
|
7815
|
+
timezone.
|
7813
7816
|
|
7814
7817
|
=item C<exiftool -geotag track.log -geolocate=geotag a.jpg>
|
7815
7818
|
|
@@ -7854,7 +7857,8 @@ Delete XMP GPS tags which were added by the geotag feature.
|
|
7854
7857
|
|
7855
7858
|
=item C<exiftool -xmp:geotag=track.log a.jpg>
|
7856
7859
|
|
7857
|
-
Geotag an image with XMP tags, using the time from
|
7860
|
+
Geotag an image with XMP tags, using the time from SubSecDateTimeOriginal or
|
7861
|
+
DateTimeOriginal.
|
7858
7862
|
|
7859
7863
|
=item C<exiftool -geotag a.log -geotag b.log -r dir>
|
7860
7864
|
|
@@ -854,7 +854,7 @@ sub ProcessCRW($$)
|
|
854
854
|
|
855
855
|
# process trailers if they exist in CRW file (not in CIFF information!)
|
856
856
|
if ($$et{FILE_TYPE} eq 'CRW') {
|
857
|
-
my $trailInfo =
|
857
|
+
my $trailInfo = $et->IdentifyTrailer($raf);
|
858
858
|
$et->ProcessTrailers($trailInfo) if $trailInfo;
|
859
859
|
}
|
860
860
|
|
@@ -7,6 +7,7 @@
|
|
7
7
|
#
|
8
8
|
# References: 1) https://github.com/gopro/gpmf-parser
|
9
9
|
# 2) https://github.com/stilldavid/gopro-utils
|
10
|
+
# 3) https://github.com/gopro/gpmf-parser
|
10
11
|
#------------------------------------------------------------------------------
|
11
12
|
|
12
13
|
package Image::ExifTool::GoPro;
|
@@ -16,7 +17,7 @@ use vars qw($VERSION);
|
|
16
17
|
use Image::ExifTool qw(:DataAccess :Utils);
|
17
18
|
use Image::ExifTool::QuickTime;
|
18
19
|
|
19
|
-
$VERSION = '1.
|
20
|
+
$VERSION = '1.12';
|
20
21
|
|
21
22
|
sub ProcessGoPro($$$);
|
22
23
|
sub ProcessString($$$);
|
@@ -59,6 +60,8 @@ my %addUnits = (
|
|
59
60
|
PrintConv => 'Image::ExifTool::GoPro::AddUnits($self, $val, $tag)',
|
60
61
|
);
|
61
62
|
|
63
|
+
my %noYes = ( N => 'No', Y => 'Yes' );
|
64
|
+
|
62
65
|
# Tags found in the GPMF box of Hero6 mp4 videos (ref PH), and
|
63
66
|
# the gpmd-format timed metadata of Hero5 and Hero6 videos (ref 1)
|
64
67
|
%Image::ExifTool::GoPro::GPMF = (
|
@@ -72,7 +75,7 @@ my %addUnits = (
|
|
72
75
|
let me know if you discover the meaning of any of these unknown tags. See
|
73
76
|
L<https://github.com/gopro/gpmf-parser> for details about this format.
|
74
77
|
},
|
75
|
-
|
78
|
+
ABSC => 'AutoBoostScore', #3
|
76
79
|
ACCL => { #2 (gpmd)
|
77
80
|
Name => 'Accelerometer',
|
78
81
|
Notes => 'accelerator readings in m/s2',
|
@@ -82,9 +85,9 @@ my %addUnits = (
|
|
82
85
|
# ANGY (GPMF-GEOC) - seen 179.9 (fmt d, Max)
|
83
86
|
# ANGZ (GPMF-GEOC) - seen 0.152 (fmt d, Max)
|
84
87
|
ALLD => 'AutoLowLightDuration', #1 (gpmd) (untested)
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
+
APTO => 'AudioProtuneOption', #3
|
89
|
+
ARUW => 'AspectRatioUnwarped', #3
|
90
|
+
ARWA => 'AspectRatioWarped', #3
|
88
91
|
ATTD => { #PH (Karma)
|
89
92
|
Name => 'Attitude',
|
90
93
|
# UNIT=s,rad,rad,rad,rad/s,rad/s,rad/s,
|
@@ -99,10 +102,10 @@ my %addUnits = (
|
|
99
102
|
# SCAL=1000 1 1 1 1
|
100
103
|
Binary => 1,
|
101
104
|
},
|
102
|
-
|
105
|
+
AUBT => { Name => 'AudioBlueTooth', PrintConv => \%noYes }, #3
|
103
106
|
AUDO => 'AudioSetting', #PH (GPMF - seen: 'WIND', fmt c)
|
104
|
-
|
105
|
-
|
107
|
+
AUPT => { Name => 'AutoProtune', PrintConv => \%noYes },
|
108
|
+
BITR => 'BitrateSetting', #3
|
106
109
|
BPOS => { #PH (Karma)
|
107
110
|
Name => 'Controller',
|
108
111
|
Unknown => 1,
|
@@ -116,16 +119,22 @@ my %addUnits = (
|
|
116
119
|
# CALH (GPMF-GEOC) - seen 3040 (fmt L, Max)
|
117
120
|
# CALW (GPMF-GEOC) - seen 4056 (fmt L, Max)
|
118
121
|
CASN => 'CameraSerialNumber', #PH (GPMF - seen: 'C3221324545448', fmt c)
|
119
|
-
|
120
|
-
|
122
|
+
CDAT => { #3
|
123
|
+
Name => 'CreationDate',
|
124
|
+
Groups => { 2 => 'Time' },
|
125
|
+
RawConv => 'ConvertUnixTime($val)',
|
126
|
+
PrintConv => '$self->ConvertDateTime($val)',
|
127
|
+
},
|
128
|
+
CDTM => 'CaptureDelayTimer', #3
|
121
129
|
# CINF (GPMF) - seen: 0x67376be7709bc8876a8baf3940908618, 0xe230988539b30cf5f016627ae8fc5395,
|
122
130
|
# 0x8bcbe424acc5b37d7d77001635198b3b (fmt B) (Camera INFormation?)
|
123
|
-
|
131
|
+
CLDP => { Name => 'ClassificationDataPresent', PrintConv => \%noYes },
|
124
132
|
# CLKC (GPMF) - seen: 0 (fmt L)
|
125
133
|
# CLKS (GPMF) - seen: 2 (fmt B)
|
126
|
-
# CMOD (GPMF) - seen: 12,13,17 [12 360 video, 13 time-laps video, 17 JPEG] (fmt B)
|
134
|
+
# CMOD (GPMF) - seen: 12,13,17 [12 360 video, 13 time-laps video, 17 JPEG] (fmt B) - CameraMode (ref 3)
|
127
135
|
# CPID (GPMF) - seen: '1194885996 3387225026 733916448 2433577768' (fmt L)
|
128
136
|
# CPIN (GPMF) - seen: 1
|
137
|
+
CPIN => 'ChapterNumber',
|
129
138
|
# CRTX (GPMF-BACK/FRNT) - double[1]
|
130
139
|
# CRTY (GPMF-BACK/FRNT) - double[1]
|
131
140
|
CSEN => { #PH (Karma)
|
@@ -135,7 +144,7 @@ my %addUnits = (
|
|
135
144
|
# SCAL=1000 1 1 1 1 1 1 1 1 1 1
|
136
145
|
Binary => 1,
|
137
146
|
},
|
138
|
-
|
147
|
+
CTRL => 'ControlLevel', #3
|
139
148
|
CYTS => { #PH (Karma)
|
140
149
|
Name => 'CoyoteStatus',
|
141
150
|
# UNIT=s,,,,,rad,rad,rad,,
|
@@ -155,22 +164,22 @@ my %addUnits = (
|
|
155
164
|
# (Max) DVID='HLMT',DVNM='Highlights'
|
156
165
|
},
|
157
166
|
# DNSC (GPMF) - seen: 'HIGH' (fmt c)
|
158
|
-
|
167
|
+
DUST => 'DurationSetting', #3
|
159
168
|
# DVID (GPMF) - DeviceID; seen: 1 (fmt L), HLMT (fmt F), GEOC (fmt F), 'BACK' (fmt F, Max)
|
160
169
|
DVID => { Name => 'DeviceID', Unknown => 1 }, #2 (gpmd)
|
161
170
|
# DVNM (GPMF) seen: 'Video Global Settings' (fmt c), 'Highlights' (fmt c), 'Geometry Calibrations' (Max)
|
162
171
|
# DVNM (gpmd) seen: 'Camera' (Hero5), 'Hero6 Black' (Hero6), 'GoPro Karma v1.0' (Karma)
|
163
172
|
DVNM => 'DeviceName', #PH (n/c)
|
164
173
|
DZOM => { #PH (GPMF - seen: 'Y', fmt c)
|
165
|
-
Name => '
|
166
|
-
PrintConv =>
|
174
|
+
Name => 'DigitalZoomOn',
|
175
|
+
PrintConv => \%noYes,
|
167
176
|
},
|
168
|
-
|
169
|
-
|
177
|
+
DZMX => 'DigitalZoomAmount', #3
|
178
|
+
DZST => 'DigitalZoom', #3
|
170
179
|
EISA => { #PH (GPMF) - seen: 'Y','N','HS EIS','N/A' (fmt c) [N was for a time-lapse video]
|
171
180
|
Name => 'ElectronicImageStabilization',
|
172
181
|
},
|
173
|
-
|
182
|
+
EISE => { Name => 'ElectronicStabilizationOn', PrintConv => \%noYes }, #3
|
174
183
|
EMPT => { Name => 'Empty', Unknown => 1 }, #2 (gpmd)
|
175
184
|
ESCS => { #PH (Karma)
|
176
185
|
Name => 'EscapeStatus',
|
@@ -180,7 +189,7 @@ my %addUnits = (
|
|
180
189
|
Unknown => 1,
|
181
190
|
%addUnits,
|
182
191
|
},
|
183
|
-
|
192
|
+
EXPT => 'ExposureType', #3
|
184
193
|
FACE => 'FaceDetected', #PH (gpmd)
|
185
194
|
FCNM => 'FaceNumbers', #PH (gpmd) (faces counted per frame, ref 1)
|
186
195
|
FMWR => 'FirmwareVersion', #PH (GPMF - seen: HD6.01.01.51.00, fmt c)
|
@@ -242,10 +251,10 @@ my %addUnits = (
|
|
242
251
|
Notes => 'gyroscope readings in rad/s',
|
243
252
|
Binary => 1,
|
244
253
|
},
|
245
|
-
|
246
|
-
|
254
|
+
HCLT => 'HorizonControl', #3
|
255
|
+
HDRV => { Name => 'HDRVideo', PrintConv => \%noYes }, #3/PH (NC)
|
247
256
|
# HFLG (APP6) - seen: 0
|
248
|
-
|
257
|
+
HSGT => 'HindsightSettings', #3
|
249
258
|
ISOE => 'ISOSpeeds', #PH (gpmd)
|
250
259
|
ISOG => { #2 (gpmd)
|
251
260
|
Name => 'ImageSensorGain',
|
@@ -270,20 +279,20 @@ my %addUnits = (
|
|
270
279
|
Binary => 1,
|
271
280
|
},
|
272
281
|
MAGN => 'Magnetometer', #1 (gpmd) (units of uT)
|
273
|
-
|
274
|
-
|
282
|
+
MAPX => 'MappingXCoefficients', #3
|
283
|
+
MAPY => 'MappingYCoefficients', #3
|
275
284
|
# MFOV (GPMF-BACK/FRNT) - seen: 100 (fmt d, Max)
|
276
285
|
MINF => { #PH (GPMF - seen: HERO6 Black, fmt c)
|
277
286
|
Name => 'Model',
|
278
287
|
Groups => { 2 => 'Camera' },
|
279
288
|
Description => 'Camera Model Name',
|
280
289
|
},
|
281
|
-
|
282
|
-
# MTYP (GPMF) - seen: 0,1,5,11 [1 for time-lapse video, 5 for 360 video, 11 for JPEG] (fmt B)
|
283
|
-
|
284
|
-
|
285
|
-
|
286
|
-
|
290
|
+
MMOD => 'MediaMode', #3
|
291
|
+
# MTYP (GPMF) - seen: 0,1,5,11 [1 for time-lapse video, 5 for 360 video, 11 for JPEG] (fmt B) - MediaType (ref 3)
|
292
|
+
MUID => { Name => 'MediaUID', ValueConv => 'join("-", unpack("H8H4H4H4H12", $val))' },
|
293
|
+
MXCF => 'MappingXMode', #3
|
294
|
+
MYCF => 'MappingYMode', #3
|
295
|
+
ORDP => { Name => 'OrientationDataPresent', PrintConv => \%noYes }, #3
|
287
296
|
OREN => { #PH (GPMF - seen: 'U', fmt c)
|
288
297
|
Name => 'AutoRotation',
|
289
298
|
PrintConv => {
|
@@ -292,20 +301,20 @@ my %addUnits = (
|
|
292
301
|
A => 'Auto', # (NC)
|
293
302
|
},
|
294
303
|
},
|
295
|
-
# (most of the "P" tags are
|
304
|
+
# (most of the "P" tags are Protune settings - PH)
|
296
305
|
PHDR => 'HDRSetting', #PH (APP6 - seen: 0)
|
297
|
-
|
306
|
+
PIMD => 'ProtuneISOMode', #3
|
298
307
|
PIMN => 'AutoISOMin', #PH (GPMF - seen: 100, fmt L)
|
299
308
|
PIMX => 'AutoISOMax', #PH (GPMF - seen: 1600, fmt L)
|
300
|
-
|
309
|
+
POLY => 'PolynomialCoefficients', #3
|
301
310
|
# PRAW (APP6) - seen: 0, 'N', 'Y' (fmt c)
|
302
311
|
# PRCN (GPMF) - seen: 65 zeros (fmt B)
|
303
312
|
PRES => 'PhotoResolution', #PH (APP6 - seen: '12MP_W')
|
304
|
-
|
305
|
-
# PRNA (GPMF) - seen 10 (fmt B)
|
306
|
-
# PRNU (GPMF) - seen 0 (fmt B)
|
313
|
+
PRJT => 'LensProjection', #3
|
314
|
+
# PRNA (GPMF) - seen 10 (fmt B) - PresetIDs (ref 3)
|
315
|
+
# PRNU (GPMF) - seen 0 (fmt B) - PresetIDs (ref 3)
|
307
316
|
PRTN => { #PH (GPMF - seen: 'N', fmt c)
|
308
|
-
Name => '
|
317
|
+
Name => 'Protune',
|
309
318
|
PrintConv => {
|
310
319
|
N => 'Off',
|
311
320
|
Y => 'On', # (NC)
|
@@ -316,9 +325,9 @@ my %addUnits = (
|
|
316
325
|
PTSH => 'Sharpness', #PH (GPMF - seen: 'HIGH', fmt c)
|
317
326
|
PTWB => 'WhiteBalance', #PH (GPMF - seen: 'AUTO', fmt c)
|
318
327
|
# PVUL (APP6) - seen: 'F' (fmt c, Hero8, Max)
|
319
|
-
|
320
|
-
|
321
|
-
|
328
|
+
PWPR => 'PowerProfile', #3
|
329
|
+
PYCF => 'PolynomialPower', #3
|
330
|
+
RAMP => 'SpeedRampSetting', #3
|
322
331
|
RATE => 'Rate', #PH (GPMF - seen: '0_5SEC', fmt c; APP6 - seen: '4_1SEC')
|
323
332
|
RMRK => { #2 (gpmd)
|
324
333
|
Name => 'Comments',
|
@@ -328,7 +337,7 @@ my %addUnits = (
|
|
328
337
|
Name => 'ScaleFactor',
|
329
338
|
Unknown => 1,
|
330
339
|
},
|
331
|
-
|
340
|
+
SCAP => { Name => 'ScheduleCapture', PrintConv => \%noYes }, #3
|
332
341
|
SCPR => { #PH (Karma) [stream was empty]
|
333
342
|
Name => 'ScaledPressure',
|
334
343
|
# UNIT=s,Pa,Pa,degC
|
@@ -336,7 +345,7 @@ my %addUnits = (
|
|
336
345
|
# SCAL=1000 0.00999999977648258 0.00999999977648258 100
|
337
346
|
%addUnits,
|
338
347
|
},
|
339
|
-
|
348
|
+
SCTM => 'ScheduleCaptureTime', #3 (seconds since UTC midnight)
|
340
349
|
# SFTR (GPMF-BACK/FRNT) - seen 0.999,1.00004 (fmt d, Max)
|
341
350
|
# SHFX (GPMF-GEOC) - seen 22.92 (fmt d, Max)
|
342
351
|
# SHFY (GPMF-GEOC) - seen 0.123 (fmt d, Max)
|
@@ -361,9 +370,9 @@ my %addUnits = (
|
|
361
370
|
Unknown => 1,
|
362
371
|
ValueConv => '$self->Decode($val, "Latin")',
|
363
372
|
},
|
364
|
-
|
373
|
+
SMTR => { Name => 'SpotMeter', PrintConv => \%noYes }, #3
|
365
374
|
# SOFF (APP6) - seen: 0 (fmt L, Hero8, Max)
|
366
|
-
|
375
|
+
SROT => 'SensorReadoutTime', #3
|
367
376
|
STMP => { #1 (gpmd)
|
368
377
|
Name => 'TimeStamp',
|
369
378
|
ValueConv => '$val / 1e6',
|
@@ -437,8 +446,8 @@ my %addUnits = (
|
|
437
446
|
Name => 'WhiteBalanceRGB',
|
438
447
|
Binary => 1,
|
439
448
|
},
|
440
|
-
|
441
|
-
|
449
|
+
ZFOV => 'DiagonalFieldOfView', #3
|
450
|
+
ZMPL => 'ZoomScaleNormalization', #3
|
442
451
|
#
|
443
452
|
# the following ref forum12825
|
444
453
|
#
|
@@ -450,7 +459,6 @@ my %addUnits = (
|
|
450
459
|
return join('', @a);
|
451
460
|
},
|
452
461
|
},
|
453
|
-
EXPT => 'MaximumShutterAngle',
|
454
462
|
MTRX => 'AccelerometerMatrix',
|
455
463
|
ORIN => 'InputOrientation',
|
456
464
|
ORIO => 'OutputOrientation',
|
@@ -873,6 +881,8 @@ under the same terms as Perl itself.
|
|
873
881
|
|
874
882
|
=item L<https://github.com/stilldavid/gopro-utils>
|
875
883
|
|
884
|
+
=item L<https://github.com/gopro/gpmf-parser>
|
885
|
+
|
876
886
|
=back
|
877
887
|
|
878
888
|
=head1 SEE ALSO
|
@@ -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.
|
68
|
+
$VERSION = '4.43';
|
69
69
|
|
70
70
|
sub LensIDConv($$$);
|
71
71
|
sub ProcessNikonAVI($$$);
|
@@ -1370,6 +1370,25 @@ my %retouchValues = ( #PH
|
|
1370
1370
|
54 => 'Low Key', # (S3500)
|
1371
1371
|
);
|
1372
1372
|
|
1373
|
+
# AF points for models with 11 focus points (eg. D3400)
|
1374
|
+
my %afPoints11 = (
|
1375
|
+
0 => '(none)',
|
1376
|
+
0x7ff => 'All 11 Points',
|
1377
|
+
BITMASK => {
|
1378
|
+
0 => 'Center',
|
1379
|
+
1 => 'Top',
|
1380
|
+
2 => 'Bottom',
|
1381
|
+
3 => 'Mid-left',
|
1382
|
+
4 => 'Mid-right',
|
1383
|
+
5 => 'Upper-left',
|
1384
|
+
6 => 'Upper-right',
|
1385
|
+
7 => 'Lower-left',
|
1386
|
+
8 => 'Lower-right',
|
1387
|
+
9 => 'Far Left',
|
1388
|
+
10 => 'Far Right',
|
1389
|
+
},
|
1390
|
+
);
|
1391
|
+
|
1373
1392
|
# AF point indices for models with 51 focus points, eg. D3 (ref JD/PH)
|
1374
1393
|
# A1 A2 A3 A4 A5 A6 A7 A8 A9
|
1375
1394
|
# B1 B2 B3 B4 B5 B6 B7 B8 B9 B10 B11
|
@@ -4027,23 +4046,7 @@ my %base64coord = (
|
|
4027
4046
|
Name => 'AFPointsInFocus',
|
4028
4047
|
Format => 'int16u',
|
4029
4048
|
PrintConvColumns => 2,
|
4030
|
-
PrintConv =>
|
4031
|
-
0 => '(none)',
|
4032
|
-
0x7ff => 'All 11 Points',
|
4033
|
-
BITMASK => {
|
4034
|
-
0 => 'Center',
|
4035
|
-
1 => 'Top',
|
4036
|
-
2 => 'Bottom',
|
4037
|
-
3 => 'Mid-left',
|
4038
|
-
4 => 'Mid-right',
|
4039
|
-
5 => 'Upper-left',
|
4040
|
-
6 => 'Upper-right',
|
4041
|
-
7 => 'Lower-left',
|
4042
|
-
8 => 'Lower-right',
|
4043
|
-
9 => 'Far Left',
|
4044
|
-
10 => 'Far Right',
|
4045
|
-
},
|
4046
|
-
},
|
4049
|
+
PrintConv => \%afPoints11,
|
4047
4050
|
},
|
4048
4051
|
);
|
4049
4052
|
|
@@ -4515,7 +4518,7 @@ my %base64coord = (
|
|
4515
4518
|
0x1c => [
|
4516
4519
|
{ #PH
|
4517
4520
|
Name => 'ContrastDetectAFInFocus',
|
4518
|
-
Condition => '$$self{AFInfo2Version} eq "0100"',
|
4521
|
+
Condition => '$$self{AFInfo2Version} eq "0100" and $$self{ContrastDetectAF}',
|
4519
4522
|
PrintConv => { 0 => 'No', 1 => 'Yes' },
|
4520
4523
|
},{ #PH (D500, see forum11190)
|
4521
4524
|
Name => 'AFPointsSelected',
|
@@ -4525,6 +4528,11 @@ my %base64coord = (
|
|
4525
4528
|
ValueConvInv => '$val=~tr/ //d; pack("H*",$val)',
|
4526
4529
|
PrintConv => sub { PrintAFPoints(shift, \%afPoints153); },
|
4527
4530
|
PrintConvInv => sub { PrintAFPointsInv(shift, \%afPoints153); },
|
4531
|
+
},{ #PH (D3400) (NC "selected")
|
4532
|
+
Name => 'AFPointsSelected',
|
4533
|
+
Condition => '$$self{AFInfo2Version} eq "0101" and $$self{PhaseDetectAF} == 2',
|
4534
|
+
Format => 'int16u',
|
4535
|
+
PrintConv => \%afPoints11,
|
4528
4536
|
},
|
4529
4537
|
],
|
4530
4538
|
# 0x1d - always zero (with or without live view)
|
@@ -4573,6 +4581,14 @@ my %base64coord = (
|
|
4573
4581
|
ValueConvInv => '$val=~tr/ //d; pack("H*",$val)',
|
4574
4582
|
PrintConv => sub { PrintAFPoints(shift, \%afPoints153); },
|
4575
4583
|
PrintConvInv => sub { PrintAFPointsInv(shift, \%afPoints153); },
|
4584
|
+
},{ #PH (D7500) (NC "in focus")
|
4585
|
+
Name => 'AFPointsInFocus',
|
4586
|
+
Condition => '$$self{AFInfo2Version} eq "0101" and $$self{PhaseDetectAF} == 1',
|
4587
|
+
Format => 'undef[7]',
|
4588
|
+
ValueConv => 'join(" ", unpack("H2"x7, $val))',
|
4589
|
+
ValueConvInv => '$val=~tr/ //d; pack("H*",$val)',
|
4590
|
+
PrintConv => sub { PrintAFPoints(shift, \%afPoints51); },
|
4591
|
+
PrintConvInv => sub { PrintAFPointsInv(shift, \%afPoints51); },
|
4576
4592
|
},
|
4577
4593
|
],
|
4578
4594
|
0x31 => { #28 (Z7)
|
@@ -4639,6 +4655,16 @@ my %base64coord = (
|
|
4639
4655
|
11 => 'Far Right',
|
4640
4656
|
},
|
4641
4657
|
},
|
4658
|
+
{
|
4659
|
+
Name => 'PrimaryAFPoint',
|
4660
|
+
Condition => '$$self{PhaseDetectAF} == 1 and $$self{AFInfo2Version} eq "0101"',
|
4661
|
+
PrintConvColumns => 5,
|
4662
|
+
PrintConv => {
|
4663
|
+
0 => '(none)',
|
4664
|
+
%afPoints51,
|
4665
|
+
1 => 'C6 (Center)',
|
4666
|
+
},
|
4667
|
+
},
|
4642
4668
|
{
|
4643
4669
|
Name => 'PrimaryAFPoint',
|
4644
4670
|
Condition => '$$self{AFInfo2Version} eq "0101"',
|
@@ -1165,7 +1165,7 @@ sub ProcessPSD($$)
|
|
1165
1165
|
$len = Set32u(length $data);
|
1166
1166
|
Write($outfile, $len, $data) or $err = 1;
|
1167
1167
|
# look for trailer and edit if necessary
|
1168
|
-
my $trailInfo =
|
1168
|
+
my $trailInfo = $et->IdentifyTrailer($raf);
|
1169
1169
|
if ($trailInfo) {
|
1170
1170
|
my $tbuf = '';
|
1171
1171
|
$$trailInfo{OutFile} = \$tbuf; # rewrite trailer(s)
|
@@ -1223,7 +1223,7 @@ sub ProcessPSD($$)
|
|
1223
1223
|
}
|
1224
1224
|
$$et{INDENT} = $oldIndent;
|
1225
1225
|
# process trailers if they exist
|
1226
|
-
my $trailInfo =
|
1226
|
+
my $trailInfo = $et->IdentifyTrailer($raf);
|
1227
1227
|
$et->ProcessTrailers($trailInfo) if $trailInfo;
|
1228
1228
|
}
|
1229
1229
|
return $rtnVal;
|