exiftool_vendored 11.71.0 → 11.75.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.

Files changed (45) hide show
  1. checksums.yaml +4 -4
  2. data/bin/Changes +39 -0
  3. data/bin/MANIFEST +17 -4
  4. data/bin/META.json +1 -1
  5. data/bin/META.yml +1 -1
  6. data/bin/README +23 -26
  7. data/bin/config_files/convert_regions.config +139 -5
  8. data/bin/exiftool +21 -21
  9. data/bin/fmt_files/gpx.fmt +2 -1
  10. data/bin/fmt_files/gpx_wpt.fmt +2 -1
  11. data/bin/fmt_files/kml.fmt +2 -2
  12. data/bin/fmt_files/kml_track.fmt +46 -0
  13. data/bin/lib/Image/ExifTool.pm +42 -33
  14. data/bin/lib/Image/ExifTool.pod +21 -21
  15. data/bin/lib/Image/ExifTool/BuildTagLookup.pm +2 -2
  16. data/bin/lib/Image/ExifTool/Canon.pm +2 -1
  17. data/bin/lib/Image/ExifTool/CanonCustom.pm +30 -4
  18. data/bin/lib/Image/ExifTool/Exif.pm +36 -63
  19. data/bin/lib/Image/ExifTool/FujiFilm.pm +1 -0
  20. data/bin/lib/Image/ExifTool/Lang/ru.pm +4233 -503
  21. data/bin/lib/Image/ExifTool/MakerNotes.pm +6 -12
  22. data/bin/lib/Image/ExifTool/Nikon.pm +2 -1
  23. data/bin/lib/Image/ExifTool/Olympus.pm +2 -1
  24. data/bin/lib/Image/ExifTool/OpenEXR.pm +1 -1
  25. data/bin/lib/Image/ExifTool/Parrot.pm +751 -0
  26. data/bin/lib/Image/ExifTool/Photoshop.pm +12 -11
  27. data/bin/lib/Image/ExifTool/QuickTime.pm +18 -5
  28. data/bin/lib/Image/ExifTool/QuickTimeStream.pl +316 -44
  29. data/bin/lib/Image/ExifTool/Shortcuts.pm +1 -2
  30. data/bin/lib/Image/ExifTool/Sigma.pm +72 -55
  31. data/bin/lib/Image/ExifTool/TagLookup.pm +73 -7
  32. data/bin/lib/Image/ExifTool/TagNames.pod +249 -18
  33. data/bin/lib/Image/ExifTool/Text.pm +160 -0
  34. data/bin/lib/Image/ExifTool/WriteXMP.pl +1 -2
  35. data/bin/lib/Image/ExifTool/Writer.pl +1 -1
  36. data/bin/lib/Image/ExifTool/XMP.pm +19 -26
  37. data/bin/lib/Image/ExifTool/XMP2.pl +46 -9
  38. data/bin/lib/Image/ExifTool/XMPStruct.pl +14 -4
  39. data/bin/perl-Image-ExifTool.spec +19 -19
  40. data/lib/exiftool_vendored/version.rb +1 -1
  41. metadata +6 -7
  42. data/bin/config_files/blueskysea.config +0 -101
  43. data/bin/config_files/dji.config +0 -131
  44. data/bin/config_files/mini0806.config +0 -99
  45. data/bin/config_files/thinkware.config +0 -144
@@ -19,7 +19,7 @@ package Image::ExifTool::Shortcuts;
19
19
  use strict;
20
20
  use vars qw($VERSION);
21
21
 
22
- $VERSION = '1.64';
22
+ $VERSION = '1.65';
23
23
 
24
24
  # this is a special table used to define command-line shortcuts
25
25
  # (documentation Notes may be added for these via %shortcutNotes in BuildTagLookup.pm)
@@ -192,7 +192,6 @@ $VERSION = '1.64';
192
192
  'MakerNoteSanyoC4',
193
193
  'MakerNoteSanyoPatch',
194
194
  'MakerNoteSigma',
195
- 'MakerNoteSigma3',
196
195
  'MakerNoteSony',
197
196
  'MakerNoteSony2',
198
197
  'MakerNoteSony3',
@@ -19,7 +19,7 @@ use strict;
19
19
  use vars qw($VERSION %sigmaLensTypes);
20
20
  use Image::ExifTool::Exif;
21
21
 
22
- $VERSION = '1.28';
22
+ $VERSION = '1.29';
23
23
 
24
24
  # sigma LensType lookup (ref IB)
