exiftool-vendored 29.1.0 → 29.2.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/CHANGELOG.md CHANGED
@@ -25,6 +25,14 @@ vendored versions of ExifTool match the version that they vendor.
25
25
 
26
26
  ## Version history
27
27
 
28
+ ### v29.2.0
29
+
30
+ - 🌱 Upgraded ExifTool to version [13.25](https://exiftool.org/history.html#13.25).
31
+
32
+ - ✨ [ExifTool.write](https://photostructure.github.io/exiftool-vendored.js/classes/ExifTool.html#write) now supports `boolean` field values. Thanks for the [suggestion](https://github.com/photostructure/exiftool-vendored.js/issues/228), [Kira-Kitsune](https://github.com/Kira-Kitsune).
33
+
34
+ - 📦 Updated the default for [maxProcs](https://photostructure.github.io/exiftool-vendored.js/interfaces/ExifToolOptions.html#maxprocs) to use [availableParallelism](https://nodejs.org/api/os.html#osavailableparallelism) where available.
35
+
28
36
  ### v29.1.0
29
37
 
30
38
  - 🌱 Upgraded ExifTool to version [13.17](https://exiftool.org/history.html#13.17). Note that this release includes **seventeen** ExifTool version bumps (from November 2024 through January 2025--Phil Harvey has been _busy_!). Although I haven't seen any breaking changes in the Tags generation or test suite with the new versions, please do your own validation.
@@ -189,7 +197,7 @@ vendored versions of ExifTool match the version that they vendor.
189
197
 
190
198
  ### v25.0.0
191
199
 
192
- - 🌱/✨ ExifTool upgraded to [v12.80](https://exiftool.org/history.html#v12.80), which **adds support for reverse-geo lookups** and [several other geolocation features](https://exiftool.org/geolocation.html
200
+ - 🌱/✨ ExifTool upgraded to [v12.80](https://exiftool.org/history.html#v12.80), which **adds support for reverse-geo lookups** and [several other geolocation features](https://exiftool.org/geolocation.html)
193
201
 
194
202
  - ✨ If no vendored version of `exiftool` is available, we'll try to make do with whatever is available in the `PATH`.
195
203
 
@@ -1041,7 +1049,7 @@ const exiftool = new ExifTool({
1041
1049
 
1042
1050
  ### v9.1.0
1043
1051
 
1044
- - ✨ Aded `ExifTool.deleteAllTags`.
1052
+ - ✨ Added `ExifTool.deleteAllTags`.
1045
1053
 
1046
1054
  ### v9.0.0
1047
1055
 
@@ -1412,7 +1420,7 @@ most users won't be affected, unless you've been waiting for this feature!)
1412
1420
 
1413
1421
  ### v6.0.0
1414
1422
 
1415
- - 💔 `ExifTool`'s many constructor parameters turned out to be quite unweildy.
1423
+ - 💔 `ExifTool`'s many constructor parameters turned out to be quite unwieldy.
1416
1424
  Version 6's [constructor](https://photostructure.github.io/exiftool-vendored.js/classes/exiftool.html#constructor) now takes an [options
1417
1425
  hash](https://photostructure.github.io/exiftool-vendored.js/interfaces/exiftooloptions.html).
1418
1426
  If you used the defaults, those haven't changed, and your code won't need to
@@ -1471,7 +1479,7 @@ most users won't be affected, unless you've been waiting for this feature!)
1471
1479
  - 🌱 ExifTool upgraded to
1472
1480
  [v11.02](https://exiftool.org/history.html#v11.02).
1473
1481
  - 📦 taskRetries default is now 1, which should allow recovery of the rare
1474
- RPC/fork error, but actual corrupt files and realy errors can be rejected
1482
+ RPC/fork error, but actual corrupt files and real errors can be rejected
1475
1483
  sooner.
1476
1484
  - 📦 Pull in latest dependencies, include new batch-cluster.
1477
1485
 
@@ -1591,7 +1599,7 @@ most users won't be affected, unless you've been waiting for this feature!)
1591
1599
 
1592
1600
  - 🌱 ExifTool upgraded to
1593
1601
  [v10.70](https://exiftool.org/history.html#v10.70)
1594
- - 📦 Replace tslint and tsfmt with prettier
1602
+ - 📦 Replace `tslint` and `tsfmt` with `prettier`
1595
1603
  - 📦 Add test coverage report
1596
1604
 
1597
1605
  (due to buggy interactions between `yarn` and `np`, v4.13.0 was published in
@@ -1644,7 +1652,7 @@ an incomplete state and subsequently unpublished)
1644
1652
  - 🌱 ExifTool upgraded to
1645
1653
  [v10.66](https://exiftool.org/history.html#v10.66)
1646
1654
  - ✨ Pull in new `batch-cluster` with more aggressive child process management
1647
- (uses `taskkill` on win32 platforms and `kill -9` on unixish platforms)
1655
+ (uses `taskkill` on win32 platforms and `kill -9` on unix-ish platforms)
1648
1656
  - ✨ ExifTool constructor defaults were relaxed to handle slow NAS
1649
1657
  - ✨ Upgraded to Mocha 4.0. Added calls to `exiftool.end()` in test `after`
1650
1658
  blocks and the README so `--exit` isn't necessary.
@@ -26,7 +26,15 @@ class BinaryExtractionTask extends ExifToolTask_1.ExifToolTask {
26
26
  ...FilenameCharsetArgs_1.Utf8FilenameCharsetArgs,
27
27
  "-b", // -binary
28
28
  "-" + tagname,
29
- // capital W allows destination files to not have a pattern:
29
+ // Capital W allows destination files to not have a pattern. See
30
+ // https://exiftool.org/exiftool_pod.html#W-FMT--tagOut
31
+ //
32
+ // Prior code used -w with %0f "to avoid shell expansion", but as this
33
+ // command gets sent directly to exiftool thanks to stay_open mode, we
34
+ // don't need to worry about shell expansion.
35
+ //
36
+ // I also tried `-out` instead of `-W`, and that didn't work at least on
37
+ // ExifTool 13.17.
30
38
  forceWrite ? "-W!" : "-W",
31
39
  node_path_1.default.resolve(imgDest),
32
40
  node_path_1.default.resolve(imgSrc),
@@ -1 +1 @@
1
- {"version":3,"file":"BinaryExtractionTask.js","sourceRoot":"","sources":["../src/BinaryExtractionTask.ts"],"names":[],"mappings":";;;;;;AAAA,qCAAoC;AACpC,0DAA6B;AAE7B,iDAA8C;AAC9C,+DAAgE;AAEhE,qCAA+B;AAQ/B,MAAM,QAAQ,GAAG,gCAAgC,CAAC;AAElD;;;GAGG;AACH,MAAa,oBAAqB,SAAQ,2BAA2B;IACnE,YAAoB,IAAc,EAAE,OAAqC;QACvE,KAAK,CAAC,IAAI,EAAE,OAAO,CAAC,CAAC;IACvB,CAAC;IAED,MAAM,CAAC,GAAG,CACR,OAAe,EACf,MAAc,EACd,OAAe,EACf,OAAqC;QAErC,2CAA2C;QAC3C,IAAA,mBAAS,EAAC,mBAAI,CAAC,OAAO,CAAC,OAAO,CAAC,EAAE,EAAE,SAAS,EAAE,IAAI,EAAE,CAAC,CAAC;QAEtD,MAAM,UAAU,GAAG,OAAO,EAAE,UAAU,IAAI,KAAK,CAAC;QAEhD,MAAM,IAAI,GAAG;YACX,GAAG,6CAAuB;YAC1B,IAAI,EAAE,UAAU;YAChB,GAAG,GAAG,OAAO;YACb,4DAA4D;YAC5D,UAAU,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,IAAI;YACzB,mBAAI,CAAC,OAAO,CAAC,OAAO,CAAC;YACrB,mBAAI,CAAC,OAAO,CAAC,MAAM,CAAC;SACrB,CAAC;QACF,OAAO,IAAI,oBAAoB,CAAC,IAAI,EAAE,OAAO,CAAC,CAAC;IACjD,CAAC;IAED,KAAK,CAAC,MAAc,EAAE,GAAW;QAC/B,MAAM,CAAC,GAAG,IAAA,YAAG,EAAC,MAAM,CAAC,CAAC,IAAI,EAAE,CAAC;QAC7B,MAAM,CAAC,GAAG,QAAQ,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;QAC3B,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;YAChB,MAAM,GAAG,CAAC;QACZ,CAAC;aAAM,IAAI,CAAC,IAAI,IAAI,EAAE,CAAC;YACrB,MAAM,IAAI,KAAK,CAAC,uCAAuC,GAAG,MAAM,GAAG,GAAG,CAAC,CAAC;QAC1E,CAAC;aAAM,IAAI,CAAC,CAAC,CAAC,CAAC,KAAK,GAAG,EAAE,CAAC;YACxB,OAAO;QACT,CAAC;aAAM,CAAC;YACN,2EAA2E;YAC3E,OAAO,CAAC,CAAC;QACX,CAAC;IACH,CAAC;CACF;AA1CD,oDA0CC"}
1
+ {"version":3,"file":"BinaryExtractionTask.js","sourceRoot":"","sources":["../src/BinaryExtractionTask.ts"],"names":[],"mappings":";;;;;;AAAA,qCAAoC;AACpC,0DAA6B;AAE7B,iDAA8C;AAC9C,+DAAgE;AAEhE,qCAA+B;AAQ/B,MAAM,QAAQ,GAAG,gCAAgC,CAAC;AAElD;;;GAGG;AACH,MAAa,oBAAqB,SAAQ,2BAA2B;IACnE,YAAoB,IAAc,EAAE,OAAqC;QACvE,KAAK,CAAC,IAAI,EAAE,OAAO,CAAC,CAAC;IACvB,CAAC;IAED,MAAM,CAAC,GAAG,CACR,OAAe,EACf,MAAc,EACd,OAAe,EACf,OAAqC;QAErC,2CAA2C;QAC3C,IAAA,mBAAS,EAAC,mBAAI,CAAC,OAAO,CAAC,OAAO,CAAC,EAAE,EAAE,SAAS,EAAE,IAAI,EAAE,CAAC,CAAC;QAEtD,MAAM,UAAU,GAAG,OAAO,EAAE,UAAU,IAAI,KAAK,CAAC;QAEhD,MAAM,IAAI,GAAG;YACX,GAAG,6CAAuB;YAC1B,IAAI,EAAE,UAAU;YAChB,GAAG,GAAG,OAAO;YACb,gEAAgE;YAChE,uDAAuD;YACvD,EAAE;YACF,sEAAsE;YACtE,sEAAsE;YACtE,6CAA6C;YAC7C,EAAE;YACF,wEAAwE;YACxE,kBAAkB;YAClB,UAAU,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,IAAI;YACzB,mBAAI,CAAC,OAAO,CAAC,OAAO,CAAC;YACrB,mBAAI,CAAC,OAAO,CAAC,MAAM,CAAC;SACrB,CAAC;QACF,OAAO,IAAI,oBAAoB,CAAC,IAAI,EAAE,OAAO,CAAC,CAAC;IACjD,CAAC;IAED,KAAK,CAAC,MAAc,EAAE,GAAW;QAC/B,MAAM,CAAC,GAAG,IAAA,YAAG,EAAC,MAAM,CAAC,CAAC,IAAI,EAAE,CAAC;QAC7B,MAAM,CAAC,GAAG,QAAQ,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;QAC3B,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;YAChB,MAAM,GAAG,CAAC;QACZ,CAAC;aAAM,IAAI,CAAC,IAAI,IAAI,EAAE,CAAC;YACrB,MAAM,IAAI,KAAK,CAAC,uCAAuC,GAAG,MAAM,GAAG,GAAG,CAAC,CAAC;QAC1E,CAAC;aAAM,IAAI,CAAC,CAAC,CAAC,CAAC,KAAK,GAAG,EAAE,CAAC;YACxB,OAAO;QACT,CAAC;aAAM,CAAC;YACN,2EAA2E;YAC3E,OAAO,CAAC,CAAC;QACX,CAAC;IACH,CAAC;CACF;AAlDD,oDAkDC"}
@@ -35,5 +35,13 @@ var __importStar = (this && this.__importStar) || (function () {
35
35
  Object.defineProperty(exports, "__esModule", { value: true });
36
36
  exports.DefaultMaxProcs = void 0;
37
37
  const _os = __importStar(require("node:os"));
38
- exports.DefaultMaxProcs = Math.max(1, Math.floor(_os.cpus().length / 4));
38
+ const Object_1 = require("./Object");
39
+ function maxCpus() {
40
+ // https://nodejs.org/api/os.html#osavailableparallelism was added in node
41
+ // 18.14, but people may still be running archaic versions of node.
42
+ return Math.max(1, (0, Object_1.isFunction)(_os.availableParallelism)
43
+ ? _os.availableParallelism()
44
+ : _os.cpus().length);
45
+ }
46
+ exports.DefaultMaxProcs = Math.ceil(maxCpus() / 4);
39
47
  //# sourceMappingURL=DefaultMaxProcs.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"DefaultMaxProcs.js","sourceRoot":"","sources":["../src/DefaultMaxProcs.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA+B;AAElB,QAAA,eAAe,GAAG,IAAI,CAAC,GAAG,CAAC,CAAC,EAAE,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,EAAE,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC,CAAC"}
1
+ {"version":3,"file":"DefaultMaxProcs.js","sourceRoot":"","sources":["../src/DefaultMaxProcs.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA+B;AAC/B,qCAAsC;AAEtC,SAAS,OAAO;IACd,0EAA0E;IAC1E,mEAAmE;IAEnE,OAAO,IAAI,CAAC,GAAG,CACb,CAAC,EACD,IAAA,mBAAU,EAAC,GAAG,CAAC,oBAAoB,CAAC;QAClC,CAAC,CAAC,GAAG,CAAC,oBAAoB,EAAE;QAC5B,CAAC,CAAC,GAAG,CAAC,IAAI,EAAE,CAAC,MAAM,CACtB,CAAC;AACJ,CAAC;AAEY,QAAA,eAAe,GAAG,IAAI,CAAC,IAAI,CAAC,OAAO,EAAE,GAAG,CAAC,CAAC,CAAC"}
package/dist/Tags.d.ts CHANGED
@@ -18,7 +18,7 @@ import { Version } from "./Version";
18
18
  export interface ExifToolTags {
19
19
  /** ☆☆☆☆ ✔ Example: "File is empty" */
20
20
  Error?: string;
21
- /** ★★★★ ✔ Example: 13.16 */
21
+ /** ★★★★ ✔ Example: 13.25 */
22
22
  ExifToolVersion?: number;
23
23
  /** ☆☆☆☆ Example: "path/to/file.jpg" */
24
24
  SourceFile?: string;
@@ -44,11 +44,11 @@ export interface FileTags {
44
44
  EncodingProcess?: string;
45
45
  /** ★★★★ ✔ Example: "Little-endian (Intel, II)" */
46
46
  ExifByteOrder?: string;
47
- /** ★★★★ ✔ Example: "2025:01:29 11:37:49-08:00" */
47
+ /** ★★★★ ✔ Example: "2025:03:11 14:33:16-07:00" */
48
48
  FileAccessDate?: ExifDateTime | string;
49
49
  /** ☆☆☆☆ Example: */
50
50
  FileCreateDate?: ExifDateTime | string;
51
- /** ★★★★ ✔ Example: "2025:01:25 21:09:20-08:00" */
51
+ /** ★★★★ ✔ Example: "2025:03:07 18:53:49-08:00" */
52
52
  FileInodeChangeDate?: ExifDateTime | string;
53
53
  /** ★★★★ ✔ Example: "2024:06:15 18:39:22-07:00" */
54
54
  FileModifyDate?: ExifDateTime | string;
@@ -93,7 +93,7 @@ export interface CompositeTags {
93
93
  AdvancedSceneMode?: string;
94
94
  /** ★★★★ ✔ Example: 90 */
95
95
  Aperture?: number;
96
- /** ☆☆☆☆ ✔ Example: "On" */
96
+ /** ★☆☆☆ ✔ Example: "On" */
97
97
  AutoFocus?: string;
98
98
  /** ☆☆☆☆ ✔ Example: "8.7 Mbps" */
99
99
  AvgBitrate?: string;
@@ -105,6 +105,8 @@ export interface CompositeTags {
105
105
  CircleOfConfusion?: string;
106
106
  /** ☆☆☆☆ ✔ Example: 0 */
107
107
  ConditionalFEC?: number;
108
+ /** ☆☆☆☆ ✔ Example: "On" */
109
+ ContrastDetectAF?: string;
108
110
  /** ☆☆☆☆ ✔ Example: "2021:03:16 18:14:25" */
109
111
  DigitalCreationDateTime?: ExifDateTime | string;
110
112
  /** ★★☆☆ ✔ Example: "inf (9.66 m - inf)" */
@@ -141,6 +143,8 @@ export interface CompositeTags {
141
143
  OriginalDecisionData?: BinaryField | string;
142
144
  /** ☆☆☆☆ Example: "9.9 um" */
143
145
  PeakSpectralSensitivity?: string;
146
+ /** ☆☆☆☆ ✔ Example: "On (73-point)" */
147
+ PhaseDetectAF?: string;
144
148
  /** ★★★☆ ✔ Example: "(Binary data 37244 bytes, use -b option to extract)" */
145
149
  PreviewImage?: BinaryField;
146
150
  /** ★★☆☆ ✔ Example: 38.625 */
@@ -245,7 +249,11 @@ export interface APPTags {
245
249
  DCTEncodeVersion?: number;
246
250
  /** ☆☆☆☆ ✔ Example: "Photo Global Settings" */
247
251
  DeviceName?: string;
248
- /** ☆☆☆☆ Example: "(Binary data 1011393 bytes, use -b option to extract)" */
252
+ /** ☆☆☆☆Example: 148.34216 */
253
+ DiagonalFieldOfView?: number;
254
+ /** ☆☆☆☆ ✔ Example: "Yes" */
255
+ DigitalZoomOn?: string;
256
+ /** ☆☆☆☆ Example: "(Binary data 275008 bytes, use -b option to extract)" */
249
257
  EmbeddedImage?: BinaryField | string;
250
258
  /** ☆☆☆☆ Example: 960 */
251
259
  EmbeddedImageHeight?: number;
@@ -265,6 +273,8 @@ export interface APPTags {
265
273
  ExposRatio?: number;
266
274
  /** ☆☆☆☆ Example: 3687 */
267
275
  Exposure?: number;
276
+ /** ☆☆☆☆ ✔ Example: "AUTO" */
277
+ ExposureType?: string;
268
278
  /** ☆☆☆☆ Example: "46.1 deg" */
269
279
  FieldOfView?: string;
270
280
  /** ☆☆☆☆ Example: "NOF" */
@@ -329,10 +339,10 @@ export interface APPTags {
329
339
  JPEG1?: number;
330
340
  /** ☆☆☆☆ Example: "T199104" */
331
341
  LensPartNumber?: string;
342
+ /** ☆☆☆☆ ✔ Example: "GPRO" */
343
+ LensProjection?: string;
332
344
  /** ☆☆☆☆ ✔ Example: 0 */
333
345
  LightS?: number;
334
- /** ☆☆☆☆ ✔ Example: "AUTO" */
335
- MaximumShutterAngle?: string;
336
346
  /** ☆☆☆☆ Example: " 10.6" */
337
347
  Mean?: string;
338
348
  /** ☆☆☆☆ Example: 1 */
@@ -382,12 +392,12 @@ export interface APPTags {
382
392
  /** ☆☆☆☆ ✔ Example: 0 */
383
393
  Protect?: number;
384
394
  /** ☆☆☆☆ ✔ Example: "On" */
385
- ProTune?: string;
395
+ Protune?: string;
386
396
  /** ☆☆☆☆ Example: 6929 */
387
397
  R5100?: number;
388
398
  /** ☆☆☆☆ ✔ Example: "4_1SEC" */
389
399
  Rate?: string;
390
- /** ☆☆☆☆ Example: "(Binary data 614604 bytes, use -b option to extract)" */
400
+ /** ☆☆☆☆ Example: "(Binary data 153804 bytes, use -b option to extract)" */
391
401
  RawThermalImage?: BinaryField | string;
392
402
  /** ☆☆☆☆ Example: 90 */
393
403
  RawThermalImageHeight?: number;
@@ -431,6 +441,8 @@ export interface APPTags {
431
441
  RStrobe?: number;
432
442
  /** ☆☆☆☆ ✔ Example: "8259,0,14bfe,a184,11987,1e4f1,0,7c0000,40b60000,56a05e6,6…0038,d7" */
433
443
  S0?: string;
444
+ /** ☆☆☆☆ ✔ Example: "No" */
445
+ SpotMeter?: string;
434
446
  /** ☆☆☆☆ Example: 0 */
435
447
  StrobeTime?: number;
436
448
  /** ☆☆☆☆ ✔ Example: "bd1,1,5,2beec,b5,ec15" */
@@ -462,7 +474,7 @@ export interface APPTags {
462
474
  * @see https://exiftool.org/TagNames/FlashPix.html
463
475
  */
464
476
  export interface FlashPixTags {
465
- /** ☆☆☆☆ Example: "(Binary data 18 bytes, use -b option to extract)" */
477
+ /** ☆☆☆☆ Example: "(Binary data 20796 bytes, use -b option to extract)" */
466
478
  AudioStream?: BinaryField | string;
467
479
  /** ☆☆☆☆ ✔ Example: "Unicode UTF-16, little endian" */
468
480
  CodePage?: string;
@@ -545,6 +557,8 @@ export interface EXIFTags {
545
557
  CompositeImage?: string;
546
558
  /** ★★★★ ✔ Example: 90 */
547
559
  CompressedBitsPerPixel?: number;
560
+ /** ★★★★ ✔ Example: "n/a" */
561
+ Contrast?: string;
548
562
  /** ★★★☆ ✔ Example: "© Chuckles McSnortypants, Inc." */
549
563
  Copyright?: string;
550
564
  /** ★★★★ ✔ Example: "2218:09:22 02:32:14" */
@@ -559,6 +573,8 @@ export interface EXIFTags {
559
573
  DefaultCropSize?: string;
560
574
  /** ☆☆☆☆ ✔ Example: "(Binary data 0 bytes, use -b option to extract)" */
561
575
  DeviceSettingDescription?: BinaryField | string;
576
+ /** ★★★☆ ✔ Example: 8.1319764 */
577
+ DigitalZoomRatio?: number;
562
578
  /** ☆☆☆☆ ✔ Example: "1.3.0.0" */
563
579
  DNGBackwardVersion?: string;
564
580
  /** ☆☆☆☆ ✔ Example: "1.4.0.0" */
@@ -571,6 +587,8 @@ export interface EXIFTags {
571
587
  ExifImageWidth?: number;
572
588
  /** ★☆☆☆ ✔ Example: 83 */
573
589
  ExposureIndex?: number;
590
+ /** ★★★★ ✔ Example: "Unknown (Auto exposure)" */
591
+ ExposureMode?: string;
574
592
  /** ★★★★ ✔ Example: "iAuto+" */
575
593
  ExposureProgram?: string;
576
594
  /** ★★★★ ✔ Example: "inf" */
@@ -677,7 +695,7 @@ export interface EXIFTags {
677
695
  ISO?: number;
678
696
  /** ☆☆☆☆ ✔ Example: 80 */
679
697
  ISOSpeed?: number;
680
- /** ☆☆☆☆ ✔ Example: "(Binary data 687616 bytes, use -b option to extract)" */
698
+ /** ☆☆☆☆ ✔ Example: "(Binary data 772608 bytes, use -b option to extract)" */
681
699
  JpgFromRaw?: BinaryField;
682
700
  /** ☆☆☆☆ ✔ Example: 845574 */
683
701
  JpgFromRawLength?: number;
@@ -787,6 +805,8 @@ export interface EXIFTags {
787
805
  RowsPerStrip?: number;
788
806
  /** ☆☆☆☆ ✔ Example: 3 */
789
807
  SamplesPerPixel?: number;
808
+ /** ★★★★ ✔ Example: "n/a" */
809
+ Saturation?: string;
790
810
  /** ★★★★ ✔ Example: "Unknown (Standard)" */
791
811
  SceneCaptureType?: string;
792
812
  /** ★★★★ ✔ Example: "Unknown (Directly photographed)" */
@@ -795,6 +815,8 @@ export interface EXIFTags {
795
815
  SensingMethod?: string;
796
816
  /** ★★☆☆ ✔ Example: "Unknown" */
797
817
  SensitivityType?: string;
818
+ /** ★★★★ ✔ Example: "n/a" */
819
+ Sharpness?: string;
798
820
  /** ★★★☆ ✔ Example: "1/999963365" */
799
821
  ShutterSpeedValue?: string;
800
822
  /** ★★★★ ✔ Example: "https://PhotoStructure.com/" */
@@ -829,7 +851,7 @@ export interface EXIFTags {
829
851
  SubSecTimeDigitized?: number;
830
852
  /** ★☆☆☆ ✔ Example: 999 */
831
853
  SubSecTimeOriginal?: number;
832
- /** ★★★★ ✔ Example: "(Binary data 12652 bytes, use -b option to extract)" */
854
+ /** ★★★★ ✔ Example: "(Binary data 39781 bytes, use -b option to extract)" */
833
855
  ThumbnailImage?: BinaryField;
834
856
  /** ★★★★ ✔ Example: 9998 */
835
857
  ThumbnailLength?: number;
@@ -841,7 +863,7 @@ export interface EXIFTags {
841
863
  TileByteCounts?: BinaryField | string;
842
864
  /** ☆☆☆☆ ✔ Example: 512 */
843
865
  TileLength?: number;
844
- /** ☆☆☆☆ ✔ Example: "(Binary data 507 bytes, use -b option to extract)" */
866
+ /** ☆☆☆☆ ✔ Example: "(Binary data 508 bytes, use -b option to extract)" */
845
867
  TileOffsets?: BinaryField | string;
846
868
  /** ☆☆☆☆ ✔ Example: 512 */
847
869
  TileWidth?: number;
@@ -855,6 +877,8 @@ export interface EXIFTags {
855
877
  UserComment?: string;
856
878
  /** ☆☆☆☆ ✔ Example: 0.1 */
857
879
  WaterDepth?: number;
880
+ /** ★★★★ ✔ Example: "White Preset" */
881
+ WhiteBalance?: string;
858
882
  /** ☆☆☆☆ ✔ Example: 65535 */
859
883
  WhiteLevel?: number;
860
884
  /** ☆☆☆☆ ✔ Example: "9696 8192 8192 7136" */
@@ -1088,6 +1112,8 @@ export interface QuickTimeTags {
1088
1112
  MediaModifyDate?: ExifDateTime | string;
1089
1113
  /** ☆☆☆☆ ✔ Example: 8000 */
1090
1114
  MediaTimeScale?: number;
1115
+ /** ☆☆☆☆ ✔ Example: "583d47d07afe1fbcfa0894d17e66051f07e1230a0000072550c3000000000000" */
1116
+ MediaUID?: string;
1091
1117
  /** ☆☆☆☆ ✔ Example: "mebx" */
1092
1118
  MetaFormat?: string;
1093
1119
  /** ☆☆☆☆ ✔ Example: "2011.7.0" */
@@ -1441,10 +1467,14 @@ export interface MakerNotesTags {
1441
1467
  AFConfidence?: number;
1442
1468
  /** ☆☆☆☆ ✔ Example: "Case 11" */
1443
1469
  AFConfigTool?: string;
1470
+ /** ☆☆☆☆ ✔ Example: "Yes" */
1471
+ AFCoordinatesAvailable?: string;
1444
1472
  /** ☆☆☆☆ Example: "(Binary data 256 bytes, use -b option to extract)" */
1445
1473
  AFDebugInfo?: BinaryField | string;
1446
1474
  /** ☆☆☆☆ ✔ Example: 9 */
1447
1475
  AFDefocus?: number;
1476
+ /** ☆☆☆☆ ✔ Example: "Phase Detect" */
1477
+ AFDetectionMethod?: string;
1448
1478
  /** ☆☆☆☆ ✔ Example: "Quick mode" */
1449
1479
  AFDuringLiveView?: string;
1450
1480
  /** ☆☆☆☆ ✔ Example: "On (2)" */
@@ -1591,8 +1621,6 @@ export interface MakerNotesTags {
1591
1621
  ApproximateFNumber?: number;
1592
1622
  /** ☆☆☆☆ ✔ Example: "Soft Focus; 1280; 0; 0" */
1593
1623
  ArtFilter?: string;
1594
- /** ☆☆☆☆ ✔ Example: "Off; 0; 0; Partial Color 0; No Effect; 0; No Color Filter…0; 0; 0" */
1595
- ArtFilterEffect?: string;
1596
1624
  /** ☆☆☆☆ Example: "Unknown (8305)" */
1597
1625
  ArtMode?: string;
1598
1626
  /** ☆☆☆☆ Example: "0 0 0" */
@@ -2037,14 +2065,10 @@ export interface MakerNotesTags {
2037
2065
  ContinuousShootingSpeed?: string;
2038
2066
  /** ☆☆☆☆ ✔ Example: "Disable; 99 shots" */
2039
2067
  ContinuousShotLimit?: string;
2040
- /** ★★★★ ✔ Example: "n/a" */
2041
- Contrast?: string;
2042
2068
  /** ☆☆☆☆ ✔ Example: 0 */
2043
2069
  ContrastAuto?: number;
2044
2070
  /** ☆☆☆☆ ✔ Example: "(Binary data 578 bytes, use -b option to extract)" */
2045
2071
  ContrastCurve?: BinaryField | string;
2046
- /** ☆☆☆☆ ✔ Example: "On (2)" */
2047
- ContrastDetectAF?: string;
2048
2072
  /** ☆☆☆☆ Example: "496 184 48 48" */
2049
2073
  ContrastDetectAFArea?: string;
2050
2074
  /** ☆☆☆☆ ✔ Example: "Yes" */
@@ -2147,7 +2171,7 @@ export interface MakerNotesTags {
2147
2171
  CustomWBSetting?: string;
2148
2172
  /** ☆☆☆☆ ✔ Example: "Yes" */
2149
2173
  DarkFocusEnvironment?: string;
2150
- /** ★★☆☆ ✔ Example: "(Binary data 280 bytes, use -b option to extract)" */
2174
+ /** ★★☆☆ ✔ Example: "(Binary data 114 bytes, use -b option to extract)" */
2151
2175
  DataDump?: BinaryField | string;
2152
2176
  /** ☆☆☆☆ ✔ Example: 8289 */
2153
2177
  DataScaling?: number;
@@ -2197,10 +2221,6 @@ export interface MakerNotesTags {
2197
2221
  DigitalLensOptimizerSetting?: string;
2198
2222
  /** ★★★☆ ✔ Example: "undef.0" */
2199
2223
  DigitalZoom?: string;
2200
- /** ☆☆☆☆ Example: "On" */
2201
- DigitalZoomOn?: string;
2202
- /** ★★★☆ ✔ Example: 8.1319764 */
2203
- DigitalZoomRatio?: number;
2204
2224
  /** ☆☆☆☆ ✔ Example: 897 */
2205
2225
  DirectoryIndex?: number;
2206
2226
  /** ☆☆☆☆ ✔ Example: 999 */
@@ -2329,8 +2349,6 @@ export interface MakerNotesTags {
2329
2349
  ExposureIndicator?: number;
2330
2350
  /** ☆☆☆☆ ✔ Example: "1/3-stop set, 1/3-stop comp." */
2331
2351
  ExposureLevelIncrements?: string;
2332
- /** ★★★★ ✔ Example: "Unknown (Auto exposure)" */
2333
- ExposureMode?: string;
2334
2352
  /** ☆☆☆☆ ✔ Example: "Spot metering" */
2335
2353
  ExposureModeInManual?: string;
2336
2354
  /** ☆☆☆☆ ✔ Example: 0 */
@@ -2453,8 +2471,6 @@ export interface MakerNotesTags {
2453
2471
  FilterEffect?: string;
2454
2472
  /** ☆☆☆☆ ✔ Example: "n/a" */
2455
2473
  FilterEffectAuto?: string;
2456
- /** ☆☆☆☆ ✔ Example: "Unknown (0x10000)" */
2457
- FilterEffectMonochrome?: string;
2458
2474
  /** ☆☆☆☆ ✔ Example: "On" */
2459
2475
  FinderDisplayDuringExposure?: string;
2460
2476
  /** ☆☆☆☆ ✔ Example: "On; Normal" */
@@ -2671,15 +2687,17 @@ export interface MakerNotesTags {
2671
2687
  FocusPixel?: string;
2672
2688
  /** ☆☆☆☆ ✔ Example: "Auto" */
2673
2689
  FocusPointPersistence?: string;
2690
+ /** ☆☆☆☆ ✔ Example: "Off" */
2691
+ FocusPointSchema?: string;
2674
2692
  /** ☆☆☆☆ Example: "Normal" */
2675
2693
  FocusPointSelectionSpeed?: string;
2676
2694
  /** ☆☆☆☆ ✔ Example: "Wrap" */
2677
2695
  FocusPointWrap?: string;
2678
2696
  /** ☆☆☆☆ ✔ Example: 999 */
2679
2697
  FocusPosition?: number;
2680
- /** ☆☆☆☆ ✔ Example: "n/a" */
2698
+ /** ☆☆☆☆ ✔ Example: "C" */
2681
2699
  FocusPositionHorizontal?: string;
2682
- /** ☆☆☆☆ ✔ Example: "n/a" */
2700
+ /** ☆☆☆☆ ✔ Example: "C" */
2683
2701
  FocusPositionVertical?: string;
2684
2702
  /** ☆☆☆☆ ✔ Example: "AF Used; 96" */
2685
2703
  FocusProcess?: string;
@@ -3119,8 +3137,6 @@ export interface MakerNotesTags {
3119
3137
  LightCondition?: number;
3120
3138
  /** ☆☆☆☆ Example: "Shadow Enhance Low" */
3121
3139
  LightingMode?: string;
3122
- /** ☆☆☆☆ Example: 8 */
3123
- LightReading?: number;
3124
3140
  /** ☆☆☆☆ Example: "Unknown (512)" */
3125
3141
  LightSourceSpecial?: string;
3126
3142
  /** ☆☆☆☆ ✔ Example: "LCD Backlight and Shooting Information" */
@@ -3579,8 +3595,6 @@ export interface MakerNotesTags {
3579
3595
  PeripheralLightingSetting?: string;
3580
3596
  /** ☆☆☆☆ ✔ Example: 70 */
3581
3597
  PeripheralLightingValue?: number;
3582
- /** ☆☆☆☆ ✔ Example: "On (81-point)" */
3583
- PhaseDetectAF?: string;
3584
3598
  /** ☆☆☆☆ ✔ Example: "Vivid" */
3585
3599
  PhotoEffect?: string;
3586
3600
  /** ☆☆☆☆ ✔ Example: "F7248739-9D7D-45ED-8B0C-63530491EEA8" */
@@ -3885,8 +3899,6 @@ export interface MakerNotesTags {
3885
3899
  SanyoQuality?: string;
3886
3900
  /** ☆☆☆☆ Example: "(Binary data 10313 bytes, use -b option to extract)" */
3887
3901
  SanyoThumbnail?: BinaryField | string;
3888
- /** ★★★★ ✔ Example: "n/a" */
3889
- Saturation?: string;
3890
3902
  /** ☆☆☆☆ ✔ Example: 1 */
3891
3903
  SaturationAdj?: number;
3892
3904
  /** ☆☆☆☆ ✔ Example: 0 */
@@ -4025,8 +4037,6 @@ export interface MakerNotesTags {
4025
4037
  ShakeReduction?: string;
4026
4038
  /** ☆☆☆☆ Example: "Normal" */
4027
4039
  Sharpening?: string;
4028
- /** ★★★★ ✔ Example: "n/a" */
4029
- Sharpness?: string;
4030
4040
  /** ☆☆☆☆ ✔ Example: 3 */
4031
4041
  SharpnessAuto?: number;
4032
4042
  /** ☆☆☆☆ ✔ Example: 768 */
@@ -4303,7 +4313,7 @@ export interface MakerNotesTags {
4303
4313
  ToneCurve?: string;
4304
4314
  /** ☆☆☆☆ ✔ Example: "(Binary data 95 bytes, use -b option to extract)" */
4305
4315
  ToneCurveMatching?: BinaryField | string;
4306
- /** ☆☆☆☆ ✔ Example: "(Binary data 1679 bytes, use -b option to extract)" */
4316
+ /** ☆☆☆☆ ✔ Example: "(Binary data 1505 bytes, use -b option to extract)" */
4307
4317
  ToneCurveTable?: BinaryField | string;
4308
4318
  /** ☆☆☆☆ ✔ Example: "Highlights; 0; -7; 7; Shadows; 0; -7; 7; Midtones; 0; -7;…0; 0; 0" */
4309
4319
  ToneLevel?: string;
@@ -4311,8 +4321,6 @@ export interface MakerNotesTags {
4311
4321
  ToningEffect?: string;
4312
4322
  /** ☆☆☆☆ ✔ Example: "n/a" */
4313
4323
  ToningEffectAuto?: string;
4314
- /** ☆☆☆☆ ✔ Example: "None" */
4315
- ToningEffectMonochrome?: string;
4316
4324
  /** ☆☆☆☆ ✔ Example: "n/a" */
4317
4325
  ToningSaturation?: string;
4318
4326
  /** ☆☆☆☆ Example: 5 */
@@ -4345,12 +4353,6 @@ export interface MakerNotesTags {
4345
4353
  UsableShootingModes?: string;
4346
4354
  /** ☆☆☆☆ ✔ Example: "Enable" */
4347
4355
  USBPowerDelivery?: string;
4348
- /** ☆☆☆☆ ✔ Example: "Unknown (4)" */
4349
- UserDef1PictureStyle?: string;
4350
- /** ☆☆☆☆ ✔ Example: "Unknown (0)" */
4351
- UserDef2PictureStyle?: string;
4352
- /** ☆☆☆☆ ✔ Example: "Unknown (4)" */
4353
- UserDef3PictureStyle?: string;
4354
4356
  /** ☆☆☆☆ Example: "PC900 COVERT PRO" */
4355
4357
  UserLabel?: string;
4356
4358
  /** ☆☆☆☆ Example: "dpreview " */
@@ -4447,8 +4449,6 @@ export interface MakerNotesTags {
4447
4449
  WBShiftGM?: number;
4448
4450
  /** ☆☆☆☆ ✔ Example: 0 */
4449
4451
  WBShiftIntelligentAuto?: number;
4450
- /** ★★★★ ✔ Example: "White Preset" */
4451
- WhiteBalance?: string;
4452
4452
  /** ☆☆☆☆ ✔ Example: "On" */
4453
4453
  WhiteBalanceAutoAdjustment?: string;
4454
4454
  /** ☆☆☆☆ ✔ Example: 0 */
@@ -4473,7 +4473,7 @@ export interface MakerNotesTags {
4473
4473
  WhiteBalanceSetting?: string;
4474
4474
  /** ☆☆☆☆ ✔ Example: "Auto" */
4475
4475
  WhiteBalanceSetup?: string;
4476
- /** ☆☆☆☆ ✔ Example: "(Binary data 2217 bytes, use -b option to extract)" */
4476
+ /** ☆☆☆☆ ✔ Example: "(Binary data 2201 bytes, use -b option to extract)" */
4477
4477
  WhiteBalanceTable?: BinaryField | string;
4478
4478
  /** ☆☆☆☆ ✔ Example: "Auto" */
4479
4479
  WhiteBalanceTemperature?: string;
@@ -4746,7 +4746,7 @@ export interface XMPTags {
4746
4746
  HasSettings?: boolean;
4747
4747
  /** ☆☆☆☆ ✔ Example: "(Binary data 23388 bytes, use -b option to extract)" */
4748
4748
  HdrPlusMakernote?: BinaryField | string;
4749
- /** ☆☆☆☆ ✔ Example: "(Binary data 22075 bytes, use -b option to extract)" */
4749
+ /** ☆☆☆☆ ✔ Example: "(Binary data 23317 bytes, use -b option to extract)" */
4750
4750
  HDRPMakerNote?: BinaryField | string;
4751
4751
  /** ☆☆☆☆ ✔ Example: ["点像F11"] */
4752
4752
  HierarchicalSubject?: string[];
@@ -5094,8 +5094,8 @@ export interface XMPTags {
5094
5094
  * - a checkmark if the tag is used by popular devices (like iPhones), and
5095
5095
  * - an example value, JSON stringified.
5096
5096
  *
5097
- * Autogenerated by "npm run mktags" by ExifTool 13.16 on Wed Jan 29 2025.
5098
- * 2754 unique tags were found in 10128 photo and video files.
5097
+ * Autogenerated by "npm run mktags" by ExifTool 13.25 on Tue Mar 11 2025.
5098
+ * 2761 unique tags were found in 10128 photo and video files.
5099
5099
  *
5100
5100
  * @see https://exiftool.org/TagNames/
5101
5101
  */
package/dist/WriteTask.js CHANGED
@@ -65,11 +65,13 @@ function enc(o, structValue = false) {
65
65
  else if ((0, Number_1.isNumber)(o)) {
66
66
  return String(o);
67
67
  }
68
+ else if (typeof o === "boolean") {
69
+ return o ? "True" : "False";
70
+ }
68
71
  else if ((0, String_1.isString)(o)) {
69
72
  // Structs need their own escaping here.
70
73
  // See https://exiftool.org/struct.html#Serialize
71
74
  return htmlEncode(structValue ? o.replace(/[,[\]{}|]/g, (ea) => "|" + ea) : o);
72
- // const s = htmlEncode(String(o))
73
75
  }
74
76
  else if ((0, DateTime_1.isDateOrTime)(o)) {
75
77
  return (0, DateTime_1.toExifString)(o);
@@ -1 +1 @@
1
- {"version":3,"file":"WriteTask.js","sourceRoot":"","sources":["../src/WriteTask.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"WriteTask.js","sourceRoot":"","sources":["../src/WriteTask.ts"],"names":[],"mappings":"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"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "exiftool-vendored",
3
- "version": "29.1.0",
3
+ "version": "29.2.0",
4
4
  "description": "Efficient, cross-platform access to ExifTool",
5
5
  "main": "./dist/ExifTool.js",
6
6
  "types": "./dist/ExifTool.d.ts",
@@ -72,44 +72,44 @@
72
72
  ]
73
73
  },
74
74
  "devDependencies": {
75
- "@eslint/js": "^9.19.0",
75
+ "@eslint/js": "^9.22.0",
76
76
  "@types/chai": "^4.3.16",
77
77
  "@types/chai-as-promised": "^8.0.1",
78
- "@types/chai-subset": "^1.3.5",
78
+ "@types/chai-subset": "^1.3.6",
79
79
  "@types/deep-eql": "^4.0.2",
80
80
  "@types/globule": "^1.1.9",
81
81
  "@types/he": "^1.2.3",
82
82
  "@types/mocha": "^10.0.10",
83
- "@types/node": "^22.12.0",
83
+ "@types/node": "^22.13.10",
84
84
  "@types/progress": "^2.0.7",
85
85
  "@types/tmp": "^0.2.6",
86
86
  "@types/xmldom": "^0.1.34",
87
- "@typescript-eslint/eslint-plugin": "^8.22.0",
88
- "@typescript-eslint/parser": "^8.22.0",
89
- "@xmldom/xmldom": "^0.9.7",
87
+ "@typescript-eslint/eslint-plugin": "^8.26.1",
88
+ "@typescript-eslint/parser": "^8.26.1",
89
+ "@xmldom/xmldom": "^0.9.8",
90
90
  "chai": "^4.5.0",
91
91
  "chai-as-promised": "^7.1.2",
92
92
  "deep-eql": "^4.1.4",
93
- "eslint": "^9.19.0",
93
+ "eslint": "^9.22.0",
94
94
  "eslint-plugin-import": "^2.31.0",
95
95
  "eslint-plugin-node": "^11.1.0",
96
- "eslint-plugin-redos": "^4.4.5",
96
+ "eslint-plugin-redos": "^4.5.0",
97
97
  "eslint-plugin-regexp": "^2.7.0",
98
98
  "extract-zip": "^2.0.1",
99
99
  "geo-tz": "^8.1.3",
100
100
  "globule": "^1.3.4",
101
101
  "mocha": "^10.8.2",
102
- "npm-check-updates": "^17.1.14",
102
+ "npm-check-updates": "^17.1.15",
103
103
  "npm-run-all": "^4.1.5",
104
- "prettier": "^3.4.2",
104
+ "prettier": "^3.5.3",
105
105
  "prettier-plugin-organize-imports": "^4.1.0",
106
106
  "progress": "^2.0.3",
107
107
  "rimraf": "^5.0.9",
108
108
  "serve": "^14.2.4",
109
109
  "source-map-support": "^0.5.21",
110
110
  "tmp": "^0.2.3",
111
- "typedoc": "^0.27.6",
112
- "typescript": "^5.7.3",
111
+ "typedoc": "^0.27.9",
112
+ "typescript": "^5.8.2",
113
113
  "xpath": "^0.0.34"
114
114
  },
115
115
  "dependencies-note": "@types/luxon is a proper dependency, not devDependency, as our exported TypeScript typings reference luxon types. See <https://github.com/photostructure/exiftool-vendored.js/pull/108>",
@@ -121,7 +121,7 @@
121
121
  "luxon": "^3.5.0"
122
122
  },
123
123
  "optionalDependencies": {
124
- "exiftool-vendored.exe": "13.17.0",
125
- "exiftool-vendored.pl": "13.17.0"
124
+ "exiftool-vendored.exe": "13.25.0",
125
+ "exiftool-vendored.pl": "13.25.0"
126
126
  }
127
127
  }