exiftool_vendored 10.65.0 → 11.41.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 +818 -19
- data/bin/MANIFEST +38 -0
- data/bin/META.json +1 -1
- data/bin/META.yml +1 -1
- data/bin/README +48 -44
- data/bin/arg_files/exif2xmp.args +4 -1
- data/bin/arg_files/gps2xmp.args +4 -1
- data/bin/arg_files/iptcCore.args +8 -0
- data/bin/arg_files/xmp2exif.args +4 -1
- data/bin/arg_files/xmp2gps.args +4 -1
- data/bin/config_files/dji.config +131 -0
- data/bin/config_files/example.config +6 -2
- data/bin/config_files/gps2utm.config +256 -256
- data/bin/config_files/nksc.config +146 -0
- data/bin/config_files/picasa_faces.config +382 -382
- data/bin/exiftool +688 -408
- data/bin/fmt_files/gpx.fmt +10 -6
- data/bin/fmt_files/gpx_wpt.fmt +10 -6
- data/bin/fmt_files/kml.fmt +8 -5
- data/bin/lib/File/RandomAccess.pm +48 -8
- data/bin/lib/File/RandomAccess.pod +21 -2
- data/bin/lib/Image/ExifTool.pm +645 -256
- data/bin/lib/Image/ExifTool.pod +219 -164
- data/bin/lib/Image/ExifTool/AES.pm +1 -1
- data/bin/lib/Image/ExifTool/AFCP.pm +3 -8
- data/bin/lib/Image/ExifTool/AIFF.pm +12 -4
- data/bin/lib/Image/ExifTool/APE.pm +1 -1
- data/bin/lib/Image/ExifTool/APP12.pm +1 -1
- data/bin/lib/Image/ExifTool/ASF.pm +19 -6
- data/bin/lib/Image/ExifTool/Apple.pm +13 -5
- data/bin/lib/Image/ExifTool/Audible.pm +1 -1
- data/bin/lib/Image/ExifTool/BMP.pm +1 -1
- data/bin/lib/Image/ExifTool/BPG.pm +17 -15
- data/bin/lib/Image/ExifTool/BZZ.pm +1 -1
- data/bin/lib/Image/ExifTool/BigTIFF.pm +30 -15
- data/bin/lib/Image/ExifTool/BuildTagLookup.pm +103 -52
- data/bin/lib/Image/ExifTool/Canon.pm +684 -112
- data/bin/lib/Image/ExifTool/CanonCustom.pm +119 -9
- data/bin/lib/Image/ExifTool/CanonRaw.pm +1 -1
- data/bin/lib/Image/ExifTool/CanonVRD.pm +13 -26
- data/bin/lib/Image/ExifTool/CaptureOne.pm +1 -1
- data/bin/lib/Image/ExifTool/Casio.pm +1 -1
- data/bin/lib/Image/ExifTool/Charset.pm +1 -1
- data/bin/lib/Image/ExifTool/DICOM.pm +12 -5
- data/bin/lib/Image/ExifTool/DJI.pm +51 -3
- data/bin/lib/Image/ExifTool/DNG.pm +15 -8
- data/bin/lib/Image/ExifTool/DPX.pm +1 -1
- data/bin/lib/Image/ExifTool/DV.pm +1 -1
- data/bin/lib/Image/ExifTool/DarwinCore.pm +63 -23
- data/bin/lib/Image/ExifTool/DjVu.pm +4 -2
- data/bin/lib/Image/ExifTool/EXE.pm +30 -6
- data/bin/lib/Image/ExifTool/Exif.pm +351 -109
- data/bin/lib/Image/ExifTool/FITS.pm +148 -0
- data/bin/lib/Image/ExifTool/FLAC.pm +2 -2
- data/bin/lib/Image/ExifTool/FLIF.pm +1 -1
- data/bin/lib/Image/ExifTool/FLIR.pm +109 -13
- data/bin/lib/Image/ExifTool/Fixup.pm +1 -1
- data/bin/lib/Image/ExifTool/Flash.pm +3 -3
- data/bin/lib/Image/ExifTool/FlashPix.pm +433 -9
- data/bin/lib/Image/ExifTool/Font.pm +2 -2
- data/bin/lib/Image/ExifTool/FotoStation.pm +1 -1
- data/bin/lib/Image/ExifTool/FujiFilm.pm +336 -16
- data/bin/lib/Image/ExifTool/GE.pm +1 -1
- data/bin/lib/Image/ExifTool/GIF.pm +5 -7
- data/bin/lib/Image/ExifTool/GIMP.pm +39 -3
- data/bin/lib/Image/ExifTool/GPS.pm +48 -22
- data/bin/lib/Image/ExifTool/GeoTiff.pm +23 -23
- data/bin/lib/Image/ExifTool/Geotag.pm +80 -45
- data/bin/lib/Image/ExifTool/GoPro.pm +709 -0
- data/bin/lib/Image/ExifTool/H264.pm +40 -18
- data/bin/lib/Image/ExifTool/HP.pm +1 -1
- data/bin/lib/Image/ExifTool/HTML.pm +19 -12
- data/bin/lib/Image/ExifTool/HtmlDump.pm +37 -26
- data/bin/lib/Image/ExifTool/ICC_Profile.pm +297 -23
- data/bin/lib/Image/ExifTool/ID3.pm +12 -7
- data/bin/lib/Image/ExifTool/IPTC.pm +48 -19
- data/bin/lib/Image/ExifTool/ISO.pm +1 -1
- data/bin/lib/Image/ExifTool/ITC.pm +1 -1
- data/bin/lib/Image/ExifTool/Import.pm +13 -9
- data/bin/lib/Image/ExifTool/InDesign.pm +3 -5
- data/bin/lib/Image/ExifTool/JPEG.pm +22 -11
- data/bin/lib/Image/ExifTool/JPEGDigest.pm +1 -1
- data/bin/lib/Image/ExifTool/JSON.pm +3 -3
- data/bin/lib/Image/ExifTool/JVC.pm +1 -1
- data/bin/lib/Image/ExifTool/Jpeg2000.pm +2 -2
- data/bin/lib/Image/ExifTool/Kodak.pm +1233 -58
- data/bin/lib/Image/ExifTool/KyoceraRaw.pm +1 -1
- data/bin/lib/Image/ExifTool/LNK.pm +1 -1
- data/bin/lib/Image/ExifTool/Lang/cs.pm +1 -1
- data/bin/lib/Image/ExifTool/Lang/de.pm +33 -24
- data/bin/lib/Image/ExifTool/Lang/en_ca.pm +64 -2
- data/bin/lib/Image/ExifTool/Lang/en_gb.pm +64 -2
- data/bin/lib/Image/ExifTool/Lang/es.pm +8 -4
- data/bin/lib/Image/ExifTool/Lang/fi.pm +46 -4
- data/bin/lib/Image/ExifTool/Lang/fr.pm +5 -3
- data/bin/lib/Image/ExifTool/Lang/it.pm +6 -3
- data/bin/lib/Image/ExifTool/Lang/ja.pm +15 -3
- data/bin/lib/Image/ExifTool/Lang/ko.pm +5 -2
- data/bin/lib/Image/ExifTool/Lang/nl.pm +6 -3
- data/bin/lib/Image/ExifTool/Lang/pl.pm +2 -2
- data/bin/lib/Image/ExifTool/Lang/ru.pm +1 -1
- data/bin/lib/Image/ExifTool/Lang/sv.pm +1 -1
- data/bin/lib/Image/ExifTool/Lang/tr.pm +4 -2
- data/bin/lib/Image/ExifTool/Lang/zh_cn.pm +1 -1
- data/bin/lib/Image/ExifTool/Lang/zh_tw.pm +1 -1
- data/bin/lib/Image/ExifTool/Leaf.pm +1 -1
- data/bin/lib/Image/ExifTool/Lytro.pm +4 -8
- data/bin/lib/Image/ExifTool/M2TS.pm +10 -9
- data/bin/lib/Image/ExifTool/MIE.pm +12 -8
- data/bin/lib/Image/ExifTool/MIEUnits.pod +1 -1
- data/bin/lib/Image/ExifTool/MIFF.pm +1 -1
- data/bin/lib/Image/ExifTool/MNG.pm +1 -1
- data/bin/lib/Image/ExifTool/MOI.pm +1 -1
- data/bin/lib/Image/ExifTool/MPC.pm +1 -1
- data/bin/lib/Image/ExifTool/MPEG.pm +2 -3
- data/bin/lib/Image/ExifTool/MPF.pm +6 -6
- data/bin/lib/Image/ExifTool/MWG.pm +4 -4
- data/bin/lib/Image/ExifTool/MXF.pm +2 -2
- data/bin/lib/Image/ExifTool/MacOS.pm +184 -34
- data/bin/lib/Image/ExifTool/MakerNotes.pm +101 -18
- data/bin/lib/Image/ExifTool/Matroska.pm +1 -1
- data/bin/lib/Image/ExifTool/Microsoft.pm +5 -3
- data/bin/lib/Image/ExifTool/Minolta.pm +89 -62
- data/bin/lib/Image/ExifTool/MinoltaRaw.pm +1 -1
- data/bin/lib/Image/ExifTool/Motorola.pm +1 -1
- data/bin/lib/Image/ExifTool/Nikon.pm +1511 -380
- data/bin/lib/Image/ExifTool/NikonCapture.pm +1 -1
- data/bin/lib/Image/ExifTool/NikonCustom.pm +2758 -2935
- data/bin/lib/Image/ExifTool/Nintendo.pm +1 -1
- 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 +47 -8
- data/bin/lib/Image/ExifTool/OpenEXR.pm +1 -1
- data/bin/lib/Image/ExifTool/Opus.pm +1 -1
- data/bin/lib/Image/ExifTool/PCX.pm +138 -0
- data/bin/lib/Image/ExifTool/PDF.pm +58 -42
- data/bin/lib/Image/ExifTool/PGF.pm +1 -1
- data/bin/lib/Image/ExifTool/PICT.pm +1 -1
- data/bin/lib/Image/ExifTool/PLIST.pm +12 -5
- data/bin/lib/Image/ExifTool/PLUS.pm +1 -1
- data/bin/lib/Image/ExifTool/PNG.pm +108 -10
- data/bin/lib/Image/ExifTool/PPM.pm +3 -3
- data/bin/lib/Image/ExifTool/PSP.pm +1 -1
- data/bin/lib/Image/ExifTool/Palm.pm +1 -1
- data/bin/lib/Image/ExifTool/Panasonic.pm +299 -31
- data/bin/lib/Image/ExifTool/PanasonicRaw.pm +201 -19
- data/bin/lib/Image/ExifTool/Pentax.pm +164 -143
- data/bin/lib/Image/ExifTool/PhaseOne.pm +12 -5
- data/bin/lib/Image/ExifTool/PhotoCD.pm +9 -10
- data/bin/lib/Image/ExifTool/PhotoMechanic.pm +1 -1
- data/bin/lib/Image/ExifTool/Photoshop.pm +230 -60
- data/bin/lib/Image/ExifTool/PostScript.pm +29 -4
- data/bin/lib/Image/ExifTool/PrintIM.pm +1 -1
- data/bin/lib/Image/ExifTool/Qualcomm.pm +2 -2
- data/bin/lib/Image/ExifTool/QuickTime.pm +1539 -279
- data/bin/lib/Image/ExifTool/QuickTimeStream.pl +1857 -0
- data/bin/lib/Image/ExifTool/README +84 -46
- data/bin/lib/Image/ExifTool/RIFF.pm +116 -23
- data/bin/lib/Image/ExifTool/RSRC.pm +1 -1
- data/bin/lib/Image/ExifTool/RTF.pm +6 -4
- data/bin/lib/Image/ExifTool/Radiance.pm +1 -1
- data/bin/lib/Image/ExifTool/Rawzor.pm +3 -2
- data/bin/lib/Image/ExifTool/Real.pm +1 -1
- data/bin/lib/Image/ExifTool/Reconyx.pm +261 -7
- data/bin/lib/Image/ExifTool/Red.pm +325 -0
- data/bin/lib/Image/ExifTool/Ricoh.pm +3 -7
- data/bin/lib/Image/ExifTool/Samsung.pm +95 -25
- data/bin/lib/Image/ExifTool/Sanyo.pm +1 -1
- data/bin/lib/Image/ExifTool/Scalado.pm +1 -1
- data/bin/lib/Image/ExifTool/Shift.pl +26 -12
- data/bin/lib/Image/ExifTool/Shortcuts.pm +9 -2
- data/bin/lib/Image/ExifTool/Sigma.pm +36 -30
- data/bin/lib/Image/ExifTool/SigmaRaw.pm +3 -8
- data/bin/lib/Image/ExifTool/Sony.pm +531 -177
- data/bin/lib/Image/ExifTool/SonyIDC.pm +63 -3
- data/bin/lib/Image/ExifTool/Stim.pm +2 -2
- data/bin/lib/Image/ExifTool/TagInfoXML.pm +23 -23
- data/bin/lib/Image/ExifTool/TagLookup.pm +6352 -5062
- data/bin/lib/Image/ExifTool/TagNames.pod +3024 -565
- data/bin/lib/Image/ExifTool/Theora.pm +1 -1
- data/bin/lib/Image/ExifTool/Torrent.pm +2 -2
- data/bin/lib/Image/ExifTool/Unknown.pm +1 -1
- data/bin/lib/Image/ExifTool/VCard.pm +47 -9
- data/bin/lib/Image/ExifTool/Validate.pm +391 -99
- data/bin/lib/Image/ExifTool/Vorbis.pm +1 -1
- data/bin/lib/Image/ExifTool/WTV.pm +319 -0
- data/bin/lib/Image/ExifTool/WriteCanonRaw.pl +1 -1
- data/bin/lib/Image/ExifTool/WriteExif.pl +91 -18
- data/bin/lib/Image/ExifTool/WriteIPTC.pl +6 -6
- data/bin/lib/Image/ExifTool/WritePDF.pl +13 -12
- data/bin/lib/Image/ExifTool/WritePNG.pl +1 -1
- data/bin/lib/Image/ExifTool/WritePhotoshop.pl +1 -1
- data/bin/lib/Image/ExifTool/WritePostScript.pl +2 -2
- data/bin/lib/Image/ExifTool/WriteQuickTime.pl +764 -121
- data/bin/lib/Image/ExifTool/WriteXMP.pl +176 -67
- data/bin/lib/Image/ExifTool/Writer.pl +490 -246
- data/bin/lib/Image/ExifTool/XMP.pm +216 -76
- data/bin/lib/Image/ExifTool/XMP2.pl +54 -10
- data/bin/lib/Image/ExifTool/XMPStruct.pl +14 -11
- data/bin/lib/Image/ExifTool/ZIP.pm +60 -15
- data/bin/lib/Image/ExifTool/iWork.pm +12 -5
- data/bin/perl-Image-ExifTool.spec +46 -44
- data/lib/exiftool_vendored/version.rb +1 -1
- metadata +14 -4
@@ -11,7 +11,7 @@ package Image::ExifTool::Lang::fr;
|
|
11
11
|
use strict;
|
12
12
|
use vars qw($VERSION);
|
13
13
|
|
14
|
-
$VERSION = '1.
|
14
|
+
$VERSION = '1.34';
|
15
15
|
|
16
16
|
%Image::ExifTool::Lang::fr::Translate = (
|
17
17
|
'AEAperture' => 'Ouverture AE',
|
@@ -372,6 +372,7 @@ $VERSION = '1.31';
|
|
372
372
|
'ActionAdvised' => {
|
373
373
|
Description => 'Action conseillée',
|
374
374
|
PrintConv => {
|
375
|
+
'Object Append' => 'Ajout d\'objet',
|
375
376
|
'Object Kill' => 'Destruction d\'objet',
|
376
377
|
'Object Reference' => 'Référence d\'objet',
|
377
378
|
'Object Replace' => 'Remplacement d\'objet',
|
@@ -903,6 +904,7 @@ $VERSION = '1.31';
|
|
903
904
|
'On' => 'Activé',
|
904
905
|
},
|
905
906
|
},
|
907
|
+
'ColorBalanceVersion' => 'Version de la Balance des couleurs',
|
906
908
|
'ColorBooster' => {
|
907
909
|
PrintConv => {
|
908
910
|
'Off' => 'Désactivé',
|
@@ -2108,7 +2110,7 @@ $VERSION = '1.31';
|
|
2108
2110
|
'GPSAreaInformation' => 'Nom de la zone GPS',
|
2109
2111
|
'GPSDOP' => 'Précision de mesure',
|
2110
2112
|
'GPSDateStamp' => 'Date GPS',
|
2111
|
-
'GPSDateTime' => '
|
2113
|
+
'GPSDateTime' => 'Date/heure GPS (horloge atomique)',
|
2112
2114
|
'GPSDestBearing' => 'Orientation de la destination',
|
2113
2115
|
'GPSDestBearingRef' => {
|
2114
2116
|
Description => 'Référence de l\'orientation de la destination',
|
@@ -4749,7 +4751,7 @@ and values.
|
|
4749
4751
|
|
4750
4752
|
=head1 AUTHOR
|
4751
4753
|
|
4752
|
-
Copyright 2003-
|
4754
|
+
Copyright 2003-2019, Phil Harvey (phil at owl.phy.queensu.ca)
|
4753
4755
|
|
4754
4756
|
This library is free software; you can redistribute it and/or modify it
|
4755
4757
|
under the same terms as Perl itself.
|
@@ -11,7 +11,7 @@ package Image::ExifTool::Lang::it;
|
|
11
11
|
use strict;
|
12
12
|
use vars qw($VERSION);
|
13
13
|
|
14
|
-
$VERSION = '1.
|
14
|
+
$VERSION = '1.14';
|
15
15
|
|
16
16
|
%Image::ExifTool::Lang::it::Translate = (
|
17
17
|
'A100DataOffset' => 'Offset dati A100',
|
@@ -1249,6 +1249,7 @@ $VERSION = '1.13';
|
|
1249
1249
|
'Off' => 'Spento',
|
1250
1250
|
},
|
1251
1251
|
},
|
1252
|
+
'ColorBalanceVersion' => 'Versione Bilanciamento Colore',
|
1252
1253
|
'ColorBooster' => {
|
1253
1254
|
PrintConv => {
|
1254
1255
|
'Off' => 'Spento',
|
@@ -2394,6 +2395,7 @@ $VERSION = '1.13';
|
|
2394
2395
|
PrintConv => {
|
2395
2396
|
'Aperture Priority' => 'Priorità diaframma',
|
2396
2397
|
'Aperture-priority AE' => 'Priorità diaframma',
|
2398
|
+
'Auto' => 'Esposizione automatica',
|
2397
2399
|
'Auto bracket' => 'A forcella automatica',
|
2398
2400
|
'Fireworks' => 'Fuochi artificiali',
|
2399
2401
|
'Landscape' => 'Orizzontale',
|
@@ -4846,6 +4848,7 @@ $VERSION = '1.13';
|
|
4846
4848
|
},
|
4847
4849
|
},
|
4848
4850
|
'ObjectTypeReference' => 'Riferimento Tipo Oggetto',
|
4851
|
+
'OffsetSchema' => 'Schema Offset',
|
4849
4852
|
'OldSubfileType' => {
|
4850
4853
|
Description => 'Vecchio tipo sotto-file',
|
4851
4854
|
PrintConv => {
|
@@ -7711,9 +7714,9 @@ $VERSION = '1.13';
|
|
7711
7714
|
},
|
7712
7715
|
'WBAdjLighting' => {
|
7713
7716
|
PrintConv => {
|
7717
|
+
'Daylight (cloudy)' => 'Luce del giorno (2)',
|
7714
7718
|
'Daylight (direct sunlight)' => 'Luce del giorno (0)',
|
7715
7719
|
'Daylight (shade)' => 'Luce del giorno (1)',
|
7716
|
-
'Daylight (cloudy)' => 'Luce del giorno (2)',
|
7717
7720
|
'None' => 'Nessuno',
|
7718
7721
|
},
|
7719
7722
|
},
|
@@ -7900,7 +7903,7 @@ and values.
|
|
7900
7903
|
|
7901
7904
|
=head1 AUTHOR
|
7902
7905
|
|
7903
|
-
Copyright 2003-
|
7906
|
+
Copyright 2003-2019, Phil Harvey (phil at owl.phy.queensu.ca)
|
7904
7907
|
|
7905
7908
|
This library is free software; you can redistribute it and/or modify it
|
7906
7909
|
under the same terms as Perl itself.
|
@@ -11,7 +11,7 @@ package Image::ExifTool::Lang::ja;
|
|
11
11
|
use strict;
|
12
12
|
use vars qw($VERSION);
|
13
13
|
|
14
|
-
$VERSION = '1.
|
14
|
+
$VERSION = '1.25';
|
15
15
|
|
16
16
|
%Image::ExifTool::Lang::ja::Translate = (
|
17
17
|
'AEAperture' => 'AE絞り',
|
@@ -633,6 +633,7 @@ $VERSION = '1.23';
|
|
633
633
|
'On' => 'オン',
|
634
634
|
},
|
635
635
|
},
|
636
|
+
'AutoBracketingSet' => 'オートブラケット設定',
|
636
637
|
'AutoExposureBracketing' => {
|
637
638
|
Description => 'フラッシュバイアス',
|
638
639
|
PrintConv => {
|
@@ -820,6 +821,7 @@ $VERSION = '1.23';
|
|
820
821
|
'BurstMode' => {
|
821
822
|
Description => 'ブラストモード',
|
822
823
|
PrintConv => {
|
824
|
+
'Auto Exposure Bracketing (AEB)' => '無限',
|
823
825
|
'Infinite' => '無限',
|
824
826
|
'Off' => 'オフ',
|
825
827
|
'On' => 'オン',
|
@@ -2190,6 +2192,7 @@ $VERSION = '1.23';
|
|
2190
2192
|
'FlashEnergy' => 'フラッシュ強度',
|
2191
2193
|
'FlashExposureBracketValue' => 'フラッシュ露出ブラケット値',
|
2192
2194
|
'FlashExposureComp' => 'フラッシュ露出補正',
|
2195
|
+
'FlashExposureComp2' => 'フラッシュ露出補正',
|
2193
2196
|
'FlashExposureCompSet' => 'ストロボ露出補正設定',
|
2194
2197
|
'FlashExposureLock' => {
|
2195
2198
|
PrintConv => {
|
@@ -3352,6 +3355,7 @@ $VERSION = '1.23';
|
|
3352
3355
|
'MaskedAreas' => 'マスク領域',
|
3353
3356
|
'MasterDocumentID' => 'マスタ文書ID',
|
3354
3357
|
'MasterGain' => 'マスターゲイン',
|
3358
|
+
'MatrixMetering' => '分割測光',
|
3355
3359
|
'Matteing' => 'マッチング',
|
3356
3360
|
'MaxAperture' => '最大絞り',
|
3357
3361
|
'MaxApertureAtCurrentFocal' => '現在焦点距離の最大絞り',
|
@@ -3472,6 +3476,7 @@ $VERSION = '1.23';
|
|
3472
3476
|
},
|
3473
3477
|
'Model' => '画像入力機器モデル',
|
3474
3478
|
'Model2' => '画像入力機器モデル(2)',
|
3479
|
+
'ModelID' => 'モデルID',
|
3475
3480
|
'ModelTiePoint' => 'モデル拘束ポイントタグ',
|
3476
3481
|
'ModelTransform' => 'モデル変化タグ',
|
3477
3482
|
'ModelingFlash' => {
|
@@ -4215,6 +4220,7 @@ $VERSION = '1.23';
|
|
4215
4220
|
'n/a' => '未設定',
|
4216
4221
|
},
|
4217
4222
|
},
|
4223
|
+
'Quality2' => '品質',
|
4218
4224
|
'QualityMode' => {
|
4219
4225
|
Description => '品質モード',
|
4220
4226
|
PrintConv => {
|
@@ -4877,7 +4883,8 @@ $VERSION = '1.23';
|
|
4877
4883
|
'Soft2' => 'ソフト2',
|
4878
4884
|
'n/a' => '該当無し',
|
4879
4885
|
},
|
4880
|
-
},
|
4886
|
+
},
|
4887
|
+
'SharpnessFactor' => 'シャープネス要因',
|
4881
4888
|
'SharpnessFaithful' => 'シャープネス忠実設定',
|
4882
4889
|
'SharpnessFrequency' => {
|
4883
4890
|
PrintConv => {
|
@@ -5061,6 +5068,7 @@ $VERSION = '1.23';
|
|
5061
5068
|
'SpecialInstructions' => '手順',
|
5062
5069
|
'SpecialMode' => 'スペシャルモード',
|
5063
5070
|
'SpectralSensitivity' => 'スペクトル感度',
|
5071
|
+
'Sport' => 'スポーツ',
|
5064
5072
|
'SpotFocusPointX' => 'スポットフォーカスポイントX',
|
5065
5073
|
'SpotFocusPointY' => 'スポットフォーカスポイントY',
|
5066
5074
|
'SpotMeterLinkToAFPoint' => {
|
@@ -5693,6 +5701,10 @@ $VERSION = '1.23';
|
|
5693
5701
|
'Custom WB 4' => 'カスタムホワイトバランス4',
|
5694
5702
|
'Custom WB 5400K' => 'カスタムホワイトバランス5400K',
|
5695
5703
|
'Custom WB 8000K' => 'カスタムホワイトバランス8000K',
|
5704
|
+
'One Touch WB 1' => 'カスタムホワイトバランス1',
|
5705
|
+
'One Touch WB 2' => 'カスタムホワイトバランス2',
|
5706
|
+
'One Touch WB 3' => 'カスタムホワイトバランス3',
|
5707
|
+
'One Touch WB 4' => 'カスタムホワイトバランス4',
|
5696
5708
|
},
|
5697
5709
|
},
|
5698
5710
|
'WhiteBalanceAdj' => {
|
@@ -5829,7 +5841,7 @@ and values.
|
|
5829
5841
|
|
5830
5842
|
=head1 AUTHOR
|
5831
5843
|
|
5832
|
-
Copyright 2003-
|
5844
|
+
Copyright 2003-2019, Phil Harvey (phil at owl.phy.queensu.ca)
|
5833
5845
|
|
5834
5846
|
This library is free software; you can redistribute it and/or modify it
|
5835
5847
|
under the same terms as Perl itself.
|
@@ -11,7 +11,7 @@ package Image::ExifTool::Lang::ko;
|
|
11
11
|
use strict;
|
12
12
|
use vars qw($VERSION);
|
13
13
|
|
14
|
-
$VERSION = '1.
|
14
|
+
$VERSION = '1.07';
|
15
15
|
|
16
16
|
%Image::ExifTool::Lang::ko::Translate = (
|
17
17
|
'AELock' => {
|
@@ -256,6 +256,7 @@ $VERSION = '1.06';
|
|
256
256
|
'Off' => '꺼짐',
|
257
257
|
},
|
258
258
|
},
|
259
|
+
'AutoBracketingSet' => '자동 브라케팅 설정',
|
259
260
|
'AutoExposureBracketing' => {
|
260
261
|
PrintConv => {
|
261
262
|
'Off' => '꺼짐',
|
@@ -429,6 +430,7 @@ $VERSION = '1.06';
|
|
429
430
|
'On' => '켜짐',
|
430
431
|
},
|
431
432
|
},
|
433
|
+
'ColorBalanceVersion' => '컬러 밸런스 버전',
|
432
434
|
'ColorBooster' => {
|
433
435
|
PrintConv => {
|
434
436
|
'Off' => '꺼짐',
|
@@ -1469,6 +1471,7 @@ $VERSION = '1.06';
|
|
1469
1471
|
'MakerNotes' => '제조업체 정보',
|
1470
1472
|
'ManualFlashOutput' => '내장 플래시 수동 출력',
|
1471
1473
|
'ManualFocusDistance' => '수동 초점 거리',
|
1474
|
+
'MatrixMetering' => '멀티 패턴 측광',
|
1472
1475
|
'MaxAperture' => '최대 렌즈 조리개',
|
1473
1476
|
'MaxApertureAtMaxFocal' => '최대 초점길이에서 최대 조리개',
|
1474
1477
|
'MaxApertureAtMinFocal' => '최소 초점길이에서 최대 조리개',
|
@@ -2313,7 +2316,7 @@ and values.
|
|
2313
2316
|
|
2314
2317
|
=head1 AUTHOR
|
2315
2318
|
|
2316
|
-
Copyright 2003-
|
2319
|
+
Copyright 2003-2019, Phil Harvey (phil at owl.phy.queensu.ca)
|
2317
2320
|
|
2318
2321
|
This library is free software; you can redistribute it and/or modify it
|
2319
2322
|
under the same terms as Perl itself.
|
@@ -11,7 +11,7 @@ package Image::ExifTool::Lang::nl;
|
|
11
11
|
use strict;
|
12
12
|
use vars qw($VERSION);
|
13
13
|
|
14
|
-
$VERSION = '1.
|
14
|
+
$VERSION = '1.12';
|
15
15
|
|
16
16
|
%Image::ExifTool::Lang::nl::Translate = (
|
17
17
|
'AEBAutoCancel' => {
|
@@ -201,6 +201,7 @@ $VERSION = '1.11';
|
|
201
201
|
'ActionAdvised' => {
|
202
202
|
Description => 'Actie advies',
|
203
203
|
PrintConv => {
|
204
|
+
'Object Append' => 'Object toevoegen',
|
204
205
|
'Object Kill' => 'Object verwijderen',
|
205
206
|
'Object Reference' => 'Object referentie',
|
206
207
|
'Object Replace' => 'Object vervangen',
|
@@ -335,6 +336,7 @@ $VERSION = '1.11';
|
|
335
336
|
'Off' => 'Uit',
|
336
337
|
},
|
337
338
|
},
|
339
|
+
'AutoBracketingSet' => 'Inst. voor auto bracketing',
|
338
340
|
'AutoExposureBracketing' => {
|
339
341
|
PrintConv => {
|
340
342
|
'Off' => 'Uit',
|
@@ -1996,6 +1998,7 @@ $VERSION = '1.11';
|
|
1996
1998
|
},
|
1997
1999
|
},
|
1998
2000
|
'MasterDocumentID' => 'ID van hoofddocument',
|
2001
|
+
'MatrixMetering' => 'Matrixmeting',
|
1999
2002
|
'MaxAperture' => 'Maximale lensopening',
|
2000
2003
|
'MaxApertureValue' => 'Grootste diafragma',
|
2001
2004
|
'MaxContinuousRelease' => 'Max. aant. continuopnamen',
|
@@ -3058,9 +3061,9 @@ $VERSION = '1.11';
|
|
3058
3061
|
},
|
3059
3062
|
'WBAdjLighting' => {
|
3060
3063
|
PrintConv => {
|
3064
|
+
'Daylight (cloudy)' => 'Daglicht (2)',
|
3061
3065
|
'Daylight (direct sunlight)' => 'Daglicht (0)',
|
3062
3066
|
'Daylight (shade)' => 'Daglicht (1)',
|
3063
|
-
'Daylight (cloudy)' => 'Daglicht (2)',
|
3064
3067
|
'Flash' => 'Flits',
|
3065
3068
|
'None' => 'Geen',
|
3066
3069
|
},
|
@@ -3204,7 +3207,7 @@ and values.
|
|
3204
3207
|
|
3205
3208
|
=head1 AUTHOR
|
3206
3209
|
|
3207
|
-
Copyright 2003-
|
3210
|
+
Copyright 2003-2019, Phil Harvey (phil at owl.phy.queensu.ca)
|
3208
3211
|
|
3209
3212
|
This library is free software; you can redistribute it and/or modify it
|
3210
3213
|
under the same terms as Perl itself.
|
@@ -11,7 +11,7 @@ package Image::ExifTool::Lang::pl;
|
|
11
11
|
use strict;
|
12
12
|
use vars qw($VERSION);
|
13
13
|
|
14
|
-
$VERSION = '1.
|
14
|
+
$VERSION = '1.12';
|
15
15
|
|
16
16
|
%Image::ExifTool::Lang::pl::Translate = (
|
17
17
|
'A100DataOffset' => 'Przesunięcie danych A100',
|
@@ -1258,7 +1258,7 @@ and values.
|
|
1258
1258
|
|
1259
1259
|
=head1 AUTHOR
|
1260
1260
|
|
1261
|
-
Copyright 2003-
|
1261
|
+
Copyright 2003-2019, Phil Harvey (phil at owl.phy.queensu.ca)
|
1262
1262
|
|
1263
1263
|
This library is free software; you can redistribute it and/or modify it
|
1264
1264
|
under the same terms as Perl itself.
|
@@ -750,7 +750,7 @@ and values.
|
|
750
750
|
|
751
751
|
=head1 AUTHOR
|
752
752
|
|
753
|
-
Copyright 2003-
|
753
|
+
Copyright 2003-2019, Phil Harvey (phil at owl.phy.queensu.ca)
|
754
754
|
|
755
755
|
This library is free software; you can redistribute it and/or modify it
|
756
756
|
under the same terms as Perl itself.
|
@@ -620,7 +620,7 @@ and values.
|
|
620
620
|
|
621
621
|
=head1 AUTHOR
|
622
622
|
|
623
|
-
Copyright 2003-
|
623
|
+
Copyright 2003-2019, Phil Harvey (phil at owl.phy.queensu.ca)
|
624
624
|
|
625
625
|
This library is free software; you can redistribute it and/or modify it
|
626
626
|
under the same terms as Perl itself.
|
@@ -11,7 +11,7 @@ package Image::ExifTool::Lang::tr;
|
|
11
11
|
use strict;
|
12
12
|
use vars qw($VERSION);
|
13
13
|
|
14
|
-
$VERSION = '1.
|
14
|
+
$VERSION = '1.05';
|
15
15
|
|
16
16
|
%Image::ExifTool::Lang::tr::Translate = (
|
17
17
|
'Album' => 'Albüm',
|
@@ -499,6 +499,7 @@ $VERSION = '1.04';
|
|
499
499
|
},
|
500
500
|
'WhitePoint' => 'Beya nokta kromatik',
|
501
501
|
'Writer-Editor' => 'Açıklama Yazarı',
|
502
|
+
'XResolution' => 'X çözünürlüğü',
|
502
503
|
'YCbCrCoefficients' => 'Renk alanı transformasyon matriks katsayısı',
|
503
504
|
'YCbCrPositioning' => {
|
504
505
|
Description => 'Y ve C konumlama',
|
@@ -508,6 +509,7 @@ $VERSION = '1.04';
|
|
508
509
|
},
|
509
510
|
},
|
510
511
|
'YCbCrSubSampling' => 'Y den C\'ye alt örnekleme oranı',
|
512
|
+
'YResolution' => 'Y çözünürlüğü',
|
511
513
|
);
|
512
514
|
|
513
515
|
1; # end
|
@@ -526,7 +528,7 @@ and values.
|
|
526
528
|
|
527
529
|
=head1 AUTHOR
|
528
530
|
|
529
|
-
Copyright 2003-
|
531
|
+
Copyright 2003-2019, Phil Harvey (phil at owl.phy.queensu.ca)
|
530
532
|
|
531
533
|
This library is free software; you can redistribute it and/or modify it
|
532
534
|
under the same terms as Perl itself.
|
@@ -1313,7 +1313,7 @@ and values.
|
|
1313
1313
|
|
1314
1314
|
=head1 AUTHOR
|
1315
1315
|
|
1316
|
-
Copyright 2003-
|
1316
|
+
Copyright 2003-2019, Phil Harvey (phil at owl.phy.queensu.ca)
|
1317
1317
|
|
1318
1318
|
This library is free software; you can redistribute it and/or modify it
|
1319
1319
|
under the same terms as Perl itself.
|
@@ -784,7 +784,7 @@ and values.
|
|
784
784
|
|
785
785
|
=head1 AUTHOR
|
786
786
|
|
787
|
-
Copyright 2003-
|
787
|
+
Copyright 2003-2019, Phil Harvey (phil at owl.phy.queensu.ca)
|
788
788
|
|
789
789
|
This library is free software; you can redistribute it and/or modify it
|
790
790
|
under the same terms as Perl itself.
|
@@ -504,7 +504,7 @@ Capture.
|
|
504
504
|
|
505
505
|
=head1 AUTHOR
|
506
506
|
|
507
|
-
Copyright 2003-
|
507
|
+
Copyright 2003-2019, Phil Harvey (phil at owl.phy.queensu.ca)
|
508
508
|
|
509
509
|
This library is free software; you can redistribute it and/or modify it
|
510
510
|
under the same terms as Perl itself.
|
@@ -15,7 +15,7 @@ use vars qw($VERSION);
|
|
15
15
|
use Image::ExifTool qw(:DataAccess :Utils);
|
16
16
|
use Image::ExifTool::Import;
|
17
17
|
|
18
|
-
$VERSION = '1.
|
18
|
+
$VERSION = '1.03';
|
19
19
|
|
20
20
|
sub ExtractTags($$$);
|
21
21
|
|
@@ -135,16 +135,12 @@ sub ProcessLFP($$)
|
|
135
135
|
my ($et, $dirInfo) = @_;
|
136
136
|
my $raf = $$dirInfo{RAF};
|
137
137
|
my $verbose = $et->Options('Verbose');
|
138
|
-
my ($buff, $id
|
138
|
+
my ($buff, $id);
|
139
139
|
|
140
140
|
# validate the Lytro file header
|
141
141
|
return 0 unless $raf->Read($buff, 16) == 16 and $buff =~ /^\x89LFP\x0d\x0a\x1a\x0a/;
|
142
142
|
$et->SetFileType(); # set the FileType tag
|
143
143
|
SetByteOrder('MM');
|
144
|
-
if ($verbose > 2) {
|
145
|
-
%dumpParms = ( Out => $$et{OPTIONS}{TextOut} );
|
146
|
-
$dumpParms{MaxLen} = 128 if $verbose < 4;
|
147
|
-
}
|
148
144
|
my $tagTablePtr = GetTagTable('Image::ExifTool::Lytro::Main');
|
149
145
|
while ($raf->Read($buff, 16) == 16) {
|
150
146
|
$buff =~ /^\x89LF/ or $et->Warn('LFP format error'), last;
|
@@ -159,7 +155,7 @@ sub ProcessLFP($$)
|
|
159
155
|
$raf->Seek($size, 1) or $et->Warn('Seek error in LFP file'), last;
|
160
156
|
} else {
|
161
157
|
$raf->Read($buff,$size) == $size or $et->Warn('Truncated LFP data'), last;
|
162
|
-
|
158
|
+
$et->VerboseDump(\$buff, Addr=>$raf->Tell()-$size);
|
163
159
|
if ($buff =~ /^\{\s+"/) { # JSON metadata?
|
164
160
|
pos($buff) = 0;
|
165
161
|
$et->HandleTag($tagTablePtr, 'JSONMetadata', $buff);
|
@@ -195,7 +191,7 @@ from Lytro Light Field Picture (LFP) files.
|
|
195
191
|
|
196
192
|
=head1 AUTHOR
|
197
193
|
|
198
|
-
Copyright 2003-
|
194
|
+
Copyright 2003-2019, Phil Harvey (phil at owl.phy.queensu.ca)
|
199
195
|
|
200
196
|
This library is free software; you can redistribute it and/or modify it
|
201
197
|
under the same terms as Perl itself.
|
@@ -31,7 +31,7 @@ use strict;
|
|
31
31
|
use vars qw($VERSION);
|
32
32
|
use Image::ExifTool qw(:DataAccess :Utils);
|
33
33
|
|
34
|
-
$VERSION = '1.
|
34
|
+
$VERSION = '1.16';
|
35
35
|
|
36
36
|
# program map table "stream_type" lookup (ref 6/1)
|
37
37
|
my %streamType = (
|
@@ -275,9 +275,7 @@ sub ParsePID($$$$$)
|
|
275
275
|
if ($verbose > 1) {
|
276
276
|
my $out = $et->Options('TextOut');
|
277
277
|
printf $out "Parsing stream 0x%.4x (%s)\n", $pid, $pidName;
|
278
|
-
|
279
|
-
$parms{MaxLen} = 96 if $verbose < 4;
|
280
|
-
HexDump($dataPt, undef, %parms) if $verbose > 2;
|
278
|
+
$et->VerboseDump($dataPt);
|
281
279
|
}
|
282
280
|
my $more = 0;
|
283
281
|
if ($type == 0x01 or $type == 0x02) {
|
@@ -293,7 +291,11 @@ sub ParsePID($$$$$)
|
|
293
291
|
require Image::ExifTool::H264;
|
294
292
|
$more = Image::ExifTool::H264::ParseH264Video($et, $dataPt);
|
295
293
|
# force parsing additional H264 frames with ExtractEmbedded option
|
296
|
-
|
294
|
+
if ($$et{OPTIONS}{ExtractEmbedded}) {
|
295
|
+
$more = 1;
|
296
|
+
} elsif (not $$et{OPTIONS}{Validate}) {
|
297
|
+
$et->WarnOnce('The ExtractEmbedded option may find more tags in the video data',3);
|
298
|
+
}
|
297
299
|
} elsif ($type == 0x81 or $type == 0x87 or $type == 0x91) {
|
298
300
|
# AC-3 audio
|
299
301
|
ParseAC3Audio($et, $dataPt);
|
@@ -389,7 +391,7 @@ sub ProcessM2TS($$)
|
|
389
391
|
my $prefix = unpack("x${pos}N", $buff); # (use unpack instead of Get32u for speed)
|
390
392
|
# validate sync byte
|
391
393
|
unless (($prefix & 0xff000000) == 0x47000000) {
|
392
|
-
$et->Warn('
|
394
|
+
$et->Warn('M2TS synchronization error') unless defined $backScan;
|
393
395
|
last;
|
394
396
|
}
|
395
397
|
# my $transport_error_indicator = $prefix & 0x00800000;
|
@@ -404,8 +406,7 @@ sub ProcessM2TS($$)
|
|
404
406
|
if ($verbose > 1) {
|
405
407
|
print $out "Transport packet $i:\n";
|
406
408
|
++$i;
|
407
|
-
|
408
|
-
Start => $pos - $prePos) if $verbose > 2;
|
409
|
+
$et->VerboseDump(\$buff, Len => $pLen, Addr => $i * $pLen, Start => $pos - $prePos);
|
409
410
|
my $str = $pidName{$pid} ? " ($pidName{$pid})" : '';
|
410
411
|
printf $out " Timecode: 0x%.4x\n", Get32u(\$buff, $pos - $prePos) if $pLen == 192;
|
411
412
|
printf $out " Packet ID: 0x%.4x$str\n", $pid;
|
@@ -693,7 +694,7 @@ video.
|
|
693
694
|
|
694
695
|
=head1 AUTHOR
|
695
696
|
|
696
|
-
Copyright 2003-
|
697
|
+
Copyright 2003-2019, Phil Harvey (phil at owl.phy.queensu.ca)
|
697
698
|
|
698
699
|
This library is free software; you can redistribute it and/or modify it
|
699
700
|
under the same terms as Perl itself.
|