exiftool-vendored.exe 12.28.0 → 12.34.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/bin/exiftool_files/Changes +108 -5
- package/bin/exiftool_files/README +2 -2
- package/bin/exiftool_files/arg_files/xmp2exif.args +2 -1
- package/bin/exiftool_files/config_files/example.config +1 -1
- package/bin/exiftool_files/exiftool.pl +40 -26
- package/bin/exiftool_files/fmt_files/gpx.fmt +1 -1
- package/bin/exiftool_files/fmt_files/gpx_wpt.fmt +1 -1
- package/bin/exiftool_files/lib/Image/ExifTool/BuildTagLookup.pm +16 -3
- package/bin/exiftool_files/lib/Image/ExifTool/CBOR.pm +331 -0
- package/bin/exiftool_files/lib/Image/ExifTool/Canon.pm +35 -5
- package/bin/exiftool_files/lib/Image/ExifTool/Charset.pm +2 -0
- package/bin/exiftool_files/lib/Image/ExifTool/DPX.pm +13 -2
- package/bin/exiftool_files/lib/Image/ExifTool/Exif.pm +98 -4
- package/bin/exiftool_files/lib/Image/ExifTool/FujiFilm.pm +1 -0
- package/bin/exiftool_files/lib/Image/ExifTool/Geotag.pm +13 -2
- package/bin/exiftool_files/lib/Image/ExifTool/GoPro.pm +16 -1
- package/bin/exiftool_files/lib/Image/ExifTool/ICC_Profile.pm +96 -4
- package/bin/exiftool_files/lib/Image/ExifTool/ID3.pm +15 -3
- package/bin/exiftool_files/lib/Image/ExifTool/JSON.pm +7 -3
- package/bin/exiftool_files/lib/Image/ExifTool/Jpeg2000.pm +60 -26
- package/bin/exiftool_files/lib/Image/ExifTool/Lang/nl.pm +60 -59
- package/bin/exiftool_files/lib/Image/ExifTool/M2TS.pm +81 -14
- package/bin/exiftool_files/lib/Image/ExifTool/MacOS.pm +2 -2
- package/bin/exiftool_files/lib/Image/ExifTool/Nikon.pm +12 -3
- package/bin/exiftool_files/lib/Image/ExifTool/NikonSettings.pm +10 -2
- package/bin/exiftool_files/lib/Image/ExifTool/Olympus.pm +8 -1
- package/bin/exiftool_files/lib/Image/ExifTool/Other.pm +93 -0
- package/bin/exiftool_files/lib/Image/ExifTool/PDF.pm +11 -12
- package/bin/exiftool_files/lib/Image/ExifTool/PNG.pm +7 -6
- package/bin/exiftool_files/lib/Image/ExifTool/Panasonic.pm +2 -2
- package/bin/exiftool_files/lib/Image/ExifTool/Pentax.pm +2 -1
- package/bin/exiftool_files/lib/Image/ExifTool/QuickTime.pm +67 -9
- package/bin/exiftool_files/lib/Image/ExifTool/QuickTimeStream.pl +133 -119
- package/bin/exiftool_files/lib/Image/ExifTool/README +9 -2
- package/bin/exiftool_files/lib/Image/ExifTool/RIFF.pm +6 -1
- package/bin/exiftool_files/lib/Image/ExifTool/Samsung.pm +47 -10
- package/bin/exiftool_files/lib/Image/ExifTool/Sony.pm +80 -32
- package/bin/exiftool_files/lib/Image/ExifTool/TagLookup.pm +139 -4
- package/bin/exiftool_files/lib/Image/ExifTool/TagNames.pod +224 -30
- package/bin/exiftool_files/lib/Image/ExifTool/WritePDF.pl +1 -0
- package/bin/exiftool_files/lib/Image/ExifTool/WritePNG.pl +2 -0
- package/bin/exiftool_files/lib/Image/ExifTool/WriteQuickTime.pl +17 -3
- package/bin/exiftool_files/lib/Image/ExifTool/Writer.pl +43 -0
- package/bin/exiftool_files/lib/Image/ExifTool/XMP.pm +21 -8
- package/bin/exiftool_files/lib/Image/ExifTool/XMP2.pl +4 -1
- package/bin/exiftool_files/lib/Image/ExifTool/XMPStruct.pl +3 -1
- package/bin/exiftool_files/lib/Image/ExifTool.pm +8892 -8839
- package/bin/exiftool_files/lib/Image/ExifTool.pod +24 -15
- package/package.json +3 -3
|
@@ -860,6 +860,14 @@ commonly found in samples from other software, and it has been reported that
|
|
|
860
860
|
Apple QuickTime Player and Photos.apps will ignore ItemList tags if this is
|
|
861
861
|
missing. Default is 1.
|
|
862
862
|
|
|
863
|
+
=item QuickTimePad
|
|
864
|
+
|
|
865
|
+
Flag to preserve the padding of some QuickTime atoms when writing.
|
|
866
|
+
QuickTime-based Canon CR3 files pad the values of container atoms with null
|
|
867
|
+
bytes. This padding is removed by default when the file is rewritten, but
|
|
868
|
+
setting this option to 1 adds padding to preserve the original atom size if
|
|
869
|
+
the new atom would be smaller than the original. Default is undef.
|
|
870
|
+
|
|
863
871
|
=item QuickTimeUTC
|
|
864
872
|
|
|
865
873
|
Flag set to assume that QuickTime date/time values are stored as UTC,
|
|
@@ -1188,8 +1196,9 @@ file from scratch. A reference to a
|
|
|
1188
1196
|
L<File::RandomAccess|File::RandomAccess> object is also allowed as a source,
|
|
1189
1197
|
but in this case the destination is not optional.
|
|
1190
1198
|
|
|
1191
|
-
2) [optional] Destination file name, file reference, scalar reference
|
|
1192
|
-
undef to overwrite the original file. May be '-' to
|
|
1199
|
+
2) [optional] Destination file name, file reference, scalar reference to
|
|
1200
|
+
write to memory, or undef to overwrite the original file. May be '-' to
|
|
1201
|
+
write to stdout.
|
|
1193
1202
|
|
|
1194
1203
|
3) [optional] Destination file type. Ignored if a source is defined.
|
|
1195
1204
|
|
|
@@ -1234,8 +1243,8 @@ called with a source file name.
|
|
|
1234
1243
|
The following ExifTool options are effective in the call to L</WriteInfo>:
|
|
1235
1244
|
|
|
1236
1245
|
ByteOrder, Charset, CharsetEXIF, CharsetFileName, CharsetIPTC, Compact,
|
|
1237
|
-
Compress, FixBase, IgnoreMinorErrors,
|
|
1238
|
-
and WriteMode.
|
|
1246
|
+
Compress, FixBase, IgnoreMinorErrors, NoMultiExif, NoPDFList, Password,
|
|
1247
|
+
QuickTimeHandler, QuickTimePad, Verbose and WriteMode.
|
|
1239
1248
|
|
|
1240
1249
|
=head2 GetTagList
|
|
1241
1250
|
|
|
@@ -1485,13 +1494,13 @@ optional leading family numbers, separated by colons (eg. 'EXIF:Artist',
|
|
|
1485
1494
|
'XMP:Time:*'), which is equivalent to using a Group option argument. Also,
|
|
1486
1495
|
a '#' may be appended to the tag name (eg. 'EXIF:Orientation#'), with the
|
|
1487
1496
|
same effect as setting Type to 'ValueConv'. Wildcards ('*' and '?') may be
|
|
1488
|
-
used in the tag name to assign multiple tags simultaneously. A
|
|
1489
|
-
'*' is special when deleting information, and will delete an
|
|
1490
|
-
even if some individual tags in the group are not writable, but
|
|
1491
|
-
single family 0 or 1 group is specified (otherwise the tags are
|
|
1492
|
-
individually). Use L</GetDeleteGroups> to get a list of deletable
|
|
1493
|
-
names, and see L<Image::ExifTool::TagNames|Image::ExifTool::TagNames>
|
|
1494
|
-
complete list of tag names.
|
|
1497
|
+
used in the tag name to assign or delete multiple tags simultaneously. A
|
|
1498
|
+
tag name of '*' is special when deleting information, and will delete an
|
|
1499
|
+
entire group even if some individual tags in the group are not writable, but
|
|
1500
|
+
only if a single family 0 or 1 group is specified (otherwise the tags are
|
|
1501
|
+
deleted individually). Use L</GetDeleteGroups> to get a list of deletable
|
|
1502
|
+
group names, and see L<Image::ExifTool::TagNames|Image::ExifTool::TagNames>
|
|
1503
|
+
for a complete list of tag names.
|
|
1495
1504
|
|
|
1496
1505
|
2) [optional] New value for tag. Undefined to delete tag from file. May be
|
|
1497
1506
|
a scalar, scalar reference, list reference to set a list of values, or hash
|
|
@@ -2299,9 +2308,9 @@ Torrent, Trailer, UserParam, VCard, Vorbis, WTV, XML, XMP, ZIP
|
|
|
2299
2308
|
=item Family 1 (Specific Location):
|
|
2300
2309
|
|
|
2301
2310
|
AC3, AFCP, AIFF, APE, ASF, AVI1, Adobe, AdobeCM, AdobeDNG, Apple, Audible,
|
|
2302
|
-
CIFF, CameraIFD, Canon, CanonCustom, CanonRaw, CanonVRD, Casio,
|
|
2303
|
-
Composite, DICOM, DJI, DNG, DV, DjVu, DjVu-Meta, Ducky, EPPIM,
|
|
2304
|
-
ExifIFD, ExifTool, FITS, FLAC, FLIR, File, Flash, FlashPix, Font,
|
|
2311
|
+
CBOR, CIFF, CameraIFD, Canon, CanonCustom, CanonRaw, CanonVRD, Casio,
|
|
2312
|
+
Chapter#, Composite, DICOM, DJI, DNG, DV, DjVu, DjVu-Meta, Ducky, EPPIM,
|
|
2313
|
+
EXE, EXIF, ExifIFD, ExifTool, FITS, FLAC, FLIR, File, Flash, FlashPix, Font,
|
|
2305
2314
|
FotoStation, FujiFilm, FujiIFD, GE, GIF, GIMP, GPS, GeoTiff, GlobParamIFD,
|
|
2306
2315
|
GoPro, GraphConv, H264, HP, HTC, HTML, HTML-dc, HTML-ncc, HTML-office,
|
|
2307
2316
|
HTML-prod, HTML-vw96, HTTP-equiv, ICC-chrm, ICC-clrt, ICC-header, ICC-meas,
|
|
@@ -2334,7 +2343,7 @@ XMP-iptcCore, XMP-iptcExt, XMP-lr, XMP-mediapro, XMP-microsoft,
|
|
|
2334
2343
|
XMP-mwg-coll, XMP-mwg-kw, XMP-mwg-rs, XMP-pdf, XMP-pdfx, XMP-photomech,
|
|
2335
2344
|
XMP-photoshop, XMP-plus, XMP-pmi, XMP-prism, XMP-prl, XMP-prm, XMP-pur,
|
|
2336
2345
|
XMP-rdf, XMP-swf, XMP-tiff, XMP-x, XMP-xmp, XMP-xmpBJ, XMP-xmpDM, XMP-xmpMM,
|
|
2337
|
-
XMP-xmpNote, XMP-xmpPLUS, XMP-xmpRights, XMP-xmpTPg, ZIP
|
|
2346
|
+
XMP-xmpNote, XMP-xmpPLUS, XMP-xmpRights, XMP-xmpTPg, ZIP, iTunes
|
|
2338
2347
|
|
|
2339
2348
|
=item Family 2 (Category):
|
|
2340
2349
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "exiftool-vendored.exe",
|
|
3
|
-
"version": "12.
|
|
3
|
+
"version": "12.34.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",
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"update": "bash -c ./update.sh"
|
|
31
31
|
},
|
|
32
32
|
"devDependencies": {
|
|
33
|
-
"mocha": "^
|
|
34
|
-
"prettier": "^2.
|
|
33
|
+
"mocha": "^9.1.3",
|
|
34
|
+
"prettier": "^2.4.1"
|
|
35
35
|
}
|
|
36
36
|
}
|