25
25
  %sigmaLensTypes = (
@@ -225,6 +225,9 @@ $VERSION = '1.28';
225
225
  0x1007 => 'Sigma 30mm F2.8', #PH (DP2 Quattro kit)
226
226
  0x1008 => 'Sigma 50mm F2.8 Macro', #NJ (DP3 Quattro kit)
227
227
  0x1009 => 'Sigma 14mm F4', #NJ (DP0 Quattro kit)
228
+ # L-mount lenses?:
229
+ 0x6001 => 'Sigma 150-600mm F5-6.3 DG OS HSM | S', #PH (NC, fp)
230
+ 0x6003 => 'Sigma 45mm F2.8 DG DN | C',#PH (NC, fp)
228
231
  0x8005 => 'Sigma 35mm F1.4 DG HSM | A', #PH (012)
229
232
  0x8009 => 'Sigma 18-35mm F1.8 DC HSM | A', #PH
230
233
  0x8900 => 'Sigma 70-300mm F4-5.6 DG OS', #PH (SD15)
@@ -431,7 +434,7 @@ $VERSION = '1.28';
431
434
  0x001c => [ #PH
432
435
  {
433
436
  Name => 'PreviewImageSize',
434
- Condition => 'not $$self{MakerNoteSigma3}',
437
+ Condition => '$$self{MakerNoteSigmaVer} < 3',
435
438
  Notes => q{
436
439
  PreviewImageStart for the SD1 and Merrill/Quattro models, and
437
440
  PreviewImageSize for others
@@ -454,7 +457,7 @@ $VERSION = '1.28';
454
457
  0x001d => [ #PH
455
458
  {
456
459
  Name => 'MakerNoteVersion',
457
- Condition => 'not $$self{MakerNoteSigma3}',
460
+ Condition => '$$self{MakerNoteSigmaVer} < 3',
458
461
  Notes => q{
459
462
  PreviewImageLength for the SD1 and Merrill/Quattro models, and
460
463
  MakerNoteVersion for others
@@ -473,7 +476,7 @@ $VERSION = '1.28';
473
476
  # 0x001e - int16u: 0, 4, 13 - flash mode for other models?
474
477
  0x001e => { #PH
475
478
  Name => 'PreviewImageSize',
476
- Condition => '$$self{MakerNoteSigma3}',
479
+ Condition => '$$self{MakerNoteSigmaVer} >= 3',
477
480
  Notes => 'only valid for some models',
478
481
  Writable => 'int16u',
479
482
  Count => 2,
@@ -483,7 +486,7 @@ $VERSION = '1.28';
483
486
  0x001f => [ #PH
484
487
  {
485
488
  Name => 'AFPoint', # (NC -- invalid for SD9,SD14?)
486
- Condition => 'not $$self{MakerNoteSigma3}',
489
+ Condition => '$$self{MakerNoteSigmaVer} < 3',
487
490
  Notes => q{
488
491
  MakerNoteVersion for the SD1 and Merrill/Quattro models, and AFPoint for
489
492
  others
@@ -498,38 +501,48 @@ $VERSION = '1.28';
498
501
  # 0x0021 - string: " " for most models, or int8u[2]: '3 3' for the DP3 Merrill
499
502
  0x0022 => { #PH (NC)
500
503
  Name => 'FileFormat',
501
- Condition => 'not $$self{MakerNoteSigma3}',
504
+ Condition => '$$self{MakerNoteSigmaVer} < 3',
502
505
  Notes => 'models other than the SD1 and Merrill/Quattro models',
503
506
  # values: "JPG", "JPG-S", "JPG-P", "X3F", "X3F-S"
504
507
  },
505
508
  # 0x0023 - string: "", 10, 83, 131, 145, 150, 152, 169
506
509
  0x0024 => { # (invalid for SD9,SD14?)
507
510
  Name => 'Calibration',
508
- Condition => 'not $$self{MakerNoteSigma3}',
511
+ Condition => '$$self{MakerNoteSigmaVer} < 3',
509
512
  Notes => 'models other than the SD1 and Merrill/Quattro models',
510
513
  },
511
514
  # 0x0025 - string: "", "0.70", "0.90"
512
515
  # 0x0026-2b - int32u: 0
513
516
  0x0026 => { #PH (NC)
514
517
  Name => 'FileFormat',
515
- Condition => '$$self{MakerNoteSigma3}',
516
- Notes => 'SD1 and Merrill/Quattro models only',
518
+ Condition => '$$self{MakerNoteSigmaVer} >= 3',
519
+ Notes => 'some newer models only',
520
+ # (also Sigma fp)
517
521
  },
518
- 0x0027 => { #PH
522
+ 0x0027 => [{ #PH
519
523
  Name => 'LensType',
520
- Condition => '$$self{MakerNoteSigma3}',
521
- Notes => 'SD1 and Merrill/Quattro models only',
524
+ Condition => '$$self{MakerNoteSigmaVer} >= 3 and $format eq "string"',
525
+ Notes => 'some newer models only',
526
+
522
527
  ValueConv => '$val =~ /^[0-9a-f]+$/i ? hex($val) : $val',
523
528
  # (truncate decimal part and convert hex)
524
529
  ValueConvInv => '$val=~s/\.\d+$//;$val=~/^0x/ and $val=hex($val);IsInt($val) ? sprintf("%x",$val) : $val',
525
530
  SeparateTable => 'LensType',
526
531
  PrintHex => 1,
527
532
  PrintConv => \%sigmaLensTypes,
528
- },
533
+ },{ #PH
534
+ Name => 'LensType',
535
+ Condition => '$$self{MakerNoteSigmaVer} >= 3',
536
+ Notes => 'some other models like the fp',
537
+ Writable => 'int16u',
538
+ SeparateTable => 'LensType',
539
+ PrintHex => 1,
540
+ PrintConv => \%sigmaLensTypes,
541
+ }],
529
542
  0x002a => { #PH
530
543
  Name => 'LensFocalRange',
531
- Condition => '$$self{MakerNoteSigma3}',
532
- Notes => 'SD1 and Merrill/Quattro models only',
544
+ Condition => '$$self{MakerNoteSigmaVer} >= 3',
545
+ Notes => 'some newer models only',
533
546
  Writable => 'rational64u',
534
547
  Count => 2,
535
548
  PrintConv => '$val=~s/ / to /; $val',
@@ -539,13 +552,14 @@ $VERSION = '1.28';
539
552
  Name => 'LensMaxApertureRange',
540
553
  # for most models this gives the max aperture at the long/short focal lengths,
541
554
  # but for some models this gives the min/max aperture
542
- Condition => '$$self{MakerNoteSigma3}',
543
- Notes => 'SD1 and Merrill/Quattro models only',
555
+ Condition => '$$self{MakerNoteSigmaVer} >= 3',
556
+ Notes => 'some newer models only',
544
557
  Writable => 'rational64u',
545
558
  Count => 2,
546
559
  PrintConv => '$val=~s/ / to /; $val',
547
560
  PrintConvInv => '$val=~s/to /; $val',
548
561
  },
562
+ # 0x002c is rational64u for some models, with a value that may be related to FNumber - PH
549
563
  0x002c => { #PH
550
564
  Name => 'ColorMode',
551
565
  Condition => '$format eq "int32u"',
@@ -570,7 +584,7 @@ $VERSION = '1.28';
570
584
  0x0030 => [ #PH
571
585
  {
572
586
  Name => 'LensApertureRange',
573
- Condition => 'not $$self{MakerNoteSigma3}',
587
+ Condition => '$$self{MakerNoteSigmaVer} < 3',
574
588
  Notes => q{
575
589
  Calibration for the SD1 and Merrill/Quattro models, and LensApertureRange
576
590
  for others. Note that LensApertureRange changes with focal length, and some
@@ -582,7 +596,7 @@ $VERSION = '1.28';
582
596
  ],
583
597
  0x0031 => { #PH
584
598
  Name => 'FNumber',
585
- Condition => 'not $$self{MakerNoteSigma3}',
599
+ Condition => '$$self{MakerNoteSigmaVer} < 3',
586
600
  Notes => 'models other than the SD1 and Merrill/Quattro models',
587
601
  Writable => 'rational64u',
588
602
  PrintConv => 'sprintf("%.1f",$val)',
@@ -591,7 +605,7 @@ $VERSION = '1.28';
591
605
  },
592
606
  0x0032 => { #PH
593
607
  Name => 'ExposureTime',
594
- Condition => 'not $$self{MakerNoteSigma3}',
608
+ Condition => '$$self{MakerNoteSigmaVer} < 3',
595
609
  Notes => 'models other than the SD1 and Merrill/Quattro models',
596
610
  Writable => 'rational64u',
597
611
  PrintConv => 'Image::ExifTool::Exif::PrintExposureTime($val)',
@@ -600,9 +614,8 @@ $VERSION = '1.28';
600
614
  },
601
615
  0x0033 => { #PH
602
616
  Name => 'ExposureTime2',
603
- Condition => '$$self{Model} !~ / (SD1|SD9|SD15|Merrill|Quattro)$/',
617
+ Condition => '$$self{Model} !~ / (SD1|SD9|SD15|Merrill|Quattro|fp)$/',
604
618
  Notes => 'models other than the SD1, SD9, SD15 and Merrill/Quattro models',
605
- Writable => 'string',
606
619
  ValueConv => '$val * 1e-6',
607
620
  ValueConvInv => 'int($val * 1e6 + 0.5)',
608
621
  PrintConv => 'Image::ExifTool::Exif::PrintExposureTime($val)',
@@ -610,14 +623,14 @@ $VERSION = '1.28';
610
623
  },
611
624
  0x0034 => { #PH
612
625
  Name => 'BurstShot',
613
- Condition => 'not $$self{MakerNoteSigma3}',
626
+ Condition => '$$self{MakerNoteSigmaVer} < 3',
614
627
  Notes => 'models other than the SD1 and Merrill/Quattro models',
615
628
  Writable => 'int32u',
616
629
  },
617
630
  # 0x0034 - int32u: 0,1,2,3 or 4
618
631
  0x0035 => { #PH
619
632
  Name => 'ExposureCompensation',
620
- Condition => 'not $$self{MakerNoteSigma3}',
633
+ Condition => '$$self{MakerNoteSigmaVer} < 3',
621
634
  Notes => 'models other than the SD1 and Merrill/Quattro models',
622
635
  Writable => 'rational64s',
623
636
  # add a '+' sign to positive values
@@ -628,7 +641,7 @@ $VERSION = '1.28';
628
641
  # 0x0037-38 - string: ""
629
642
  0x0039 => { #PH (invalid for SD9, SD14?)
630
643
  Name => 'SensorTemperature',
631
- Condition => 'not $$self{MakerNoteSigma3}',
644
+ Condition => '$$self{MakerNoteSigmaVer} < 3',
632
645
  Notes => 'models other than the SD1 and Merrill/Quattro models',
633
646
  # (string format)
634
647
  PrintConv => 'IsInt($val) ? "$val C" : $val',
@@ -636,19 +649,19 @@ $VERSION = '1.28';
636
649
  },
637
650
  0x003a => { #PH
638
651
  Name => 'FlashExposureComp',
639
- Condition => 'not $$self{MakerNoteSigma3}',
652
+ Condition => '$$self{MakerNoteSigmaVer} < 3',
640
653
  Notes => 'models other than the SD1 and Merrill/Quattro models',
641
654
  Writable => 'rational64s',
642
655
  },
643
656
  0x003b => { #PH (how is this different from other Firmware?)
644
657
  Name => 'Firmware',
645
- Condition => 'not $$self{MakerNoteSigma3}',
658
+ Condition => '$$self{MakerNoteSigmaVer} < 3',
646
659
  Notes => 'models other than the SD1 and Merrill/Quattro models',
647
660
  Priority => 0,
648
661
  },
649
662
  0x003c => { #PH
650
663
  Name => 'WhiteBalance',
651
- Condition => 'not $$self{MakerNoteSigma3}',
664
+ Condition => '$$self{MakerNoteSigmaVer} < 3',
652
665
  Notes => 'models other than the SD1 and Merrill/Quattro models',
653
666
  Priority => 0,
654
667
  },
@@ -658,13 +671,13 @@ $VERSION = '1.28';
658
671
  },
659
672
  0x0048 => { #PH
660
673
  Name => 'LensApertureRange',
661
- Condition => '$$self{MakerNoteSigma3}',
662
- Notes => 'SD1 and Merrill/Quattro models only',
674
+ Condition => '$$self{MakerNoteSigmaVer} >= 3',
675
+ Notes => 'some newer models only',
663
676
  },
664
677
  0x0049 => { #PH
665
678
  Name => 'FNumber',
666
- Condition => '$$self{MakerNoteSigma3}',
667
- Notes => 'SD1 and Merrill/Quattro models only',
679
+ Condition => '$$self{MakerNoteSigmaVer} >= 3',
680
+ Notes => 'some newer models only',
668
681
  Writable => 'rational64u',
669
682
  PrintConv => 'sprintf("%.1f",$val)',
670
683
  PrintConvInv => '$val',
@@ -672,8 +685,8 @@ $VERSION = '1.28';
672
685
  },
673
686
  0x004a => { #PH
674
687
  Name => 'ExposureTime',
675
- Condition => '$$self{MakerNoteSigma3}',
676
- Notes => 'SD1 and Merrill/Quattro models only',
688
+ Condition => '$$self{MakerNoteSigmaVer} >= 3',
689
+ Notes => 'some newer models only',
677
690
  Writable => 'rational64u',
678
691
  PrintConv => 'Image::ExifTool::Exif::PrintExposureTime($val)',
679
692
  PrintConvInv => '$val',
@@ -682,15 +695,13 @@ $VERSION = '1.28';
682
695
  0x004b => [{ #PH
683
696
  Name => 'ExposureTime2',
684
697
  Condition => '$$self{Model} =~ /^SIGMA (SD1( Merrill)?|DP\d Merrill)$/',
685
- Notes => 'SD1 and Merrill/Quattro models only',
686
- Writable => 'string',
698
+ Notes => 'SD1 and DP Merrill models only',
687
699
  PrintConv => 'Image::ExifTool::Exif::PrintExposureTime($val)',
688
700
  PrintConvInv => 'Image::ExifTool::Exif::ConvertFraction($val)',
689
- },{
701
+ },{ #PH
690
702
  Name => 'ExposureTime2',
691
703
  Condition => '$$self{Model} =~ /^SIGMA dp\d Quattro$/i',
692
- Notes => 'SD1 and Merrill/Quattro models only',
693
- Writable => 'string',
704
+ Notes => 'DP Quattro models only',
694
705
  ValueConv => '$val / 1000000',
695
706
  ValueConvInv => '$val * 1000000',
696
707
  PrintConv => 'Image::ExifTool::Exif::PrintExposureTime($val)',
@@ -698,8 +709,8 @@ $VERSION = '1.28';
698
709
  }],
699
710
  0x004d => { #PH
700
711
  Name => 'ExposureCompensation',
701
- Condition => '$$self{MakerNoteSigma3}',
702
- Notes => 'SD1 and Merrill/Quattro models only',
712
+ Condition => '$$self{MakerNoteSigmaVer} >= 3',
713
+ Notes => 'some newer models only',
703
714
  Writable => 'rational64s',
704
715
  # add a '+' sign to positive values
705
716
  PrintConv => '$val and $val =~ s/^(\d)/\+$1/; $val',
@@ -708,43 +719,49 @@ $VERSION = '1.28';
708
719
  # 0x0054 - string: "F20","F23"
709
720
  0x0055 => { #PH
710
721
  Name => 'SensorTemperature',
711
- Condition => '$$self{MakerNoteSigma3}',
712
- Notes => 'SD1 and Merrill/Quattro models only',
722
+ Condition => '$$self{MakerNoteSigmaVer} >= 3',
723
+ Notes => 'some newer models only',
713
724
  # (string format)
714
725
  PrintConv => 'IsInt($val) ? "$val C" : $val',
715
726
  PrintConvInv => '$val=~s/ ?C$//; $val',
716
727
  },
717
728
  0x0056 => { #PH (NC)
718
729
  Name => 'FlashExposureComp',
719
- Condition => '$$self{MakerNoteSigma3}',
720
- Notes => 'SD1 and Merrill/Quattro models only',
730
+ Condition => '$$self{MakerNoteSigmaVer} >= 3',
731
+ Notes => 'some newer models only',
721
732
  Writable => 'rational64s',
722
733
  },
723
734
  0x0057 => { #PH (how is this different from other Firmware?)
724
- Name => 'Firmware',
725
- Condition => '$$self{MakerNoteSigma3}',
726
- Notes => 'SD1 and Merrill/Quattro models only',
735
+ Name => 'Firmware2',
736
+ Condition => '$format eq "string"',
737
+ Notes => 'some newer models only',
727
738
  Priority => 0,
728
739
  },
729
740
  0x0058 => { #PH
730
741
  Name => 'WhiteBalance',
731
- Condition => '$$self{MakerNoteSigma3}',
732
- Notes => 'SD1 and Merrill/Quattro models only',
742
+ Condition => '$$self{MakerNoteSigmaVer} >= 3',
743
+ Notes => 'some newer models only',
733
744
  Priority => 0,
734
745
  },
735
746
  0x0059 => { #PH
736
747
  Name => 'DigitalFilter',
737
- Condition => '$$self{MakerNoteSigma3}',
738
- Notes => 'SD1 and Merrill/Quattro models only',
739
- # seen: Standard, Landscape,Monochrome,Neutral,Portrait,Sepia,Vivid
748
+ Condition => '$$self{MakerNoteSigmaVer} >= 3',
749
+ Notes => 'some newer models only',
750
+ # seen: Standard,Landscape,Monochrome,Neutral,Portrait,Sepia,Vivid
740
751
  },
741
752
  # 0x005a/b/c - rational64s: 0/10 for the SD1
742
- 0x0084 => { #PH
753
+ 0x0084 => { #PH (Quattro models and fp)
743
754
  Name => 'Model',
744
755
  Description => 'Camera Model Name',
745
- Writable => 'string',
746
756
  },
747
757
  # 0x0085
758
+ 0x0086 => { #PH (Quattro models)
759
+ Name => 'ISO',
760
+ Writable => 'int16u',
761
+ },
762
+ 0x0087 => 'ResolutionMode', #PH (Quattro models)
763
+ 0x0088 => 'WhiteBalance', #PH (Quattro models)
764
+ 0x008c => 'Firmware', #PH (Quattro models)
748
765
  );
749
766
 
750
767
  1; # end
@@ -976,7 +976,7 @@ my %tagLookup = (
976
976
  'audiochannelcount' => { 468 => 'audioChannelCount' },
977
977
  'audiochannels' => { 64 => 0x70 },
978
978
  'audiochanneltype' => { 482 => 'audioChannelType' },
979
- 'audiocompression' => { 148 => 'Compression' },
979
+ 'audiocompression' => { 80 => 0x816, 148 => 'Compression' },
980
980
  'audiocompressor' => { 482 => 'audioCompressor' },
981
981
  'audiodata' => { 438 => 'Data' },
982
982
  'audioduration' => { 127 => 0x99 },
@@ -2449,7 +2449,8 @@ my %tagLookup = (
2449
2449
  'finishnoise' => { 133 => 0xdba },
2450
2450
  'finishresolution' => { 133 => 0xdb9 },
2451
2451
  'finishsharpening' => { 133 => 0xdbb },
2452
- 'firmware' => { 285 => 0x405, 380 => [0x17,0x3b,0x57], 453 => 'Firmware' },
2452
+ 'firmware' => { 285 => 0x405, 380 => [0x8c,0x17,0x3b], 453 => 'Firmware' },
2453
+ 'firmware2' => { 380 => 0x57 },
2453
2454
  'firmwaredate' => { 108 => 0x15, 109 => 0x2001, 364 => 0x4, 366 => 0x30 },
2454
2455
  'firmwareid' => { 180 => 0x0 },
2455
2456
  'firmwarename' => { 377 => 0xa001 },
@@ -3011,6 +3012,26 @@ my %tagLookup = (
3011
3012
  'imagerboardversion' => { 133 => 0x439 },
3012
3013
  'imagercols' => { 133 => 0x17d4 },
3013
3014
  'imageref' => { 466 => 'ImageRef' },
3015
+ 'imageregion' => { 468 => 'ImageRegion' },
3016
+ 'imageregionboundary' => { 468 => [\'ImageRegion','ImageRegionRegionBoundary'] },
3017
+ 'imageregionboundaryh' => { 468 => [\'ImageRegion','ImageRegionRegionBoundaryRbH'] },
3018
+ 'imageregionboundaryrx' => { 468 => [\'ImageRegion','ImageRegionRegionBoundaryRbRx'] },
3019
+ 'imageregionboundaryshape' => { 468 => [\'ImageRegion','ImageRegionRegionBoundaryRbShape'] },
3020
+ 'imageregionboundaryunit' => { 468 => [\'ImageRegion','ImageRegionRegionBoundaryRbUnit'] },
3021
+ 'imageregionboundaryvertices' => { 468 => [\'ImageRegion','ImageRegionRegionBoundaryRbVertices'] },
3022
+ 'imageregionboundaryverticesx' => { 468 => [\'ImageRegion','ImageRegionRegionBoundaryRbVerticesRbX'] },
3023
+ 'imageregionboundaryverticesy' => { 468 => [\'ImageRegion','ImageRegionRegionBoundaryRbVerticesRbY'] },
3024
+ 'imageregionboundaryw' => { 468 => [\'ImageRegion','ImageRegionRegionBoundaryRbW'] },
3025
+ 'imageregionboundaryx' => { 468 => [\'ImageRegion','ImageRegionRegionBoundaryRbX'] },
3026
+ 'imageregionboundaryy' => { 468 => [\'ImageRegion','ImageRegionRegionBoundaryRbY'] },
3027
+ 'imageregionctype' => { 468 => [\'ImageRegion','ImageRegionRCtype'] },
3028
+ 'imageregionctypeidentifier' => { 468 => [\'ImageRegion','ImageRegionRCtypeIdentifier'] },
3029
+ 'imageregionctypename' => { 468 => [\'ImageRegion','ImageRegionRCtypeName'] },
3030
+ 'imageregionid' => { 468 => [\'ImageRegion','ImageRegionRId'] },
3031
+ 'imageregionname' => { 468 => [\'ImageRegion','ImageRegionName'] },
3032
+ 'imageregionrole' => { 468 => [\'ImageRegion','ImageRegionRRole'] },
3033
+ 'imageregionroleidentifier' => { 468 => [\'ImageRegion','ImageRegionRRoleIdentifier'] },
3034
+ 'imageregionrolename' => { 468 => [\'ImageRegion','ImageRegionRRoleName'] },
3014
3035
  'imageresolution' => { 133 => 0x944 },
3015
3036
  'imageresolutionjpg' => { 133 => 0x945 },
3016
3037
  'imagereview' => { 265 => '0.4', 274 => '0.4' },
@@ -3139,7 +3160,7 @@ my %tagLookup = (
3139
3160
  'iscustompicturestyle' => { 105 => 0x3 },
3140
3161
  'ismergedhdr' => { 453 => 'IsMergedHDR' },
3141
3162
  'ismergedpanorama' => { 453 => 'IsMergedPanorama' },
3142
- 'iso' => { 7 => 0x6, 9 => 0x6, 10 => 0x75, 11 => 0x6, 12 => 0x79, 13 => 0x6, 14 => 0x6, 15 => 0x6, 16 => 0x6, 17 => 0x6, 18 => 0x6, 19 => 0x6, 20 => 0x6, 21 => 0x6, 22 => 0x6, 23 => 0x6, 24 => 0x6, 25 => 0x6, 26 => 0x6, 27 => 0x6, 28 => 0x6, 29 => 0x6, 30 => 0x0, 31 => 0x1, 108 => 0x14, 109 => [0x3014,0x14], 115 => 0x8827, 132 => 0xfd06, 133 => 0x1784, 135 => 0x60, 137 => [0xfa2e,0xfa46], 138 => [0x27,0x28], 139 => 0xf105, 142 => 0x14, 144 => 0x4e, 147 => 0x34, 149 => 'ISO', 173 => 0x8, 179 => 0x49ba, 207 => 0x0, 216 => 0x2, 303 => 0xd1, 308 => 0x17, 338 => [0x8b,0x14], 345 => 0x14, 347 => 0x105, 377 => 0xa014, 399 => 0x6f, 406 => [0x1f,0x21,0x25], 462 => 'ISOSpeedRatings' },
3163
+ 'iso' => { 7 => 0x6, 9 => 0x6, 10 => 0x75, 11 => 0x6, 12 => 0x79, 13 => 0x6, 14 => 0x6, 15 => 0x6, 16 => 0x6, 17 => 0x6, 18 => 0x6, 19 => 0x6, 20 => 0x6, 21 => 0x6, 22 => 0x6, 23 => 0x6, 24 => 0x6, 25 => 0x6, 26 => 0x6, 27 => 0x6, 28 => 0x6, 29 => 0x6, 30 => 0x0, 31 => 0x1, 108 => 0x14, 109 => [0x3014,0x14], 115 => 0x8827, 132 => 0xfd06, 133 => 0x1784, 135 => 0x60, 137 => [0xfa2e,0xfa46], 138 => [0x27,0x28], 139 => 0xf105, 142 => 0x14, 144 => 0x4e, 147 => 0x34, 149 => 'ISO', 173 => 0x8, 179 => 0x49ba, 207 => 0x0, 216 => 0x2, 303 => 0xd1, 308 => 0x17, 338 => [0x8b,0x14], 345 => 0x14, 347 => 0x105, 377 => 0xa014, 380 => 0x86, 399 => 0x6f, 406 => [0x1f,0x21,0x25], 462 => 'ISOSpeedRatings' },
3143
3164
  'iso2' => { 207 => 0x6, 226 => 0x265, 227 => 0x25c, 228 => 0x265, 229 => 0x221, 230 => 0x25d, 231 => 0x256, 232 => 0x25d, 236 => 0x2b5, 239 => 0x265, 245 => 0x2b5 },
3144
3165
  'isoauto' => { 319 => '14.4' },
3145
3166
  'isoautohilimit' => { 234 => 0x18eb, 235 => 0xe82, 243 => 0x185d },
@@ -3599,7 +3620,6 @@ my %tagLookup = (
3599
3620
  'makernotesanyoc4' => { 113 => 'MakN', 115 => 0x927c },
3600
3621
  'makernotesanyopatch' => { 113 => 'MakN', 115 => 0x927c },
3601
3622
  'makernotesigma' => { 113 => 'MakN', 115 => 0x927c },
3602
- 'makernotesigma3' => { 113 => 'MakN', 115 => 0x927c },
3603
3623
  'makernotesony' => { 113 => 'MakN', 115 => 0x927c },
3604
3624
  'makernotesony2' => { 113 => 'MakN', 115 => 0x927c },
3605
3625
  'makernotesony3' => { 113 => 'MakN', 115 => 0x927c },
@@ -4204,6 +4224,7 @@ my %tagLookup = (
4204
4224
  'panoramicstitchtheta1' => { 169 => 'PanoramicStitchTheta1', 170 => 0x4 },
4205
4225
  'panoramicstitchversion' => { 170 => 0x0 },
4206
4226
  'pantry' => { 483 => 'Pantry' },
4227
+ 'pantryinstanceid' => { 483 => [\'Pantry','PantryInstanceID'] },
4207
4228
  'parallax' => { 123 => 0xb211, 279 => 0x28 },
4208
4229
  'parametricdarks' => { 456 => 'ParametricDarks', 458 => 'ParametricDarks' },
4209
4230
  'parametrichighlights' => { 456 => 'ParametricHighlights', 458 => 'ParametricHighlights' },
@@ -4587,7 +4608,7 @@ my %tagLookup = (
4587
4608
  'rasterizedcaption' => { 127 => 0x7d },
4588
4609
  'rating' => { 115 => 0x4746, 123 => 0x1431, 349 => 0xdf, 355 => 'rtng', 401 => 0x2002, 451 => 'rating', 460 => 'rating', 468 => 'Rating', 472 => 'rating', 480 => 'Rating' },
4589
4610
  'ratingpercent' => { 115 => 0x4749, 171 => 'Rating', 355 => 'rate' },
4590
- 'ratingratingregion' => { 468 => [\'Rating','RatingRatingRegion'] },
4611
+ 'ratingregion' => { 468 => [\'Rating','RatingRatingRegion'] },
4591
4612
  'ratingregioncity' => { 468 => [\'Rating','RatingRatingRegionCity'] },
4592
4613
  'ratingregioncountrycode' => { 468 => [\'Rating','RatingRatingRegionCountryCode'] },
4593
4614
  'ratingregioncountryname' => { 468 => [\'Rating','RatingRatingRegionCountryName'] },
@@ -4841,7 +4862,7 @@ my %tagLookup = (
4841
4862
  'resaved' => { 379 => 0x21e },
4842
4863
  'resetblacksegrows' => { 133 => 0x181a },
4843
4864
  'resolution' => { 155 => 'Resolution' },
4844
- 'resolutionmode' => { 380 => 0x4 },
4865
+ 'resolutionmode' => { 380 => [0x87,0x4] },
4845
4866
  'resolutionunit' => { 115 => 0x128, 130 => 0x2, 478 => 'ResolutionUnit' },
4846
4867
  'resourceid' => { 114 => [\'ResourceRelationship','ResourceRelationshipResourceID'] },
4847
4868
  'resourcerelationship' => { 114 => 'ResourceRelationship' },
@@ -5993,7 +6014,7 @@ my %tagLookup = (
5993
6014
  'wbtype7' => { 309 => 0x13, 310 => 0x19 },
5994
6015
  'webstatement' => { 486 => 'WebStatement' },
5995
6016
  'what' => { 456 => 'What', 458 => 'What' },
5996
- 'whitebalance' => { 7 => 0x6f, 8 => [0x44,0x4a], 9 => 0xbc, 10 => 0x36, 11 => 0x5e, 12 => 0x36, 13 => 0x78, 14 => 0x6f, 15 => 0x6f, 16 => 0x73, 17 => 0x6f, 18 => 0x78, 19 => 0x54, 20 => 0x6f, 21 => 0xbc, 22 => 0x7b, 24 => 0xbc, 25 => 0xc2, 27 => 0x131, 28 => 0x77, 71 => 0x8, 74 => 0x7, 108 => 0x7, 109 => [0x19,0x2012], 115 => [0xa403,0xfe4e], 123 => 0x1002, 133 => 0x3fc, 134 => 0xfa0d, 135 => 0x40, 173 => 0x3, 174 => 0xe, 175 => 0x4, 176 => 0xb, 178 => 0x115, 216 => 0x5, 246 => 0x7, 298 => 0x304, 303 => 0x3, 305 => 0x3033, 338 => 0x19, 345 => 0x7, 369 => 0x26, 370 => 0x1003, 380 => [0x3c,0x7,0x58], 388 => 0xf, 389 => 0xe, 401 => [0x115,0xb054], 456 => 'WhiteBalance', 458 => 'WhiteBalance', 462 => 'WhiteBalance' },
6017
+ 'whitebalance' => { 7 => 0x6f, 8 => [0x44,0x4a], 9 => 0xbc, 10 => 0x36, 11 => 0x5e, 12 => 0x36, 13 => 0x78, 14 => 0x6f, 15 => 0x6f, 16 => 0x73, 17 => 0x6f, 18 => 0x78, 19 => 0x54, 20 => 0x6f, 21 => 0xbc, 22 => 0x7b, 24 => 0xbc, 25 => 0xc2, 27 => 0x131, 28 => 0x77, 71 => 0x8, 74 => 0x7, 108 => 0x7, 109 => [0x19,0x2012], 115 => [0xa403,0xfe4e], 123 => 0x1002, 133 => 0x3fc, 134 => 0xfa0d, 135 => 0x40, 173 => 0x3, 174 => 0xe, 175 => 0x4, 176 => 0xb, 178 => 0x115, 216 => 0x5, 246 => 0x7, 298 => 0x304, 303 => 0x3, 305 => 0x3033, 338 => 0x19, 345 => 0x7, 369 => 0x26, 370 => 0x1003, 380 => [0x88,0x3c,0x7,0x58], 388 => 0xf, 389 => 0xe, 401 => [0x115,0xb054], 456 => 'WhiteBalance', 458 => 'WhiteBalance', 462 => 'WhiteBalance' },
5997
6018
  'whitebalance0' => { 169 => 'WhiteBalance0' },
5998
6019
  'whitebalance1' => { 169 => 'WhiteBalance1' },
5999
6020
  'whitebalance2' => { 169 => 'WhiteBalance2', 280 => 0x500 },
@@ -6084,6 +6105,7 @@ my %tagExists = (
6084
6105
  'abstract' => 1,
6085
6106
  'abstractfilename' => 1,
6086
6107
  'acceldata' => 1,
6108
+ 'accelerometerdata' => 1,
6087
6109
  'accelerometertime' => 1,
6088
6110
  'accessdate' => 1,
6089
6111
  'accountname' => 1,
@@ -6170,6 +6192,7 @@ my %tagExists = (
6170
6192
  'ainumlayers' => 1,
6171
6193
  'aipdfprivatedata' => 1,
6172
6194
  'aiprivatedata' => 1,
6195
+ 'airspeed' => 1,
6173
6196
  'airulerunits' => 1,
6174
6197
  'aitargetresolution' => 1,
6175
6198
  'album2' => 1,
@@ -6204,6 +6227,7 @@ my %tagExists = (
6204
6227
  'alternateduotonecolors' => 1,
6205
6228
  'alternatesourceurl' => 1,
6206
6229
  'alternatespotcolors' => 1,
6230
+ 'altitudefromtakeoff' => 1,
6207
6231
  'ambienceinfo' => 1,
6208
6232
  'angleaxis' => 1,
6209
6233
  'angularvelocity' => 1,
@@ -6350,6 +6374,8 @@ my %tagExists = (
6350
6374
  'authorurl' => 1,
6351
6375
  'autoisomin' => 1,
6352
6376
  'autolowlightduration' => 1,
6377
+ 'automationanimation' => 1,
6378
+ 'automationflags' => 1,
6353
6379
  'autorotation' => 1,
6354
6380
  'autosavefilepath' => 1,
6355
6381
  'autosaveformat' => 1,
@@ -6419,6 +6445,7 @@ my %tagExists = (
6419
6445
  'billinginformation' => 1,
6420
6446
  'binaryfilter' => 1,
6421
6447
  'binaryxml' => 1,
6448
+ 'binning' => 1,
6422
6449
  'birthday' => 1,
6423
6450
  'bitdepthchroma' => 1,
6424
6451
  'bitdepthluma' => 1,
@@ -6530,6 +6557,7 @@ my %tagExists = (
6530
6557
  'bwfversion' => 1,
6531
6558
  'bytelength' => 1,
6532
6559
  'byteorder' => 1,
6560
+ 'byteordermark' => 1,
6533
6561
  'bytes' => 1,
6534
6562
  'bytesperline' => 1,
6535
6563
  'bytesperminute' => 1,
@@ -6566,6 +6594,7 @@ my %tagExists = (
6566
6594
  'cameraobjtype' => 1,
6567
6595
  'cameraobjversion' => 1,
6568
6596
  'cameraoperator' => 1,
6597
+ 'camerapan' => 1,
6569
6598
  'camerapartnumber' => 1,
6570
6599
  'cameraprofileversion' => 1,
6571
6600
  'camerascalemax' => 1,
@@ -6585,6 +6614,7 @@ my %tagExists = (
6585
6614
  'cameratemperatureminclip' => 1,
6586
6615
  'cameratemperatureminsaturated' => 1,
6587
6616
  'cameratemperatureminwarn' => 1,
6617
+ 'cameratilt' => 1,
6588
6618
  'camm0' => 1,
6589
6619
  'camm1' => 1,
6590
6620
  'camm2' => 1,
@@ -6674,6 +6704,7 @@ my %tagExists = (
6674
6704
  'capturexresolutionunit' => 1,
6675
6705
  'captureyresolution' => 1,
6676
6706
  'captureyresolutionunit' => 1,
6707
+ 'car' => 1,
6677
6708
  'carphone' => 1,
6678
6709
  'casio' => 1,
6679
6710
  'casiodata' => 1,
@@ -7270,6 +7301,8 @@ my %tagExists = (
7270
7301
  'displayyresolutionunit' => 1,
7271
7302
  'dispose' => 1,
7272
7303
  'disposition' => 1,
7304
+ 'distance' => 1,
7305
+ 'distancefromhome' => 1,
7273
7306
  'distortinfo' => 1,
7274
7307
  'distortioninfo' => 1,
7275
7308
  'distortionversion' => 1,
@@ -7344,6 +7377,10 @@ my %tagExists = (
7344
7377
  'drmkeyid' => 1,
7345
7378
  'drmserverid' => 1,
7346
7379
  'drone-dji' => 1,
7380
+ 'dronepitch' => 1,
7381
+ 'dronequaternion' => 1,
7382
+ 'droneroll' => 1,
7383
+ 'droneyaw' => 1,
7347
7384
  'dropbykeyword' => 1,
7348
7385
  'dropchunks' => 1,
7349
7386
  'dtcpiphost' => 1,
@@ -7706,6 +7743,7 @@ my %tagExists = (
7706
7743
  'fluormat8' => 1,
7707
7744
  'fluormat9' => 1,
7708
7745
  'flushtiming' => 1,
7746
+ 'flyingstate' => 1,
7709
7747
  'focalinfo' => 1,
7710
7748
  'focallength35efl' => 1,
7711
7749
  'focallength35mm' => 1,
@@ -7719,6 +7757,8 @@ my %tagExists = (
7719
7757
  'focussettings' => 1,
7720
7758
  'folder' => 1,
7721
7759
  'folderpath' => 1,
7760
+ 'follow-meanimation' => 1,
7761
+ 'follow-memode' => 1,
7722
7762
  'font' => 1,
7723
7763
  'fontsize' => 1,
7724
7764
  'fontsubfamily' => 1,
@@ -7753,6 +7793,7 @@ my %tagExists = (
7753
7793
  'fragmentlist' => 1,
7754
7794
  'fragmenttable' => 1,
7755
7795
  'frame' => 1,
7796
+ 'framebaseview' => 1,
7756
7797
  'frameexposuretime' => 1,
7757
7798
  'frameid' => 1,
7758
7799
  'frameinfo' => 1,
@@ -7761,6 +7802,7 @@ my %tagExists = (
7761
7802
  'framesizemax' => 1,
7762
7803
  'framesizemin' => 1,
7763
7804
  'framespersecond' => 1,
7805
+ 'frameview' => 1,
7764
7806
  'free' => 1,
7765
7807
  'free-busystatus' => 1,
7766
7808
  'freebytecounts' => 1,
@@ -7858,6 +7900,10 @@ my %tagExists = (
7858
7900
  'gpsaltituderaw' => 1,
7859
7901
  'gpsdatalist' => 1,
7860
7902
  'gpsdatetimeraw' => 1,
7903
+ 'gpsdestaltitude' => 1,
7904
+ 'gpsframingaltitude' => 1,
7905
+ 'gpsframinglatitude' => 1,
7906
+ 'gpsframinglongitude' => 1,
7861
7907
  'gpshorizontalaccuracy' => 1,
7862
7908
  'gpsinfo' => 1,
7863
7909
  'gpslatituderaw' => 1,
@@ -7872,8 +7918,12 @@ my %tagExists = (
7872
7918
  'gpsspeedx' => 1,
7873
7919
  'gpsspeedy' => 1,
7874
7920
  'gpsspeedz' => 1,
7921
+ 'gpstargetaltitude' => 1,
7922
+ 'gpstargetlatitude' => 1,
7923
+ 'gpstargetlongitude' => 1,
7875
7924
  'gpstrackraw' => 1,
7876
7925
  'gpsvalid' => 1,
7926
+ 'gpsvelocitydown' => 1,
7877
7927
  'gpsvelocityeast' => 1,
7878
7928
  'gpsvelocitynorth' => 1,
7879
7929
  'gpsvelocityup' => 1,
@@ -7898,6 +7948,7 @@ my %tagExists = (
7898
7948
  'group' => 1,
7899
7949
  'groupcaption' => 1,
7900
7950
  'groupmutualexclusion' => 1,
7951
+ 'groups' => 1,
7901
7952
  'gsensor' => 1,
7902
7953
  'gspherical' => 1,
7903
7954
  'gtcitation' => 1,
@@ -8434,11 +8485,14 @@ my %tagExists = (
8434
8485
  'linearizationcoefficients1' => 1,
8435
8486
  'linearizationcoefficients2' => 1,
8436
8487
  'linearized' => 1,
8488
+ 'linecount' => 1,
8437
8489
  'lineorder' => 1,
8438
8490
  'lines' => 1,
8439
8491
  'linkedprofilename' => 1,
8440
8492
  'linkerversion' => 1,
8493
+ 'linkgoodput' => 1,
8441
8494
  'linkinfo' => 1,
8495
+ 'linkquality' => 1,
8442
8496
  'linkstatus' => 1,
8443
8497
  'linksuptodate' => 1,
8444
8498
  'linktarget' => 1,
@@ -8754,6 +8808,7 @@ my %tagExists = (
8754
8808
  'meterinfo' => 1,
8755
8809
  'meterlink' => 1,
8756
8810
  'metermode' => 1,
8811
+ 'mett' => 1,
8757
8812
  'microsoft' => 1,
8758
8813
  'microsoftxtra' => 1,
8759
8814
  'middlename' => 1,
@@ -8762,6 +8817,7 @@ my %tagExists = (
8762
8817
  'midisong' => 1,
8763
8818
  'mie' => 1,
8764
8819
  'mileage' => 1,
8820
+ 'mimeencoding' => 1,
8765
8821
  'mimetype' => 1,
8766
8822
  'miniaturefilter' => 1,
8767
8823
  'miniaturefilterorientation' => 1,
@@ -8890,6 +8946,7 @@ my %tagExists = (
8890
8946
  'newbitdepth' => 1,
8891
8947
  'newcolortype' => 1,
8892
8948
  'newguid' => 1,
8949
+ 'newlines' => 1,
8893
8950
  'nexttrackid' => 1,
8894
8951
  'nifnonlinearity' => 1,
8895
8952
  'nifnonlinearity12bit' => 1,
@@ -9160,6 +9217,12 @@ my %tagExists = (
9160
9217
  'parasites' => 1,
9161
9218
  'parentalrating' => 1,
9162
9219
  'parentalratingreason' => 1,
9220
+ 'parrotautomation' => 1,
9221
+ 'parrotfollowme' => 1,
9222
+ 'parrottimestamp' => 1,
9223
+ 'parrotv1' => 1,
9224
+ 'parrotv2' => 1,
9225
+ 'parrotv3' => 1,
9163
9226
  'part' => 1,
9164
9227
  'partialactivecolsleft' => 1,
9165
9228
  'partialactivecolsright' => 1,
@@ -9250,6 +9313,7 @@ my %tagExists = (
9250
9313
  'pieceinfo' => 1,
9251
9314
  'piecelength' => 1,
9252
9315
  'pieces' => 1,
9316
+ 'pilotingmode' => 1,
9253
9317
  'pip' => 1,
9254
9318
  'pipx1' => 1,
9255
9319
  'pipx2' => 1,
@@ -10514,6 +10578,7 @@ my %tagExists = (
10514
10578
  'verticaldivergence' => 1,
10515
10579
  'verticalresolution' => 1,
10516
10580
  'verticalscale' => 1,
10581
+ 'verticalspeed' => 1,
10517
10582
  'verticalunits' => 1,
10518
10583
  'video' => 1,
10519
10584
  'videoattributes' => 1,
@@ -10693,6 +10758,7 @@ my %tagExists = (
10693
10758
  'wide' => 1,
10694
10759
  'widthbytes' => 1,
10695
10760
  'widthresolution' => 1,
10761
+ 'wifirssi' => 1,
10696
10762
  'windoworigin' => 1,
10697
10763
  'windoworiginauto' => 1,
10698
10764
  'windowsdevmode' => 1,