exiftool-vendored.exe 12.62.0 → 12.65.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.
- package/LICENSE +254 -254
- package/bin/exiftool_files/Changes +76 -1
- package/bin/exiftool_files/Makefile.PL +7 -1
- package/bin/exiftool_files/README +50 -46
- package/bin/exiftool_files/config_files/guano.config +161 -0
- package/bin/exiftool_files/exiftool.pl +105 -74
- package/bin/exiftool_files/lib/Image/ExifTool/7Z.pm +793 -0
- package/bin/exiftool_files/lib/Image/ExifTool/Apple.pm +14 -7
- package/bin/exiftool_files/lib/Image/ExifTool/BigTIFF.pm +8 -1
- package/bin/exiftool_files/lib/Image/ExifTool/Canon.pm +4 -1
- package/bin/exiftool_files/lib/Image/ExifTool/CanonRaw.pm +4 -4
- package/bin/exiftool_files/lib/Image/ExifTool/CanonVRD.pm +4 -1
- package/bin/exiftool_files/lib/Image/ExifTool/Exif.pm +31 -14
- package/bin/exiftool_files/lib/Image/ExifTool/FlashPix.pm +8 -2
- package/bin/exiftool_files/lib/Image/ExifTool/FujiFilm.pm +3 -3
- package/bin/exiftool_files/lib/Image/ExifTool/GPS.pm +5 -2
- package/bin/exiftool_files/lib/Image/ExifTool/Geotag.pm +4 -1
- package/bin/exiftool_files/lib/Image/ExifTool/Jpeg2000.pm +226 -28
- package/bin/exiftool_files/lib/Image/ExifTool/Lang/fr.pm +1467 -202
- package/bin/exiftool_files/lib/Image/ExifTool/MPF.pm +2 -1
- package/bin/exiftool_files/lib/Image/ExifTool/Matroska.pm +16 -1
- package/bin/exiftool_files/lib/Image/ExifTool/MinoltaRaw.pm +2 -2
- package/bin/exiftool_files/lib/Image/ExifTool/Nikon.pm +939 -31
- package/bin/exiftool_files/lib/Image/ExifTool/NikonCustom.pm +874 -63
- package/bin/exiftool_files/lib/Image/ExifTool/PDF.pm +23 -5
- package/bin/exiftool_files/lib/Image/ExifTool/PLIST.pm +8 -1
- package/bin/exiftool_files/lib/Image/ExifTool/PNG.pm +6 -6
- package/bin/exiftool_files/lib/Image/ExifTool/PhaseOne.pm +5 -5
- package/bin/exiftool_files/lib/Image/ExifTool/QuickTime.pm +91 -30
- package/bin/exiftool_files/lib/Image/ExifTool/QuickTimeStream.pl +20 -19
- package/bin/exiftool_files/lib/Image/ExifTool/README +2 -2
- package/bin/exiftool_files/lib/Image/ExifTool/RIFF.pm +11 -9
- package/bin/exiftool_files/lib/Image/ExifTool/Samsung.pm +227 -227
- package/bin/exiftool_files/lib/Image/ExifTool/Shortcuts.pm +2 -1
- package/bin/exiftool_files/lib/Image/ExifTool/SigmaRaw.pm +4 -4
- package/bin/exiftool_files/lib/Image/ExifTool/Sony.pm +229 -30
- package/bin/exiftool_files/lib/Image/ExifTool/TagLookup.pm +4757 -4633
- package/bin/exiftool_files/lib/Image/ExifTool/TagNames.pod +706 -18
- package/bin/exiftool_files/lib/Image/ExifTool/Validate.pm +17 -1
- package/bin/exiftool_files/lib/Image/ExifTool/WriteExif.pl +9 -7
- package/bin/exiftool_files/lib/Image/ExifTool/WriteQuickTime.pl +21 -9
- package/bin/exiftool_files/lib/Image/ExifTool/WriteXMP.pl +2 -2
- package/bin/exiftool_files/lib/Image/ExifTool/Writer.pl +35 -12
- package/bin/exiftool_files/lib/Image/ExifTool/XMP.pm +14 -2
- package/bin/exiftool_files/lib/Image/ExifTool/XMP2.pl +32 -0
- package/bin/exiftool_files/lib/Image/ExifTool/XMPStruct.pl +96 -28
- package/bin/exiftool_files/lib/Image/ExifTool/ZIP.pm +5 -5
- package/bin/exiftool_files/lib/Image/ExifTool.pm +176 -128
- package/bin/exiftool_files/lib/Image/ExifTool.pod +109 -53
- package/package.json +3 -2
|
@@ -65,49 +65,49 @@ supported by ExifTool (r = read, w = write, c = create):
|
|
|
65
65
|
|
|
66
66
|
File Types
|
|
67
67
|
------------+-------------+-------------+-------------+------------
|
|
68
|
-
360 r/w |
|
|
69
|
-
3FR r |
|
|
70
|
-
3G2 r/w |
|
|
71
|
-
3GP r/w |
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
68
|
+
360 r/w | DPX r | ITC r | NUMBERS r | RAW r/w
|
|
69
|
+
3FR r | DR4 r/w/c | J2C r | O r | RIFF r
|
|
70
|
+
3G2 r/w | DSS r | JNG r/w | ODP r | RSRC r
|
|
71
|
+
3GP r/w | DV r | JP2 r/w | ODS r | RTF r
|
|
72
|
+
7Z r | DVB r/w | JPEG r/w | ODT r | RW2 r/w
|
|
73
|
+
A r | DVR-MS r | JSON r | OFR r | RWL r/w
|
|
74
|
+
AA r | DYLIB r | JXL r | OGG r | RWZ r
|
|
75
|
+
AAE r | EIP r | K25 r | OGV r | RM r
|
|
76
|
+
AAX r/w | EPS r/w | KDC r | ONP r | SEQ r
|
|
77
|
+
ACR r | EPUB r | KEY r | OPUS r | SKETCH r
|
|
78
|
+
AFM r | ERF r/w | LA r | ORF r/w | SO r
|
|
79
|
+
AI r/w | EXE r | LFP r | ORI r/w | SR2 r/w
|
|
80
|
+
AIFF r | EXIF r/w/c | LIF r | OTF r | SRF r
|
|
81
|
+
APE r | EXR r | LNK r | PAC r | SRW r/w
|
|
82
|
+
ARQ r/w | EXV r/w/c | LRV r/w | PAGES r | SVG r
|
|
83
|
+
ARW r/w | F4A/V r/w | M2TS r | PBM r/w | SWF r
|
|
84
|
+
ASF r | FFF r/w | M4A/V r/w | PCD r | THM r/w
|
|
85
|
+
AVI r | FITS r | MACOS r | PCX r | TIFF r/w
|
|
86
|
+
AVIF r/w | FLA r | MAX r | PDB r | TORRENT r
|
|
87
|
+
AZW r | FLAC r | MEF r/w | PDF r/w | TTC r
|
|
88
|
+
BMP r | FLIF r/w | MIE r/w/c | PEF r/w | TTF r
|
|
89
|
+
BPG r | FLV r | MIFF r | PFA r | TXT r
|
|
90
|
+
BTF r | FPF r | MKA r | PFB r | VCF r
|
|
91
|
+
CHM r | FPX r | MKS r | PFM r | VNT r
|
|
92
|
+
COS r | GIF r/w | MKV r | PGF r | VRD r/w/c
|
|
93
|
+
CR2 r/w | GLV r/w | MNG r/w | PGM r/w | VSD r
|
|
94
|
+
CR3 r/w | GPR r/w | MOBI r | PLIST r | WAV r
|
|
95
|
+
CRM r/w | GZ r | MODD r | PICT r | WDP r/w
|
|
96
|
+
CRW r/w | HDP r/w | MOI r | PMP r | WEBP r/w
|
|
97
|
+
CS1 r/w | HDR r | MOS r/w | PNG r/w | WEBM r
|
|
98
|
+
CSV r | HEIC r/w | MOV r/w | PPM r/w | WMA r
|
|
99
|
+
CUR r | HEIF r/w | MP3 r | PPT r | WMV r
|
|
100
|
+
CZI r | HTML r | MP4 r/w | PPTX r | WPG r
|
|
101
|
+
DCM r | ICC r/w/c | MPC r | PS r/w | WTV r
|
|
102
|
+
DCP r/w | ICO r | MPG r | PSB r/w | WV r
|
|
103
|
+
DCR r | ICS r | MPO r/w | PSD r/w | X3F r/w
|
|
104
|
+
DFONT r | IDML r | MQV r/w | PSP r | XCF r
|
|
105
|
+
DIVX r | IIQ r/w | MRC r | QTIF r/w | XLS r
|
|
106
|
+
DJVU r | IND r/w | MRW r/w | R3D r | XLSX r
|
|
107
|
+
DLL r | INSP r/w | MXF r | RA r | XMP r/w/c
|
|
108
|
+
DNG r/w | INSV r | NEF r/w | RAF r/w | ZIP r
|
|
109
|
+
DOC r | INX r | NKSC r/w | RAM r |
|
|
110
|
+
DOCX r | ISO r | NRW r/w | RAR r |
|
|
111
111
|
|
|
112
112
|
Meta Information
|
|
113
113
|
----------------------+----------------------+---------------------
|
|
@@ -301,6 +301,10 @@ of tag keys, and with other L</Sort> settings the entries may not be in the
|
|
|
301
301
|
same order as requested.) If a requested tag doesn't exist, a tag key is
|
|
302
302
|
still generated, but the tag value is undefined.
|
|
303
303
|
|
|
304
|
+
B<Note:> Do not reuse this list in subsequent calls to L</ImageInfo> because
|
|
305
|
+
it returns tag keys, not names, and the list will grow for each call
|
|
306
|
+
resulting in increasingly slower performance.
|
|
307
|
+
|
|
304
308
|
=item HASH ref
|
|
305
309
|
|
|
306
310
|
Reference to a hash containing the options settings valid for this call
|
|
@@ -569,7 +573,9 @@ Flag to generate Composite tags when extracting information. Default is 1.
|
|
|
569
573
|
=item Compress
|
|
570
574
|
|
|
571
575
|
Flag to write new values in compressed format if possible. Has no effect
|
|
572
|
-
unless
|
|
576
|
+
unless the relevant compression library is available. Valid when writing
|
|
577
|
+
metadata to PNG, JXL or MIE images. Setting this to zero causes JXL
|
|
578
|
+
metadata to be rewritten as uncompressed when edited. Default is undef.
|
|
573
579
|
|
|
574
580
|
=item CoordFormat
|
|
575
581
|
|
|
@@ -791,6 +797,11 @@ allowed. A special tag name of "All" may be used to ignore all tags except
|
|
|
791
797
|
those specified by the L</RequestTags> option. Set to undef to clear the
|
|
792
798
|
previous IgnoreTags list. Default is undef.
|
|
793
799
|
|
|
800
|
+
=item ImageHashType
|
|
801
|
+
|
|
802
|
+
Sets type of hash algorithem used for the ImageDataHash tag calculation.
|
|
803
|
+
Supported options are 'MD5', 'SHA256', and 'SHA512'. Default is 'MD5'.
|
|
804
|
+
|
|
794
805
|
=item Lang
|
|
795
806
|
|
|
796
807
|
Localized language for exiftool tag descriptions, etc. Available languages
|
|
@@ -847,6 +858,13 @@ formatting expression returns undef). If not set, a minor error is issued
|
|
|
847
858
|
for missing values, or the value is set to '' if L</IgnoreMinorErrors> is
|
|
848
859
|
set. Default is undef.
|
|
849
860
|
|
|
861
|
+
=item NoDups
|
|
862
|
+
|
|
863
|
+
Flag to remove duplicate items from queued values for List-type tags when
|
|
864
|
+
writing. This applies only to queued values, and doesn't resolve duplicates
|
|
865
|
+
with existing values in the file when adding to an existing list. Default
|
|
866
|
+
is undef.
|
|
867
|
+
|
|
850
868
|
=item NoMultiExif
|
|
851
869
|
|
|
852
870
|
Raise error when attempting to write multi-segment EXIF in a JPEG image.
|
|
@@ -993,6 +1011,14 @@ structured tags may always be written. Possible values are:
|
|
|
993
1011
|
2 - Read/copy both flattened and structured tags, but flag
|
|
994
1012
|
flattened tags as 'unsafe' for copying
|
|
995
1013
|
|
|
1014
|
+
=item StructFormat
|
|
1015
|
+
|
|
1016
|
+
Format for serialized structures when reading/writing.
|
|
1017
|
+
|
|
1018
|
+
undef - Default ExifTool format
|
|
1019
|
+
JSON - JSON format
|
|
1020
|
+
JSONQ - JSON with quoted numerical values
|
|
1021
|
+
|
|
996
1022
|
=item SystemTags
|
|
997
1023
|
|
|
998
1024
|
Flag to extract the following additional File System tags: FileAttributes,
|
|
@@ -1437,7 +1463,9 @@ value should always exist if the tag exists.
|
|
|
1437
1463
|
|
|
1438
1464
|
Set the new value for a tag. The routine may be called multiple times to
|
|
1439
1465
|
set the values of many tags before using L</WriteInfo> to write the new
|
|
1440
|
-
values to an image.
|
|
1466
|
+
values to an image. These values remain queued for writing to subsequent
|
|
1467
|
+
files until L</SetNewValue> is called without arguments to reset the queued
|
|
1468
|
+
values.
|
|
1441
1469
|
|
|
1442
1470
|
For list-type tags (like Keywords), either call repeatedly with the same tag
|
|
1443
1471
|
name for each value, or call with a reference to the list of values.
|
|
@@ -1665,6 +1693,11 @@ values in list context.
|
|
|
1665
1693
|
|
|
1666
1694
|
=over 4
|
|
1667
1695
|
|
|
1696
|
+
=item Notes:
|
|
1697
|
+
|
|
1698
|
+
The API NoDups option applies when this routine is called, and removes
|
|
1699
|
+
duplicate items from values returned for List-type tags.
|
|
1700
|
+
|
|
1668
1701
|
=item Inputs:
|
|
1669
1702
|
|
|
1670
1703
|
0) ExifTool object reference
|
|
@@ -2242,6 +2275,29 @@ within L</ImageInfo>, before the file is closed.
|
|
|
2242
2275
|
|
|
2243
2276
|
=back
|
|
2244
2277
|
|
|
2278
|
+
=head2 AvailableOptions [static]
|
|
2279
|
+
|
|
2280
|
+
Get a list of available API options. (See L</Options> for option details.)
|
|
2281
|
+
|
|
2282
|
+
=over 4
|
|
2283
|
+
|
|
2284
|
+
=item Inputs:
|
|
2285
|
+
|
|
2286
|
+
(none)
|
|
2287
|
+
|
|
2288
|
+
=item Return Values:
|
|
2289
|
+
|
|
2290
|
+
Reference to list of available options. Each entry in the list is a list
|
|
2291
|
+
reference with 3 items: 0=Option name, 1=Default value, 2=Description.
|
|
2292
|
+
|
|
2293
|
+
my $opts = Image::ExifTool::<b>AvailableOptions</b>();
|
|
2294
|
+
foreach (@$opts) {
|
|
2295
|
+
my ($optionName, $defaultValue, $description) = @$_;
|
|
2296
|
+
...
|
|
2297
|
+
}
|
|
2298
|
+
|
|
2299
|
+
=back
|
|
2300
|
+
|
|
2245
2301
|
=head2 GetTagName [static]
|
|
2246
2302
|
|
|
2247
2303
|
Get name of tag from tag key. This is a convenience function that
|
|
@@ -2394,14 +2450,14 @@ XMP-Device, XMP-GAudio, XMP-GCamera, XMP-GCreations, XMP-GDepth, XMP-GFocus,
|
|
|
2394
2450
|
XMP-GImage, XMP-GPano, XMP-GSpherical, XMP-LImage, XMP-MP, XMP-MP1,
|
|
2395
2451
|
XMP-PixelLive, XMP-aas, XMP-acdsee, XMP-album, XMP-apple-fi, XMP-ast,
|
|
2396
2452
|
XMP-aux, XMP-cc, XMP-cell, XMP-crd, XMP-creatorAtom, XMP-crs, XMP-dc,
|
|
2397
|
-
XMP-dex, XMP-digiKam, XMP-drone-dji, XMP-dwc, XMP-exif, XMP-exifEX,
|
|
2398
|
-
XMP-expressionmedia, XMP-extensis, XMP-fpv, XMP-getty, XMP-hdr, XMP-
|
|
2399
|
-
XMP-iptcCore, XMP-iptcExt, XMP-lr, XMP-mediapro, XMP-microsoft,
|
|
2400
|
-
XMP-mwg-coll, XMP-mwg-kw, XMP-mwg-rs, XMP-nine, XMP-
|
|
2401
|
-
XMP-photomech, XMP-photoshop, XMP-plus, XMP-pmi, XMP-prism,
|
|
2402
|
-
XMP-prm, XMP-pur, XMP-rdf, XMP-sdc, XMP-swf, XMP-tiff, XMP-x,
|
|
2403
|
-
XMP-xmpBJ, XMP-xmpDM, XMP-xmpMM, XMP-xmpNote, XMP-xmpPLUS,
|
|
2404
|
-
XMP-xmpTPg, ZIP, iTunes
|
|
2453
|
+
XMP-dex, XMP-digiKam, XMP-drone-dji, XMP-dwc, XMP-et, XMP-exif, XMP-exifEX,
|
|
2454
|
+
XMP-expressionmedia, XMP-extensis, XMP-fpv, XMP-getty, XMP-hdr, XMP-hdrgm,
|
|
2455
|
+
XMP-ics, XMP-iptcCore, XMP-iptcExt, XMP-lr, XMP-mediapro, XMP-microsoft,
|
|
2456
|
+
XMP-mwg-coll, XMP-mwg-kw, XMP-mwg-rs, XMP-nine, XMP-panorama, XMP-pdf,
|
|
2457
|
+
XMP-pdfx, XMP-photomech, XMP-photoshop, XMP-plus, XMP-pmi, XMP-prism,
|
|
2458
|
+
XMP-prl, XMP-prm, XMP-pur, XMP-rdf, XMP-sdc, XMP-swf, XMP-tiff, XMP-x,
|
|
2459
|
+
XMP-xmp, XMP-xmpBJ, XMP-xmpDM, XMP-xmpMM, XMP-xmpNote, XMP-xmpPLUS,
|
|
2460
|
+
XMP-xmpRights, XMP-xmpTPg, ZIP, iTunes
|
|
2405
2461
|
|
|
2406
2462
|
=item Family 2 (Category):
|
|
2407
2463
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "exiftool-vendored.exe",
|
|
3
|
-
"version": "12.
|
|
3
|
+
"version": "12.65.0",
|
|
4
4
|
"description": "Vendored win32 ExifTool for Node.js",
|
|
5
5
|
"main": "./index.js",
|
|
6
6
|
"homepage": "https://github.com/mceachen/exiftool-vendored.exe#readme",
|
|
@@ -42,6 +42,7 @@
|
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
44
|
"mocha": "^10.2.0",
|
|
45
|
-
"prettier": "^
|
|
45
|
+
"prettier": "^3.0.3",
|
|
46
|
+
"release-it": "^16.1.5"
|
|
46
47
|
}
|
|
47
48
|
}
|