exiftool_vendored 12.81.0 → 12.83.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 +39 -1
- data/bin/MANIFEST +4 -18
- data/bin/META.json +1 -1
- data/bin/META.yml +1 -1
- data/bin/README +3 -2
- data/bin/build_geolocation +867 -0
- data/bin/exiftool +37 -9
- data/bin/fmt_files/gpx.fmt +2 -1
- data/bin/fmt_files/gpx_wpt.fmt +2 -1
- data/bin/lib/Image/ExifTool/BuildTagLookup.pm +47 -31
- data/bin/lib/Image/ExifTool/CanonVRD.pm +6 -5
- data/bin/lib/Image/ExifTool/DJI.pm +29 -0
- data/bin/lib/Image/ExifTool/Exif.pm +19 -2
- data/bin/lib/Image/ExifTool/FujiFilm.pm +9 -2
- data/bin/lib/Image/ExifTool/GM.pm +552 -0
- data/bin/lib/Image/ExifTool/Geolocation.dat +0 -0
- data/bin/lib/Image/ExifTool/Geolocation.pm +90 -54
- data/bin/lib/Image/ExifTool/Nikon.pm +9 -7
- data/bin/lib/Image/ExifTool/QuickTime.pm +31 -23
- data/bin/lib/Image/ExifTool/QuickTimeStream.pl +66 -30
- data/bin/lib/Image/ExifTool/README +2 -0
- data/bin/lib/Image/ExifTool/Sony.pm +15 -6
- data/bin/lib/Image/ExifTool/TagLookup.pm +37 -6
- data/bin/lib/Image/ExifTool/TagNames.pod +407 -239
- data/bin/lib/Image/ExifTool/WriteQuickTime.pl +5 -2
- data/bin/lib/Image/ExifTool/Writer.pl +165 -133
- data/bin/lib/Image/ExifTool/XMP.pm +3 -2
- data/bin/lib/Image/ExifTool/XMP2.pl +3 -0
- data/bin/lib/Image/ExifTool.pm +38 -9
- data/bin/lib/Image/ExifTool.pod +31 -18
- data/bin/perl-Image-ExifTool.spec +1 -1
- data/lib/exiftool_vendored/version.rb +1 -1
- metadata +4 -20
- data/bin/lib/Image/ExifTool/GeoLang/cs.pm +0 -978
- data/bin/lib/Image/ExifTool/GeoLang/de.pm +0 -1975
- data/bin/lib/Image/ExifTool/GeoLang/en_ca.pm +0 -44
- data/bin/lib/Image/ExifTool/GeoLang/en_gb.pm +0 -124
- data/bin/lib/Image/ExifTool/GeoLang/es.pm +0 -2921
- data/bin/lib/Image/ExifTool/GeoLang/fi.pm +0 -1116
- data/bin/lib/Image/ExifTool/GeoLang/fr.pm +0 -3171
- data/bin/lib/Image/ExifTool/GeoLang/it.pm +0 -2750
- data/bin/lib/Image/ExifTool/GeoLang/ja.pm +0 -10256
- data/bin/lib/Image/ExifTool/GeoLang/ko.pm +0 -4499
- data/bin/lib/Image/ExifTool/GeoLang/nl.pm +0 -1270
- data/bin/lib/Image/ExifTool/GeoLang/pl.pm +0 -3019
- data/bin/lib/Image/ExifTool/GeoLang/ru.pm +0 -18220
- data/bin/lib/Image/ExifTool/GeoLang/sk.pm +0 -441
- data/bin/lib/Image/ExifTool/GeoLang/sv.pm +0 -714
- data/bin/lib/Image/ExifTool/GeoLang/tr.pm +0 -452
- data/bin/lib/Image/ExifTool/GeoLang/zh_cn.pm +0 -2225
- data/bin/lib/Image/ExifTool/GeoLang/zh_tw.pm +0 -72
|
@@ -1132,6 +1132,8 @@ keys in structure hashes are:
|
|
|
1132
1132
|
GROUPS : Same as in tag table, but only the family 2 group name is used,
|
|
1133
1133
|
as the default for the flattened tags.
|
|
1134
1134
|
|
|
1135
|
+
SORT_ORDER : Order for sorting fields in documentation.
|
|
1136
|
+
|
|
1135
1137
|
The contained structure field information hashes are similar to tag information
|
|
1136
1138
|
hashes, except that only the following elements are used:
|
|
1137
1139
|
|
|
@@ -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.
|
|
37
|
+
$VERSION = '3.68';
|
|
38
38
|
|
|
39
39
|
sub ProcessSRF($$$);
|
|
40
40
|
sub ProcessSR2($$$);
|
|
@@ -164,9 +164,11 @@ sub PrintInvLensSpec($;$$);
|
|
|
164
164
|
32877 => 'Sony E 15mm F1.4 G', #JR
|
|
165
165
|
32878 => 'Sony FE 20-70mm F4 G', #JR
|
|
166
166
|
32879 => 'Sony FE 50mm F1.4 GM', #JR
|
|
167
|
+
32881 => 'Sony FE 24-50mm F2.8 G', #JR
|
|
168
|
+
32882 => 'Sony FE 16-25mm F2.8 G', #JR
|
|
167
169
|
32884 => 'Sony FE 70-200mm F4 Macro G OSS II', #JR
|
|
168
170
|
32885 => 'Sony FE 16-35mm F2.8 GM II', #JR
|
|
169
|
-
32886 => 'Sony FE 300mm F2.8 OSS', #JR
|
|
171
|
+
32886 => 'Sony FE 300mm F2.8 GM OSS', #JR
|
|
170
172
|
|
|
171
173
|
# (comment this out so LensID will report the LensModel, which is more useful)
|
|
172
174
|
# 32952 => 'Metabones Canon EF Speed Booster Ultra', #JR (corresponds to 184, but 'Advanced' mode, LensMount reported as E-mount)
|
|
@@ -187,6 +189,8 @@ sub PrintInvLensSpec($;$$);
|
|
|
187
189
|
33086 => 'Sony FE 70-200mm F2.8 GM OSS II + 2X Teleconverter', #JR
|
|
188
190
|
33087 => 'Sony FE 70-200mm F4 Macro G OSS II + 1.4X Teleconverter', #JR
|
|
189
191
|
33088 => 'Sony FE 70-200mm F4 Macro G OSS II + 2X Teleconverter', #JR
|
|
192
|
+
33089 => 'Sony FE 300mm F2.8 GM OSS + 1.4X Teleconverter', #JR (NC)
|
|
193
|
+
33090 => 'Sony FE 300mm F2.8 GM OSS + 2X Teleconverter', #JR
|
|
190
194
|
|
|
191
195
|
49201 => 'Zeiss Touit 12mm F2.8', #JR (lens firmware Ver.02)
|
|
192
196
|
49202 => 'Zeiss Touit 32mm F1.8', #JR (lens firmware Ver.02)
|
|
@@ -234,6 +238,7 @@ sub PrintInvLensSpec($;$$);
|
|
|
234
238
|
49474.7 => 'Viltrox 35mm F1.8 FE', #JR
|
|
235
239
|
49474.8 => 'Viltrox 50mm F1.8 FE', #JR
|
|
236
240
|
49474.9 => 'Viltrox 75mm F1.2 E', #JR
|
|
241
|
+
'49474.10' => 'Viltrox 20mm F2.8 FE', #JR
|
|
237
242
|
|
|
238
243
|
49712 => 'Tokina FiRIN 20mm F2 FE AF', # (firmware Ver.01)
|
|
239
244
|
49713 => 'Tokina FiRIN 100mm F2.8 FE MACRO', # (firmware Ver.01)
|
|
@@ -287,7 +292,9 @@ sub PrintInvLensSpec($;$$);
|
|
|
287
292
|
50540 => 'Sigma 14mm F1.4 DG DN | A', #JR (023)
|
|
288
293
|
50543 => 'Sigma 70-200mm F2.8 DG DN OS | S', #JR (023)
|
|
289
294
|
50544 => 'Sigma 23mm F1.4 DC DN | C', #JR (023)
|
|
295
|
+
50546 => 'Sigma 500mm F5.6 DG DN OS | S', #JR (024)
|
|
290
296
|
50547 => 'Sigma 10-18mm F2.8 DC DN | C', #JR (023)
|
|
297
|
+
50548 => 'Sigma 15mm F1.4 DG DN DIAGONAL FISHEYE | A', #JR (024)
|
|
291
298
|
|
|
292
299
|
50992 => 'Voigtlander SUPER WIDE-HELIAR 15mm F4.5 III', #JR
|
|
293
300
|
50993 => 'Voigtlander HELIAR-HYPER WIDE 10mm F5.6', #IB
|
|
@@ -2031,6 +2038,7 @@ my %hidUnk = ( Hidden => 1, Unknown => 1 );
|
|
|
2031
2038
|
'4 0 0 0' => 'ARW 4.0', # (ILCE-7SM3)
|
|
2032
2039
|
'4 0 1 0' => 'ARW 4.0.1', #github#195 (ZV-E1)
|
|
2033
2040
|
'5 0 0 0' => 'ARW 5.0', # (ILCE-9M3)
|
|
2041
|
+
'5 0 1 0' => 'ARW 5.0.1', # (ILCE-1 with FirmWare 2.0)
|
|
2034
2042
|
# what about cRAW images?
|
|
2035
2043
|
},
|
|
2036
2044
|
},
|
|
@@ -8515,16 +8523,17 @@ my %isoSetting2010 = (
|
|
|
8515
8523
|
FIRST_ENTRY => 0,
|
|
8516
8524
|
GROUPS => { 0 => 'MakerNotes', 2 => 'Image' },
|
|
8517
8525
|
DATAMEMBER => [ 0 ],
|
|
8518
|
-
IS_SUBDIR => [ 0x03e2, 0x03f4, 0x044e, 0x0498, 0x049d, 0x04a1, 0x04a2, 0x04ba, 0x059d, 0x0634, 0x0636, 0x064c, 0x0653, 0x0678, 0x06b8, 0x06de, 0x06e7 ],
|
|
8526
|
+
IS_SUBDIR => [ 0x03e2, 0x03f4, 0x044e, 0x0498, 0x049d, 0x049e, 0x04a1, 0x04a2, 0x04ba, 0x059d, 0x0634, 0x0636, 0x064c, 0x0653, 0x0678, 0x06b8, 0x06de, 0x06e7 ],
|
|
8519
8527
|
0x0000 => { Name => 'Ver9401', Hidden => 1, RawConv => '$$self{Ver9401} = $val; $$self{OPTIONS}{Unknown}<2 ? undef : $val' },
|
|
8520
8528
|
|
|
8521
8529
|
0x03e2 => { Name => 'ISOInfo', Condition => '$$self{Ver9401} == 181', Format => 'int8u[5]', SubDirectory => { TagTable => 'Image::ExifTool::Sony::ISOInfo' } },
|
|
8522
8530
|
0x03f4 => { Name => 'ISOInfo', Condition => '$$self{Ver9401} == 185', Format => 'int8u[5]', SubDirectory => { TagTable => 'Image::ExifTool::Sony::ISOInfo' } },
|
|
8523
8531
|
0x044e => { Name => 'ISOInfo', Condition => '$$self{Ver9401} == 178', Format => 'int8u[5]', SubDirectory => { TagTable => 'Image::ExifTool::Sony::ISOInfo' } },
|
|
8524
8532
|
0x0498 => { Name => 'ISOInfo', Condition => '$$self{Ver9401} == 148', Format => 'int8u[5]', SubDirectory => { TagTable => 'Image::ExifTool::Sony::ISOInfo' } },
|
|
8525
|
-
0x049d => { Name => 'ISOInfo', Condition => '$$self{Ver9401} == 167',
|
|
8526
|
-
|
|
8527
|
-
|
|
8533
|
+
0x049d => { Name => 'ISOInfo', Condition => '$$self{Ver9401} == 167 and $$self{Software} !~ /^ILCE-7M4 (v2|v3)/', Format => 'int8u[5]', SubDirectory => { TagTable => 'Image::ExifTool::Sony::ISOInfo' } },
|
|
8534
|
+
0x049e => { Name => 'ISOInfo', Condition => '$$self{Ver9401} == 167 and $$self{Software} =~ /^ILCE-7M4 (v2|v3)/', Format => 'int8u[5]', SubDirectory => { TagTable => 'Image::ExifTool::Sony::ISOInfo' } },
|
|
8535
|
+
0x04a1 => { Name => 'ISOInfo', Condition => '$$self{Ver9401} =~ /^(160|164)/ and $$self{Software} !~ /^ILCE-1 v2/', Format => 'int8u[5]', SubDirectory => { TagTable => 'Image::ExifTool::Sony::ISOInfo' } },
|
|
8536
|
+
0x04a2 => { Name => 'ISOInfo', Condition => '($$self{Ver9401} =~ /^(152|154|155)/ and $$self{Model} !~ /^ZV-1M2/) or ($$self{Ver9401} == 164 and $$self{Software} =~ /^ILCE-1 v2/)', Format => 'int8u[5]', SubDirectory => { TagTable => 'Image::ExifTool::Sony::ISOInfo' } },
|
|
8528
8537
|
0x04ba => { Name => 'ISOInfo', Condition => '$$self{Ver9401} == 155 and $$self{Model} =~ /^ZV-1M2/', Format => 'int8u[5]', SubDirectory => { TagTable => 'Image::ExifTool::Sony::ISOInfo' } },
|
|
8529
8538
|
0x059d => { Name => 'ISOInfo', Condition => '$$self{Ver9401} =~ /^(144|146)/', Format => 'int8u[5]', SubDirectory => { TagTable => 'Image::ExifTool::Sony::ISOInfo' } },
|
|
8530
8539
|
0x0634 => { Name => 'ISOInfo', Condition => '$$self{Ver9401} == 68', Format => 'int8u[5]', SubDirectory => { TagTable => 'Image::ExifTool::Sony::ISOInfo' } },
|
|
@@ -2072,7 +2072,7 @@ my %tagLookup = (
|
|
|
2072
2072
|
'creditlinereq' => { 543 => 'CreditLineReq' },
|
|
2073
2073
|
'creditlinerequired' => { 334 => 'CreditLineRequired' },
|
|
2074
2074
|
'cropactive' => { 104 => 0x0, 111 => 0x244 },
|
|
2075
|
-
'cropangle' => { 511 => 'CropAngle', 513 => 'CropAngle' },
|
|
2075
|
+
'cropangle' => { 104 => 0x8, 511 => 'CropAngle', 513 => 'CropAngle' },
|
|
2076
2076
|
'croparea' => { 239 => 0x45, 486 => 0x9011 },
|
|
2077
2077
|
'cropaspectratio' => { 106 => 0x30101, 111 => 0x260 },
|
|
2078
2078
|
'cropaspectratiocustom' => { 106 => 0x30102 },
|
|
@@ -2083,6 +2083,7 @@ my %tagLookup = (
|
|
|
2083
2083
|
'cropcirclex' => { 112 => 0xd7 },
|
|
2084
2084
|
'cropcircley' => { 112 => 0xd8 },
|
|
2085
2085
|
'cropconstraintowarp' => { 511 => 'CropConstrainToWarp', 513 => 'CropConstrainToWarp' },
|
|
2086
|
+
'cropflag' => { 130 => 0x1051 },
|
|
2086
2087
|
'croph' => { 505 => 'CropH' },
|
|
2087
2088
|
'cropheight' => { 104 => 0x6, 111 => 0x24c, 328 => 0x615, 332 => 0x615, 511 => 'CropHeight', 513 => 'CropHeight' },
|
|
2088
2089
|
'crophispeed' => { 239 => 0x1b },
|
|
@@ -2098,7 +2099,6 @@ my %tagLookup = (
|
|
|
2098
2099
|
'cropoutputscale' => { 292 => 0xbe },
|
|
2099
2100
|
'cropoutputwidth' => { 292 => 0xc6 },
|
|
2100
2101
|
'cropoutputwidthinches' => { 292 => 0x8e },
|
|
2101
|
-
'cropped' => { 130 => 0x1051 },
|
|
2102
2102
|
'croppedareaimageheightpixels' => { 499 => 'CroppedAreaImageHeightPixels', 500 => 'CroppedAreaImageHeightPixels' },
|
|
2103
2103
|
'croppedareaimagewidthpixels' => { 499 => 'CroppedAreaImageWidthPixels', 500 => 'CroppedAreaImageWidthPixels' },
|
|
2104
2104
|
'croppedarealeftpixels' => { 499 => 'CroppedAreaLeftPixels', 500 => 'CroppedAreaLeftPixels' },
|
|
@@ -2112,7 +2112,7 @@ my %tagLookup = (
|
|
|
2112
2112
|
'croprightmargin' => { 55 => 0x1 },
|
|
2113
2113
|
'croprotatedoriginalheight' => { 104 => 0x2 },
|
|
2114
2114
|
'croprotatedoriginalwidth' => { 104 => 0x1 },
|
|
2115
|
-
'croprotation' => { 104 =>
|
|
2115
|
+
'croprotation' => { 104 => 0x7, 126 => 0xb },
|
|
2116
2116
|
'cropscaledresolution' => { 292 => 0x9e },
|
|
2117
2117
|
'cropsize' => { 130 => 0x1053 },
|
|
2118
2118
|
'cropsourceresolution' => { 292 => 0xae },
|
|
@@ -3944,6 +3944,9 @@ my %tagLookup = (
|
|
|
3944
3944
|
'jpgfromrawstart' => { 122 => [0x111,0x201] },
|
|
3945
3945
|
'jpgrecordedpixels' => { 364 => '14.1' },
|
|
3946
3946
|
'jurisdiction' => { 509 => 'jurisdiction' },
|
|
3947
|
+
'jxldecodespeed' => { 122 => 0xcd4b },
|
|
3948
|
+
'jxldistance' => { 122 => 0xcd49 },
|
|
3949
|
+
'jxleffort' => { 122 => 0xcd4a },
|
|
3947
3950
|
'keepexposure' => { 320 => 0x237, 321 => 0x237, 322 => 0x24f },
|
|
3948
3951
|
'kelvinwb_01' => { 372 => 0x5 },
|
|
3949
3952
|
'kelvinwb_02' => { 372 => 0x9 },
|
|
@@ -4877,6 +4880,9 @@ my %tagLookup = (
|
|
|
4877
4880
|
'mood' => { 182 => 'WM/Mood' },
|
|
4878
4881
|
'moonphase' => { 409 => 0x12, 410 => 0x43, 411 => 0x4c },
|
|
4879
4882
|
'morepermissions' => { 509 => 'morePermissions' },
|
|
4883
|
+
'motionphoto' => { 494 => 'MotionPhoto' },
|
|
4884
|
+
'motionphotopresentationtimestampus' => { 494 => 'MotionPhotoPresentationTimestampUs' },
|
|
4885
|
+
'motionphotoversion' => { 494 => 'MotionPhotoVersion' },
|
|
4880
4886
|
'motionphotovideo' => { 403 => 'mpvd' },
|
|
4881
4887
|
'motionsensitivity' => { 409 => 0x29, 411 => 0x60 },
|
|
4882
4888
|
'movementcount' => { 400 => "\xa9mvc" },
|
|
@@ -5743,7 +5749,7 @@ my %tagLookup = (
|
|
|
5743
5749
|
'previewcroptop' => { 394 => 0xed },
|
|
5744
5750
|
'previewdate' => { 406 => 0x0 },
|
|
5745
5751
|
'previewdatetime' => { 122 => 0xc71b },
|
|
5746
|
-
'previewimage' => { 116 => 0x2000, 117 => 'Exif-PreviewImage', 123 => 'PreviewImage', 125 => 0x4, 169 => 'data', 189 => 0x81, 329 => 0x280, 346 => 0x300, 408 => 'mcvr', 449 => 0x2001 },
|
|
5752
|
+
'previewimage' => { 116 => 0x2000, 117 => 'Exif-PreviewImage', 123 => 'PreviewImage', 125 => 0x4, 169 => 'data', 189 => 0x81, 329 => 0x280, 346 => 0x300, 400 => 'snal', 408 => 'mcvr', 449 => 0x2001 },
|
|
5747
5753
|
'previewimageborders' => { 383 => 0x3e },
|
|
5748
5754
|
'previewimageheight' => { 75 => 0x4, 145 => 0xfa58 },
|
|
5749
5755
|
'previewimagelength' => { 75 => 0x2, 116 => 0x3, 122 => [0x117,0x202], 189 => 0x89, 259 => 0x202, 324 => 0x102, 329 => 0x1037, 383 => 0x3, 414 => 0x1e, 419 => 0x3, 425 => [0x1b,0x1d], 438 => 0x202 },
|
|
@@ -6255,7 +6261,7 @@ my %tagLookup = (
|
|
|
6255
6261
|
'rflenstype' => { 59 => 0x3d },
|
|
6256
6262
|
'rgbcurvelimits' => { 111 => 0x238 },
|
|
6257
6263
|
'rgbcurvepoints' => { 110 => 0x7, 111 => 0x20e },
|
|
6258
|
-
'rgbtables' => { 122 =>
|
|
6264
|
+
'rgbtables' => { 122 => 0xcd3f },
|
|
6259
6265
|
'richtextcomment' => { 520 => 'RichTextComment' },
|
|
6260
6266
|
'ricohdate' => { 414 => 0x6 },
|
|
6261
6267
|
'ricohimageheight' => { 414 => 0x2 },
|
|
@@ -6858,7 +6864,7 @@ my %tagLookup = (
|
|
|
6858
6864
|
'thumbnailfilename' => { 100 => 0x817 },
|
|
6859
6865
|
'thumbnailformat' => { 538 => [\'Thumbnails','ThumbnailsFormat'] },
|
|
6860
6866
|
'thumbnailheight' => { 145 => 0xfa55, 538 => [\'Thumbnails','ThumbnailsHeight'] },
|
|
6861
|
-
'thumbnailimage' => { 6 => 'CNDA', 100 => 0x2008, 117 => 'Exif-ThumbnailImage', 125 => 0x3, 170 => 'data', 329 => 0x100, 408 => 'thmb', 538 => [\'Thumbnails','ThumbnailsImage'] },
|
|
6867
|
+
'thumbnailimage' => { 6 => 'CNDA', 100 => 0x2008, 117 => 'Exif-ThumbnailImage', 125 => 0x3, 170 => 'data', 329 => 0x100, 400 => 'tnal', 408 => 'thmb', 538 => [\'Thumbnails','ThumbnailsImage'] },
|
|
6862
6868
|
'thumbnailimagename' => { 170 => '1Name' },
|
|
6863
6869
|
'thumbnailimagesize' => { 170 => 'ImageSize' },
|
|
6864
6870
|
'thumbnailimagetype' => { 170 => '0Type' },
|
|
@@ -8330,6 +8336,21 @@ my %tagExists = (
|
|
|
8330
8336
|
'cfagreenthreshold2' => 1,
|
|
8331
8337
|
'cfalayout' => 1,
|
|
8332
8338
|
'cfaplanecolor' => 1,
|
|
8339
|
+
'channel01' => 1,
|
|
8340
|
+
'channel01description' => 1,
|
|
8341
|
+
'channel01dispmax' => 1,
|
|
8342
|
+
'channel01dispmin' => 1,
|
|
8343
|
+
'channel01flags' => 1,
|
|
8344
|
+
'channel01id' => 1,
|
|
8345
|
+
'channel01interval' => 1,
|
|
8346
|
+
'channel01max' => 1,
|
|
8347
|
+
'channel01min' => 1,
|
|
8348
|
+
'channel01multiplier' => 1,
|
|
8349
|
+
'channel01name' => 1,
|
|
8350
|
+
'channel01num' => 1,
|
|
8351
|
+
'channel01offset' => 1,
|
|
8352
|
+
'channel01type' => 1,
|
|
8353
|
+
'channel01units' => 1,
|
|
8333
8354
|
'channel0lagkernel' => 1,
|
|
8334
8355
|
'channel1coordinates' => 1,
|
|
8335
8356
|
'channel1flags' => 1,
|
|
@@ -8707,6 +8728,7 @@ my %tagExists = (
|
|
|
8707
8728
|
'crgbtoerimm9spline' => 1,
|
|
8708
8729
|
'cropdata' => 1,
|
|
8709
8730
|
'cropinfo' => 1,
|
|
8731
|
+
'cropped' => 1,
|
|
8710
8732
|
'cropxcommonoffset' => 1,
|
|
8711
8733
|
'cropxoffset' => 1,
|
|
8712
8734
|
'cropxoffset2' => 1,
|
|
@@ -8818,6 +8840,8 @@ my %tagExists = (
|
|
|
8818
8840
|
'datasize64' => 1,
|
|
8819
8841
|
'datatype' => 1,
|
|
8820
8842
|
'datawindow' => 1,
|
|
8843
|
+
'date1' => 1,
|
|
8844
|
+
'date2' => 1,
|
|
8821
8845
|
'dateaccessed' => 1,
|
|
8822
8846
|
'datearchived' => 1,
|
|
8823
8847
|
'datecompleted' => 1,
|
|
@@ -9652,6 +9676,7 @@ my %tagExists = (
|
|
|
9652
9676
|
'gpmd_gopro' => 1,
|
|
9653
9677
|
'gpmd_kingslim' => 1,
|
|
9654
9678
|
'gpmd_rove' => 1,
|
|
9679
|
+
'gpmd_wolfbox' => 1,
|
|
9655
9680
|
'gps' => 1,
|
|
9656
9681
|
'gps360fly' => 1,
|
|
9657
9682
|
'gpsaltituderaw' => 1,
|
|
@@ -10467,6 +10492,10 @@ my %tagExists = (
|
|
|
10467
10492
|
'markerid' => 1,
|
|
10468
10493
|
'markinfo' => 1,
|
|
10469
10494
|
'marl' => 1,
|
|
10495
|
+
'marlindataversion' => 1,
|
|
10496
|
+
'marlindictionary' => 1,
|
|
10497
|
+
'marlinheader' => 1,
|
|
10498
|
+
'marlinvalues' => 1,
|
|
10470
10499
|
'masksubarea' => 1,
|
|
10471
10500
|
'masteredby' => 1,
|
|
10472
10501
|
'mastergainadjustment' => 1,
|
|
@@ -12517,6 +12546,8 @@ my %tagExists = (
|
|
|
12517
12546
|
'tilegaindeterminationtable' => 1,
|
|
12518
12547
|
'tileoffsets' => 1,
|
|
12519
12548
|
'tiles' => 1,
|
|
12549
|
+
'time1' => 1,
|
|
12550
|
+
'time2' => 1,
|
|
12520
12551
|
'timeanddate' => 1,
|
|
12521
12552
|
'timecode' => 1,
|
|
12522
12553
|
'timecodeindex' => 1,
|