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.
Files changed (49) hide show
  1. package/bin/exiftool_files/Changes +108 -5
  2. package/bin/exiftool_files/README +2 -2
  3. package/bin/exiftool_files/arg_files/xmp2exif.args +2 -1
  4. package/bin/exiftool_files/config_files/example.config +1 -1
  5. package/bin/exiftool_files/exiftool.pl +40 -26
  6. package/bin/exiftool_files/fmt_files/gpx.fmt +1 -1
  7. package/bin/exiftool_files/fmt_files/gpx_wpt.fmt +1 -1
  8. package/bin/exiftool_files/lib/Image/ExifTool/BuildTagLookup.pm +16 -3
  9. package/bin/exiftool_files/lib/Image/ExifTool/CBOR.pm +331 -0
  10. package/bin/exiftool_files/lib/Image/ExifTool/Canon.pm +35 -5
  11. package/bin/exiftool_files/lib/Image/ExifTool/Charset.pm +2 -0
  12. package/bin/exiftool_files/lib/Image/ExifTool/DPX.pm +13 -2
  13. package/bin/exiftool_files/lib/Image/ExifTool/Exif.pm +98 -4
  14. package/bin/exiftool_files/lib/Image/ExifTool/FujiFilm.pm +1 -0
  15. package/bin/exiftool_files/lib/Image/ExifTool/Geotag.pm +13 -2
  16. package/bin/exiftool_files/lib/Image/ExifTool/GoPro.pm +16 -1
  17. package/bin/exiftool_files/lib/Image/ExifTool/ICC_Profile.pm +96 -4
  18. package/bin/exiftool_files/lib/Image/ExifTool/ID3.pm +15 -3
  19. package/bin/exiftool_files/lib/Image/ExifTool/JSON.pm +7 -3
  20. package/bin/exiftool_files/lib/Image/ExifTool/Jpeg2000.pm +60 -26
  21. package/bin/exiftool_files/lib/Image/ExifTool/Lang/nl.pm +60 -59
  22. package/bin/exiftool_files/lib/Image/ExifTool/M2TS.pm +81 -14
  23. package/bin/exiftool_files/lib/Image/ExifTool/MacOS.pm +2 -2
  24. package/bin/exiftool_files/lib/Image/ExifTool/Nikon.pm +12 -3
  25. package/bin/exiftool_files/lib/Image/ExifTool/NikonSettings.pm +10 -2
  26. package/bin/exiftool_files/lib/Image/ExifTool/Olympus.pm +8 -1
  27. package/bin/exiftool_files/lib/Image/ExifTool/Other.pm +93 -0
  28. package/bin/exiftool_files/lib/Image/ExifTool/PDF.pm +11 -12
  29. package/bin/exiftool_files/lib/Image/ExifTool/PNG.pm +7 -6
  30. package/bin/exiftool_files/lib/Image/ExifTool/Panasonic.pm +2 -2
  31. package/bin/exiftool_files/lib/Image/ExifTool/Pentax.pm +2 -1
  32. package/bin/exiftool_files/lib/Image/ExifTool/QuickTime.pm +67 -9
  33. package/bin/exiftool_files/lib/Image/ExifTool/QuickTimeStream.pl +133 -119
  34. package/bin/exiftool_files/lib/Image/ExifTool/README +9 -2
  35. package/bin/exiftool_files/lib/Image/ExifTool/RIFF.pm +6 -1
  36. package/bin/exiftool_files/lib/Image/ExifTool/Samsung.pm +47 -10
  37. package/bin/exiftool_files/lib/Image/ExifTool/Sony.pm +80 -32
  38. package/bin/exiftool_files/lib/Image/ExifTool/TagLookup.pm +139 -4
  39. package/bin/exiftool_files/lib/Image/ExifTool/TagNames.pod +224 -30
  40. package/bin/exiftool_files/lib/Image/ExifTool/WritePDF.pl +1 -0
  41. package/bin/exiftool_files/lib/Image/ExifTool/WritePNG.pl +2 -0
  42. package/bin/exiftool_files/lib/Image/ExifTool/WriteQuickTime.pl +17 -3
  43. package/bin/exiftool_files/lib/Image/ExifTool/Writer.pl +43 -0
  44. package/bin/exiftool_files/lib/Image/ExifTool/XMP.pm +21 -8
  45. package/bin/exiftool_files/lib/Image/ExifTool/XMP2.pl +4 -1
  46. package/bin/exiftool_files/lib/Image/ExifTool/XMPStruct.pl +3 -1
  47. package/bin/exiftool_files/lib/Image/ExifTool.pm +8892 -8839
  48. package/bin/exiftool_files/lib/Image/ExifTool.pod +24 -15
  49. 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, or
1192
- undef to overwrite the original file. May be '-' to write to stdout.
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, Password, QuickTimeHandler, Verbose
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 tag name of
1489
- '*' is special when deleting information, and will delete an entire group
1490
- even if some individual tags in the group are not writable, but only if a
1491
- single family 0 or 1 group is specified (otherwise the tags are deleted
1492
- individually). Use L</GetDeleteGroups> to get a list of deletable group
1493
- names, and see L<Image::ExifTool::TagNames|Image::ExifTool::TagNames> for a
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, Chapter#,
2303
- Composite, DICOM, DJI, DNG, DV, DjVu, DjVu-Meta, Ducky, EPPIM, EXE, EXIF,
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.28.0",
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": "^8.4.0",
34
- "prettier": "^2.3.0"
33
+ "mocha": "^9.1.3",
34
+ "prettier": "^2.4.1"
35
35
  }
36
36
  }