exiftool-vendored 27.0.0 → 28.0.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 (85) hide show
  1. package/CHANGELOG.md +16 -1
  2. package/README.md +3 -3
  3. package/RELEASE.md +8 -11
  4. package/SECURITY.md +1 -1
  5. package/dist/Array.js +8 -9
  6. package/dist/Array.js.map +1 -1
  7. package/dist/AsyncRetry.js +1 -2
  8. package/dist/AsyncRetry.js.map +1 -1
  9. package/dist/BinaryField.js +4 -2
  10. package/dist/BinaryField.js.map +1 -1
  11. package/dist/BinaryToBufferTask.d.ts +0 -1
  12. package/dist/ContainerDirectoryItem.d.ts +13 -0
  13. package/dist/ContainerDirectoryItem.js +3 -0
  14. package/dist/ContainerDirectoryItem.js.map +1 -0
  15. package/dist/DateTime.js +6 -6
  16. package/dist/DateTime.js.map +1 -1
  17. package/dist/DefaultExifToolOptions.js +13 -0
  18. package/dist/DefaultExifToolOptions.js.map +1 -1
  19. package/dist/ErrorsAndWarnings.js +1 -2
  20. package/dist/ErrorsAndWarnings.js.map +1 -1
  21. package/dist/ExifTool.d.ts +3 -3
  22. package/dist/ExifTool.js.map +1 -1
  23. package/dist/ExifToolOptions.d.ts +1 -2
  24. package/dist/ExifToolOptions.js +1 -2
  25. package/dist/ExifToolOptions.js.map +1 -1
  26. package/dist/ExifToolTags.js +2 -2
  27. package/dist/ExifToolTags.js.map +1 -1
  28. package/dist/ExifToolTask.d.ts +0 -1
  29. package/dist/ExifToolVendoredTags.js +2 -2
  30. package/dist/ExifToolVendoredTags.js.map +1 -1
  31. package/dist/ExiftoolPath.js +1 -2
  32. package/dist/ExiftoolPath.js.map +1 -1
  33. package/dist/File.js +1 -2
  34. package/dist/File.js.map +1 -1
  35. package/dist/FileTags.js +1 -2
  36. package/dist/FileTags.js.map +1 -1
  37. package/dist/FirstDateTime.js +1 -2
  38. package/dist/FirstDateTime.js.map +1 -1
  39. package/dist/GeoTz.js +1 -2
  40. package/dist/GeoTz.js.map +1 -1
  41. package/dist/GeolocationTags.js +2 -2
  42. package/dist/GeolocationTags.js.map +1 -1
  43. package/dist/ImageDataHashTag.d.ts +5 -4
  44. package/dist/IsWarning.js +1 -2
  45. package/dist/IsWarning.js.map +1 -1
  46. package/dist/JSON.js +1 -2
  47. package/dist/JSON.js.map +1 -1
  48. package/dist/Lazy.js +1 -2
  49. package/dist/Lazy.js.map +1 -1
  50. package/dist/Maybe.js +5 -6
  51. package/dist/Maybe.js.map +1 -1
  52. package/dist/Number.js +3 -4
  53. package/dist/Number.js.map +1 -1
  54. package/dist/Object.js +6 -7
  55. package/dist/Object.js.map +1 -1
  56. package/dist/Pick.js +1 -2
  57. package/dist/Pick.js.map +1 -1
  58. package/dist/ReadTask.d.ts +2 -2
  59. package/dist/ReadTask.js +3 -3
  60. package/dist/ReadTask.js.map +1 -1
  61. package/dist/ResourceEvent.js +1 -2
  62. package/dist/ResourceEvent.js.map +1 -1
  63. package/dist/Sidecars.js +2 -2
  64. package/dist/Sidecars.js.map +1 -1
  65. package/dist/String.js +12 -13
  66. package/dist/String.js.map +1 -1
  67. package/dist/Struct.js +1 -2
  68. package/dist/Struct.js.map +1 -1
  69. package/dist/Tags.d.ts +323 -327
  70. package/dist/TimeParsing.js +3 -4
  71. package/dist/TimeParsing.js.map +1 -1
  72. package/dist/Times.js +1 -2
  73. package/dist/Times.js.map +1 -1
  74. package/dist/Timezones.d.ts +1 -1
  75. package/dist/Timezones.js +21 -16
  76. package/dist/Timezones.js.map +1 -1
  77. package/dist/Version.js +1 -2
  78. package/dist/Version.js.map +1 -1
  79. package/dist/Which.js +1 -2
  80. package/dist/Which.js.map +1 -1
  81. package/dist/WriteTask.d.ts +3 -3
  82. package/dist/WriteTask.js +18 -17
  83. package/dist/WriteTask.js.map +1 -1
  84. package/package.json +22 -23
  85. package/snyk-linux +0 -0
package/dist/Tags.d.ts CHANGED
@@ -1,4 +1,5 @@
1
1
  import { BinaryField } from "./BinaryField";
2
+ import { ContainerDirectoryItem } from "./ContainerDirectoryItem";
2
3
  import { ExifDate } from "./ExifDate";
3
4
  import { ExifDateTime } from "./ExifDateTime";
4
5
  import { ExifTime } from "./ExifTime";
@@ -16,7 +17,7 @@ import { Version } from "./Version";
16
17
  export interface ExifToolTags {
17
18
  /** ☆☆☆☆ ✔ Example: "File is empty" */
18
19
  Error?: string;
19
- /** ★★★★ ✔ Example: 12.85 */
20
+ /** ★★★★ ✔ Example: 12.89 */
20
21
  ExifToolVersion?: number;
21
22
  /** ☆☆☆☆ Example: "path/to/file.jpg" */
22
23
  SourceFile?: string;
@@ -42,13 +43,13 @@ export interface FileTags {
42
43
  EncodingProcess?: string;
43
44
  /** ★★★★ ✔ Example: "Little-endian (Intel, II)" */
44
45
  ExifByteOrder?: string;
45
- /** ★★★★ ✔ Example: "2024:05:29 12:57:23-07:00" */
46
+ /** ★★★★ ✔ Example: "2024:07:20 20:43:33-07:00" */
46
47
  FileAccessDate?: ExifDateTime | string;
47
48
  /** ☆☆☆☆ Example: */
48
49
  FileCreateDate?: ExifDateTime | string;
49
- /** ★★★★ ✔ Example: "2024:05:29 12:57:04-07:00" */
50
+ /** ★★★★ ✔ Example: "2024:07:20 19:47:47-07:00" */
50
51
  FileInodeChangeDate?: ExifDateTime | string;
51
- /** ★★★★ ✔ Example: "2024:05:13 10:21:03-07:00" */
52
+ /** ★★★★ ✔ Example: "2024:06:15 18:39:22-07:00" */
52
53
  FileModifyDate?: ExifDateTime | string;
53
54
  /** ★★★★ ✔ Example: "utc+8_oly.jpg" */
54
55
  FileName?: string;
@@ -95,6 +96,8 @@ export interface CompositeTags {
95
96
  AutoFocus?: string;
96
97
  /** ☆☆☆☆ ✔ Example: "8.7 Mbps" */
97
98
  AvgBitrate?: string;
99
+ /** ★★☆☆ ✔ Example: 46 */
100
+ BlueBalance?: number;
98
101
  /** ☆☆☆☆ ✔ Example: "[Red,Green][Green,Blue]" */
99
102
  CFAPattern?: string;
100
103
  /** ★★★★ ✔ Example: "1.030 mm" */
@@ -137,8 +140,10 @@ export interface CompositeTags {
137
140
  OriginalDecisionData?: BinaryField | string;
138
141
  /** ☆☆☆☆ Example: "9.9 um" */
139
142
  PeakSpectralSensitivity?: string;
140
- /** ★★★☆ ✔ Example: "(Binary data 315546 bytes, use -b option to extract)" */
143
+ /** ★★★☆ ✔ Example: "(Binary data 37244 bytes, use -b option to extract)" */
141
144
  PreviewImage?: BinaryField;
145
+ /** ★★☆☆ ✔ Example: 38.625 */
146
+ RedBalance?: number;
142
147
  /** ☆☆☆☆ ✔ Example: "On" */
143
148
  RedEyeReduction?: string;
144
149
  /** ☆☆☆☆ Example: 11.2 */
@@ -166,119 +171,7 @@ export interface CompositeTags {
166
171
  /** ★☆☆☆ ✔ Example: "2024:04:20 21:09:51-07:00" */
167
172
  SubSecModifyDate?: ExifDateTime | string;
168
173
  }
169
- export interface APP1Tags {
170
- /** ☆☆☆☆ Example: "59 128 128" */
171
- AboveColor?: string;
172
- /** ☆☆☆☆ Example: "5.0 C" */
173
- AtmosphericTemperature?: string;
174
- /** ☆☆☆☆ Example: "60 128 128" */
175
- BelowColor?: string;
176
- /** ☆☆☆☆ Example: "Z-CAMERA" */
177
- CameraModel?: string;
178
- /** ☆☆☆☆ Example: "_______________" */
179
- CameraPartNumber?: string;
180
- /** ☆☆☆☆ ✔ Example: 8340330 */
181
- CameraSerialNumber?: number;
182
- /** ☆☆☆☆ Example: "https://PhotoStructure.com/" */
183
- CameraSoftware?: string;
184
- /** ☆☆☆☆ Example: "https://PhotoStructure.com/" */
185
- CreatorSoftware?: string;
186
- /** ☆☆☆☆ Example: "2013:03:12 16:31:26" */
187
- DateTimeGenerated?: ExifDateTime | string;
188
- /** ☆☆☆☆ Example: "(Binary data 1011393 bytes, use -b option to extract)" */
189
- EmbeddedImage?: BinaryField | string;
190
- /** ☆☆☆☆ Example: 960 */
191
- EmbeddedImageHeight?: number;
192
- /** ☆☆☆☆ Example: "PNG" */
193
- EmbeddedImageType?: string;
194
- /** ☆☆☆☆ Example: 640 */
195
- EmbeddedImageWidth?: number;
196
- /** ☆☆☆☆ Example: "46.1 deg" */
197
- FieldOfView?: string;
198
- /** ☆☆☆☆ Example: "NOF" */
199
- FilterModel?: string;
200
- /** ☆☆☆☆ Example: "" */
201
- FilterPartNumber?: string;
202
- /** ☆☆☆☆ Example: "00000000" */
203
- FilterSerialNumber?: string;
204
- /** ☆☆☆☆ ✔ Example: "inf" */
205
- FocusDistance?: string;
206
- /** ☆☆☆☆ ✔ Example: 98 */
207
- FocusStepCount?: number;
208
- /** ☆☆☆☆ ✔ Example: 9 */
209
- FrameRate?: number;
210
- /** ☆☆☆☆ ✔ Example: 88.01 */
211
- GPSTrack?: number;
212
- /** ☆☆☆☆ ✔ Example: "True North" */
213
- GPSTrackRef?: string;
214
- /** ☆☆☆☆ Example: "Yes" */
215
- GPSValid?: string;
216
- /** ☆☆☆☆ Example: "7.4 C" */
217
- IRWindowTemperature?: string;
218
- /** ☆☆☆☆ Example: 1 */
219
- IRWindowTransmission?: number;
220
- /** ☆☆☆☆ Example: "99 128 128" */
221
- Isotherm1Color?: string;
222
- /** ☆☆☆☆ Example: "92 115 209" */
223
- Isotherm2Color?: string;
224
- /** ☆☆☆☆ Example: "T199104" */
225
- LensPartNumber?: string;
226
- /** ☆☆☆☆ Example: 1 */
227
- Meas1Label?: number;
228
- /** ☆☆☆☆ Example: "80 60" */
229
- Meas1Params?: string;
230
- /** ☆☆☆☆ Example: "Spot" */
231
- Meas1Type?: string;
232
- /** ☆☆☆☆ Example: "Sp1" */
233
- Meas2Label?: string;
234
- /** ☆☆☆☆ Example: "213 160 213 160" */
235
- Meas2Params?: string;
236
- /** ☆☆☆☆ Example: "Spot" */
237
- Meas2Type?: string;
238
- /** ☆☆☆☆ Example: "+98" */
239
- OffsetX?: string;
240
- /** ☆☆☆☆ Example: "+51" */
241
- OffsetY?: string;
242
- /** ☆☆☆☆ Example: "67 216 98" */
243
- OverflowColor?: string;
244
- /** ☆☆☆☆ Example: "(Binary data 672 bytes, use -b option to extract)" */
245
- Palette?: BinaryField | string;
246
- /** ☆☆☆☆ Example: 224 */
247
- PaletteColors?: number;
248
- /** ☆☆☆☆ Example: "iron.pal" */
249
- PaletteFileName?: string;
250
- /** ☆☆☆☆ Example: 0 */
251
- PaletteMethod?: number;
252
- /** ☆☆☆☆ Example: "iron" */
253
- PaletteName?: string;
254
- /** ☆☆☆☆ Example: 3 */
255
- PaletteStretch?: number;
256
- /** ☆☆☆☆ Example: ".basicImgData.objectParams.emissivity" */
257
- Param0?: string;
258
- /** ☆☆☆☆ Example: "(Binary data 614604 bytes, use -b option to extract)" */
259
- RawThermalImage?: BinaryField | string;
260
- /** ☆☆☆☆ Example: 90 */
261
- RawThermalImageHeight?: number;
262
- /** ☆☆☆☆ Example: "TIFF" */
263
- RawThermalImageType?: string;
264
- /** ☆☆☆☆ Example: 80 */
265
- RawThermalImageWidth?: number;
266
- /** ☆☆☆☆ Example: 9392 */
267
- RawValueMedian?: number;
268
- /** ☆☆☆☆ Example: 993 */
269
- RawValueRange?: number;
270
- /** ☆☆☆☆ Example: 65535 */
271
- RawValueRangeMax?: number;
272
- /** ☆☆☆☆ Example: 8628 */
273
- RawValueRangeMin?: number;
274
- /** ☆☆☆☆ Example: 2.2125397 */
275
- Real2IR?: number;
276
- /** ☆☆☆☆ Example: "26.7 C" */
277
- ReflectedApparentTemperature?: string;
278
- /** ☆☆☆☆ Example: "41 110 240" */
279
- UnderflowColor?: string;
280
- }
281
- export interface APP12Tags {
174
+ export interface APPTags {
282
175
  /** ☆☆☆☆ Example: 388 */
283
176
  Again?: number;
284
177
  /** ☆☆☆☆ Example: 3383 */
@@ -317,8 +210,6 @@ export interface APP12Tags {
317
210
  Case?: number;
318
211
  /** ☆☆☆☆ Example: 1 */
319
212
  Color?: number;
320
- /** ★★☆☆ ✔ Example: "n/a" */
321
- ColorMode?: string;
322
213
  /** ☆☆☆☆ ✔ Example: 0 */
323
214
  ContTake?: number;
324
215
  /** ☆☆☆☆ ✔ Example: 8501 */
@@ -425,24 +316,217 @@ export interface APP12Tags {
425
316
  Zoom?: string;
426
317
  /** ☆☆☆☆ Example: 9 */
427
318
  ZoomPos?: number;
428
- }
429
- export interface APP14Tags {
430
319
  /** ☆☆☆☆ ✔ Example: "YCbCr" */
431
320
  ColorTransform?: string;
432
321
  /** ☆☆☆☆ ✔ Example: 100 */
433
322
  DCTEncodeVersion?: number;
434
- }
435
- export interface APP4Tags {
436
- /** ☆☆☆☆Example: "40 C" */
437
- AmbientTemperature?: string;
323
+ /** ☆☆☆☆ Example: "59 128 128" */
324
+ AboveColor?: string;
325
+ /** ☆☆☆☆ Example: "5.0 C" */
326
+ AtmosphericTemperature?: string;
327
+ /** ☆☆☆☆ Example: "60 128 128" */
328
+ BelowColor?: string;
329
+ /** ☆☆☆☆ Example: "Z-CAMERA" */
330
+ CameraModel?: string;
331
+ /** ☆☆☆☆ Example: "_______________" */
332
+ CameraPartNumber?: string;
333
+ /** ☆☆☆☆ ✔ Example: 8340330 */
334
+ CameraSerialNumber?: number;
335
+ /** ☆☆☆☆ Example: "https://PhotoStructure.com/" */
336
+ CameraSoftware?: string;
337
+ /** ☆☆☆☆ Example: "https://PhotoStructure.com/" */
338
+ CreatorSoftware?: string;
339
+ /** ☆☆☆☆ Example: "2013:03:12 16:31:26" */
340
+ DateTimeGenerated?: ExifDateTime | string;
341
+ /** ☆☆☆☆ Example: "(Binary data 1998654 bytes, use -b option to extract)" */
342
+ EmbeddedImage?: BinaryField | string;
343
+ /** ☆☆☆☆ Example: 960 */
344
+ EmbeddedImageHeight?: number;
345
+ /** ☆☆☆☆ Example: "PNG" */
346
+ EmbeddedImageType?: string;
347
+ /** ☆☆☆☆ Example: 640 */
348
+ EmbeddedImageWidth?: number;
349
+ /** ☆☆☆☆ Example: "46.1 deg" */
350
+ FieldOfView?: string;
351
+ /** ☆☆☆☆ Example: "NOF" */
352
+ FilterModel?: string;
353
+ /** ☆☆☆☆ Example: "" */
354
+ FilterPartNumber?: string;
355
+ /** ☆☆☆☆ Example: "00000000" */
356
+ FilterSerialNumber?: string;
357
+ /** ☆☆☆☆ ✔ Example: "inf" */
358
+ FocusDistance?: string;
359
+ /** ☆☆☆☆ ✔ Example: 98 */
360
+ FocusStepCount?: number;
361
+ /** ☆☆☆☆ ✔ Example: 9 */
362
+ FrameRate?: number;
363
+ /** ☆☆☆☆ ✔ Example: 88.01 */
364
+ GPSTrack?: number;
365
+ /** ☆☆☆☆ ✔ Example: "True North" */
366
+ GPSTrackRef?: string;
367
+ /** ☆☆☆☆ Example: "Yes" */
368
+ GPSValid?: string;
369
+ /** ☆☆☆☆ Example: "7.4 C" */
370
+ IRWindowTemperature?: string;
371
+ /** ☆☆☆☆ Example: 1 */
372
+ IRWindowTransmission?: number;
373
+ /** ☆☆☆☆ Example: "99 128 128" */
374
+ Isotherm1Color?: string;
375
+ /** ☆☆☆☆ Example: "92 115 209" */
376
+ Isotherm2Color?: string;
377
+ /** ☆☆☆☆ Example: "T199104" */
378
+ LensPartNumber?: string;
379
+ /** ☆☆☆☆ Example: 1 */
380
+ Meas1Label?: number;
381
+ /** ☆☆☆☆ Example: "80 60" */
382
+ Meas1Params?: string;
383
+ /** ☆☆☆☆ Example: "Spot" */
384
+ Meas1Type?: string;
385
+ /** ☆☆☆☆ Example: "Sp1" */
386
+ Meas2Label?: string;
387
+ /** ☆☆☆☆ Example: "213 160 213 160" */
388
+ Meas2Params?: string;
389
+ /** ☆☆☆☆ Example: "Spot" */
390
+ Meas2Type?: string;
391
+ /** ☆☆☆☆ Example: "+98" */
392
+ OffsetX?: string;
393
+ /** ☆☆☆☆ Example: "+51" */
394
+ OffsetY?: string;
395
+ /** ☆☆☆☆ Example: "67 216 98" */
396
+ OverflowColor?: string;
397
+ /** ☆☆☆☆ Example: "(Binary data 672 bytes, use -b option to extract)" */
398
+ Palette?: BinaryField | string;
399
+ /** ☆☆☆☆ Example: 224 */
400
+ PaletteColors?: number;
401
+ /** ☆☆☆☆ Example: "iron.pal" */
402
+ PaletteFileName?: string;
403
+ /** ☆☆☆☆ Example: 0 */
404
+ PaletteMethod?: number;
405
+ /** ☆☆☆☆ Example: "iron" */
406
+ PaletteName?: string;
407
+ /** ☆☆☆☆ Example: 3 */
408
+ PaletteStretch?: number;
409
+ /** ☆☆☆☆ Example: ".basicImgData.objectParams.emissivity" */
410
+ Param0?: string;
411
+ /** ☆☆☆☆ Example: "(Binary data 614604 bytes, use -b option to extract)" */
412
+ RawThermalImage?: BinaryField | string;
413
+ /** ☆☆☆☆ Example: 90 */
414
+ RawThermalImageHeight?: number;
415
+ /** ☆☆☆☆ Example: "TIFF" */
416
+ RawThermalImageType?: string;
417
+ /** ☆☆☆☆ Example: 80 */
418
+ RawThermalImageWidth?: number;
419
+ /** ☆☆☆☆ Example: 9392 */
420
+ RawValueMedian?: number;
421
+ /** ☆☆☆☆ Example: 993 */
422
+ RawValueRange?: number;
423
+ /** ☆☆☆☆ Example: 65535 */
424
+ RawValueRangeMax?: number;
425
+ /** ☆☆☆☆ Example: 8628 */
426
+ RawValueRangeMin?: number;
427
+ /** ☆☆☆☆ Example: 2.2125397 */
428
+ Real2IR?: number;
429
+ /** ☆☆☆☆ Example: "26.7 C" */
430
+ ReflectedApparentTemperature?: string;
431
+ /** ☆☆☆☆ Example: "41 110 240" */
432
+ UnderflowColor?: string;
438
433
  /** ☆☆☆☆ Example: 1 */
439
434
  Emissivity?: number;
440
435
  /** ☆☆☆☆ Example: "80.0 %" */
441
436
  RelativeHumidity?: string;
442
- }
443
- export interface APP5Tags {
444
437
  /** ☆☆☆☆ Example: 45 */
445
438
  Compass?: string;
439
+ /** ☆☆☆☆ ✔ Example: 800 */
440
+ AutoISOMax?: number;
441
+ /** ☆☆☆☆ ✔ Example: 3200 */
442
+ AutoISOMin?: number;
443
+ /** ☆☆☆☆ ✔ Example: "Up" */
444
+ AutoRotation?: string;
445
+ /** ☆☆☆☆ ✔ Example: "Photo Global Settings" */
446
+ DeviceName?: string;
447
+ /** ☆☆☆☆ ✔ Example: "AUTO" */
448
+ MaximumShutterAngle?: string;
449
+ /** ☆☆☆☆ ✔ Example: "859830e2f50cb3397a6216f09553fce800000000000000000000000000000000" */
450
+ MediaUniqueID?: string;
451
+ /** ☆☆☆☆ ✔ Example: "7.6.4" */
452
+ MetadataVersion?: string;
453
+ /** ☆☆☆☆ ✔ Example: "12MP_W" */
454
+ PhotoResolution?: string;
455
+ /** ☆☆☆☆ ✔ Example: "On" */
456
+ ProTune?: string;
457
+ /** ☆☆☆☆ ✔ Example: "4_1SEC" */
458
+ Rate?: string;
459
+ }
460
+ /**
461
+ * @see https://exiftool.org/TagNames/FlashPix.html
462
+ */
463
+ export interface FlashPixTags {
464
+ /** ☆☆☆☆ Example: "(Binary data 18 bytes, use -b option to extract)" */
465
+ AudioStream?: BinaryField | string;
466
+ /** ☆☆☆☆ ✔ Example: "Unicode UTF-16, little endian" */
467
+ CodePage?: string;
468
+ /** ☆☆☆☆ ✔ Example: "Picoss" */
469
+ CreatingApplication?: string;
470
+ /** ☆☆☆☆ ✔ Example: "30020010-C06F-D011-BD01-00609719A180" */
471
+ ExtensionClassID?: string;
472
+ /** ☆☆☆☆ ✔ Example: "2003:03:29 17:47:50" */
473
+ ExtensionCreateDate?: ExifDateTime | string;
474
+ /** ☆☆☆☆ ✔ Example: "Presized image for LCD display" */
475
+ ExtensionDescription?: string;
476
+ /** ☆☆☆☆ ✔ Example: "2003:03:29 17:47:50" */
477
+ ExtensionModifyDate?: ExifDateTime | string;
478
+ /** ☆☆☆☆ ✔ Example: "Screen nail" */
479
+ ExtensionName?: string;
480
+ /** ☆☆☆☆ ✔ Example: "Invalidated By Modification" */
481
+ ExtensionPersistence?: string;
482
+ /** ☆☆☆☆ ✔ Example: "(Binary data 57881 bytes, use -b option to extract)" */
483
+ ScreenNail?: BinaryField | string;
484
+ /** ☆☆☆☆ ✔ Example: 1 */
485
+ UsedExtensionNumbers?: number;
486
+ }
487
+ /**
488
+ * These tags are only available if {@link ExifToolOptions.geolocation} is true
489
+ * and the file has valid GPS location data.
490
+ */
491
+ export interface GeolocationTags {
492
+ /** ☆☆☆☆ ✔ Example: 99 */
493
+ GeolocationBearing?: number;
494
+ /** ☆☆☆☆ ✔ Example: "Zürich (Kreis 4) / Langstrasse" */
495
+ GeolocationCity?: string;
496
+ /** ☆☆☆☆ ✔ Example: "United States" */
497
+ GeolocationCountry?: string;
498
+ /** ☆☆☆☆ ✔ Example: "US" */
499
+ GeolocationCountryCode?: string;
500
+ /** ☆☆☆☆ ✔ Example: "9.60 km" */
501
+ GeolocationDistance?: string;
502
+ /** ☆☆☆☆ ✔ Example: "PPLX" */
503
+ GeolocationFeatureCode?: string;
504
+ /** ☆☆☆☆ ✔ Example: "Section Of Populated Place" */
505
+ GeolocationFeatureType?: string;
506
+ /** ☆☆☆☆ ✔ Example: 93000 */
507
+ GeolocationPopulation?: number;
508
+ /** ☆☆☆☆ ✔ Example: "7.3397, 134.4733" */
509
+ GeolocationPosition?: string;
510
+ /** ☆☆☆☆ ✔ Example: "Île-de-France" */
511
+ GeolocationRegion?: string;
512
+ /** ☆☆☆☆ ✔ Example: "Ōta-ku" */
513
+ GeolocationSubregion?: string;
514
+ /** ☆☆☆☆ ✔ Example: "Pacific/Saipan" */
515
+ GeolocationTimeZone?: string;
516
+ }
517
+ export interface JSONTags {
518
+ /** ☆☆☆☆ Example: 0 */
519
+ AIScene?: number;
520
+ /** ☆☆☆☆ Example: 66048 */
521
+ FilterId?: number;
522
+ /** ☆☆☆☆ Example: "off" */
523
+ Hdr?: string;
524
+ /** ☆☆☆☆ Example: false */
525
+ Mirror?: boolean;
526
+ /** ☆☆☆☆ Example: 36864 */
527
+ OpMode?: number;
528
+ /** ☆☆☆☆ Example: 1 */
529
+ ZoomMultiple?: number;
446
530
  }
447
531
  /**
448
532
  * @see https://exiftool.org/TagNames/EXIF.html
@@ -606,8 +690,6 @@ export interface EXIFTags {
606
690
  GPSStatus?: string;
607
691
  /** ☆☆☆☆ ✔ Example: "23:59:41.001" */
608
692
  GPSTimeStamp?: ExifTime | string;
609
- /** ★☆☆☆ ✔ Example: "50.51.48.48" */
610
- GPSVersionID?: string;
611
693
  /** ★★★☆ ✔ Example: "Unknown (8176)" */
612
694
  GainControl?: string;
613
695
  /** ☆☆☆☆ ✔ Example: 2.4921875 */
@@ -798,7 +880,7 @@ export interface EXIFTags {
798
880
  TileByteCounts?: BinaryField | string;
799
881
  /** ☆☆☆☆ ✔ Example: 512 */
800
882
  TileLength?: number;
801
- /** ☆☆☆☆ ✔ Example: "(Binary data 507 bytes, use -b option to extract)" */
883
+ /** ☆☆☆☆ ✔ Example: "(Binary data 508 bytes, use -b option to extract)" */
802
884
  TileOffsets?: BinaryField | string;
803
885
  /** ☆☆☆☆ ✔ Example: 512 */
804
886
  TileWidth?: number;
@@ -839,170 +921,6 @@ export interface EXIFTags {
839
921
  /** ★★★★ ✔ Example: 99 */
840
922
  YResolution?: number;
841
923
  }
842
- export interface APP6Tags {
843
- /** ☆☆☆☆ ✔ Example: 800 */
844
- AutoISOMax?: number;
845
- /** ☆☆☆☆ ✔ Example: 3200 */
846
- AutoISOMin?: number;
847
- /** ☆☆☆☆ ✔ Example: "Up" */
848
- AutoRotation?: string;
849
- /** ☆☆☆☆ ✔ Example: "Photo Global Settings" */
850
- DeviceName?: string;
851
- /** ☆☆☆☆ ✔ Example: "On (Manual)" */
852
- HDRSetting?: string;
853
- /** ☆☆☆☆ ✔ Example: "AUTO" */
854
- MaximumShutterAngle?: string;
855
- /** ☆☆☆☆ ✔ Example: "859830e2f50cb3397a6216f09553fce800000000000000000000000000000000" */
856
- MediaUniqueID?: string;
857
- /** ☆☆☆☆ ✔ Example: "7.6.4" */
858
- MetadataVersion?: string;
859
- /** ☆☆☆☆ ✔ Example: "12MP_W" */
860
- PhotoResolution?: string;
861
- /** ☆☆☆☆ ✔ Example: "On" */
862
- ProTune?: string;
863
- /** ☆☆☆☆ ✔ Example: "4_1SEC" */
864
- Rate?: string;
865
- }
866
- /**
867
- * @see https://exiftool.org/TagNames/FlashPix.html
868
- */
869
- export interface FlashPixTags {
870
- /** ☆☆☆☆ Example: "(Binary data 20796 bytes, use -b option to extract)" */
871
- AudioStream?: BinaryField | string;
872
- /** ☆☆☆☆ ✔ Example: "Unicode UTF-16, little endian" */
873
- CodePage?: string;
874
- /** ☆☆☆☆ ✔ Example: "Picoss" */
875
- CreatingApplication?: string;
876
- /** ☆☆☆☆ ✔ Example: "30020010-C06F-D011-BD01-00609719A180" */
877
- ExtensionClassID?: string;
878
- /** ☆☆☆☆ ✔ Example: "2003:03:29 17:47:50" */
879
- ExtensionCreateDate?: ExifDateTime | string;
880
- /** ☆☆☆☆ ✔ Example: "Presized image for LCD display" */
881
- ExtensionDescription?: string;
882
- /** ☆☆☆☆ ✔ Example: "2003:03:29 17:47:50" */
883
- ExtensionModifyDate?: ExifDateTime | string;
884
- /** ☆☆☆☆ ✔ Example: "Screen nail" */
885
- ExtensionName?: string;
886
- /** ☆☆☆☆ ✔ Example: "Invalidated By Modification" */
887
- ExtensionPersistence?: string;
888
- /** ☆☆☆☆ ✔ Example: "(Binary data 57881 bytes, use -b option to extract)" */
889
- ScreenNail?: BinaryField | string;
890
- /** ☆☆☆☆ ✔ Example: 1 */
891
- UsedExtensionNumbers?: number;
892
- }
893
- /**
894
- * These tags are only available if {@link ExifToolOptions.geolocation} is true
895
- * and the file has valid GPS location data.
896
- */
897
- export interface GeolocationTags {
898
- /** ☆☆☆☆ ✔ Example: 99 */
899
- GeolocationBearing?: number;
900
- /** ☆☆☆☆ ✔ Example: "Zürich (Kreis 4) / Langstrasse" */
901
- GeolocationCity?: string;
902
- /** ☆☆☆☆ ✔ Example: "United States" */
903
- GeolocationCountry?: string;
904
- /** ☆☆☆☆ ✔ Example: "US" */
905
- GeolocationCountryCode?: string;
906
- /** ☆☆☆☆ ✔ Example: "9.60 km" */
907
- GeolocationDistance?: string;
908
- /** ☆☆☆☆ ✔ Example: "PPLX" */
909
- GeolocationFeatureCode?: string;
910
- /** ☆☆☆☆ ✔ Example: "Section Of Populated Place" */
911
- GeolocationFeatureType?: string;
912
- /** ☆☆☆☆ ✔ Example: 93000 */
913
- GeolocationPopulation?: number;
914
- /** ☆☆☆☆ ✔ Example: "7.3397, 134.4733" */
915
- GeolocationPosition?: string;
916
- /** ☆☆☆☆ ✔ Example: "Île-de-France" */
917
- GeolocationRegion?: string;
918
- /** ☆☆☆☆ ✔ Example: "Yuzhnyy Administrativnyy Okrug" */
919
- GeolocationSubregion?: string;
920
- /** ☆☆☆☆ ✔ Example: "Pacific/Saipan" */
921
- GeolocationTimeZone?: string;
922
- }
923
- export interface JSONTags {
924
- /** ☆☆☆☆ Example: 0 */
925
- AIScene?: number;
926
- /** ☆☆☆☆ Example: 66048 */
927
- FilterId?: number;
928
- /** ☆☆☆☆ Example: "off" */
929
- Hdr?: string;
930
- /** ☆☆☆☆ Example: false */
931
- Mirror?: boolean;
932
- /** ☆☆☆☆ Example: 36864 */
933
- OpMode?: number;
934
- /** ☆☆☆☆ Example: 1 */
935
- ZoomMultiple?: number;
936
- }
937
- /**
938
- * @see https://exiftool.org/TagNames/IPTC.html
939
- */
940
- export interface IPTCTags {
941
- /** ☆☆☆☆ ✔ Example: 4 */
942
- ApplicationRecordVersion?: number;
943
- /** ☆☆☆☆ Example: */
944
- "Caption-Abstract"?: string;
945
- /** ☆☆☆☆ ✔ Example: "Other" */
946
- Category?: string;
947
- /** ☆☆☆☆ ✔ Example: "TEDDINGTON" */
948
- City?: string;
949
- /** ☆☆☆☆ ✔ Example: "UTF8" */
950
- CodedCharacterSet?: string;
951
- /** ☆☆☆☆ ✔ Example: "Donna Ringmanumba" */
952
- Contact?: string;
953
- /** ☆☆☆☆ ✔ Example: "Creative Commons Attribution 4.0 International" */
954
- CopyrightNotice?: string;
955
- /** ☆☆☆☆ ✔ Example: "photo by Jenny Snapsalot" */
956
- Credit?: string;
957
- /** ☆☆☆☆ ✔ Example: "" */
958
- DateSent?: string;
959
- /** ☆☆☆☆ ✔ Example: "2023:11:07 14:10:21-05:00" */
960
- DateTimeCreated?: ExifDateTime | string;
961
- /** ☆☆☆☆ ✔ Example: "" */
962
- Destination?: string;
963
- /** ☆☆☆☆ ✔ Example: "2021:03:16" */
964
- DigitalCreationDate?: ExifDate | string;
965
- /** ☆☆☆☆ ✔ Example: "20:25:15" */
966
- DigitalCreationTime?: ExifTime | string;
967
- /** ☆☆☆☆ ✔ Example: "" */
968
- EnvelopeNumber?: string;
969
- /** ☆☆☆☆ ✔ Example: "5 (normal urgency)" */
970
- EnvelopePriority?: string;
971
- /** ☆☆☆☆ ✔ Example: 4 */
972
- EnvelopeRecordVersion?: number;
973
- /** ☆☆☆☆ ✔ Example: "X3F" */
974
- FileFormat?: string;
975
- /** ☆☆☆☆ ✔ Example: 2 */
976
- FileVersion?: number;
977
- /** ☆☆☆☆ ✔ Example: "" */
978
- Headline?: string;
979
- /** ☆☆☆☆ ✔ Example: ["red","car"] */
980
- Keywords?: string | string[];
981
- /** ☆☆☆☆ ✔ Example: "Artist deep into to wine and flower" */
982
- ObjectName?: string;
983
- /** ☆☆☆☆ ✔ Example: "" */
984
- OriginalTransmissionReference?: string;
985
- /** ☆☆☆☆ ✔ Example: "digiKam" */
986
- OriginatingProgram?: string;
987
- /** ☆☆☆☆ ✔ Example: "Tagged:1, ColorClass:2, Rating:0, FrameNum:000940" */
988
- Prefs?: string;
989
- /** ☆☆☆☆ ✔ Example: "4.13.0" */
990
- ProgramVersion?: string;
991
- /** ☆☆☆☆ ✔ Example: "" */
992
- ServiceIdentifier?: string;
993
- /** ☆☆☆☆ ✔ Example: "Renee Lanette Sims" */
994
- Source?: string;
995
- /** ☆☆☆☆ ✔ Example: "" */
996
- SpecialInstructions?: string;
997
- /** ☆☆☆☆ ✔ Example: "" */
998
- SupplementalCategories?: string;
999
- /** ☆☆☆☆ ✔ Example: "23:59:46.92" */
1000
- TimeCreated?: ExifTime | string;
1001
- /** ☆☆☆☆ ✔ Example: "" */
1002
- TimeSent?: string;
1003
- /** ☆☆☆☆ ✔ Example: "1 (most urgent)" */
1004
- Urgency?: string;
1005
- }
1006
924
  export interface MPFTags {
1007
925
  /** ★★☆☆ ✔ Example: 9697 */
1008
926
  DependentImage1EntryNumber?: number;
@@ -1293,6 +1211,8 @@ export interface RAFTags {
1293
1211
  FujiLayout?: string;
1294
1212
  /** ☆☆☆☆ ✔ Example: "267.4545455 0 0.1 0.2 0.3 0.4 0.5 0.6 0.7 0.8 0.9 1 0 0 0…5 0.488" */
1295
1213
  GeometricDistortionParams?: string;
1214
+ /** ☆☆☆☆ ✔ Example: "Uncompressed" */
1215
+ RAFCompression?: string;
1296
1216
  /** ☆☆☆☆ ✔ Example: -1.7 */
1297
1217
  RawExposureBias?: number;
1298
1218
  /** ☆☆☆☆ ✔ Example: "6 16" */
@@ -1336,6 +1256,73 @@ export interface RIFFTags {
1336
1256
  /** ☆☆☆☆ ✔ Example: 388 */
1337
1257
  VideoFrameCount?: number;
1338
1258
  }
1259
+ /**
1260
+ * @see https://exiftool.org/TagNames/IPTC.html
1261
+ */
1262
+ export interface IPTCTags {
1263
+ /** ☆☆☆☆ ✔ Example: 4 */
1264
+ ApplicationRecordVersion?: number;
1265
+ /** ☆☆☆☆ Example: */
1266
+ "Caption-Abstract"?: string;
1267
+ /** ☆☆☆☆ ✔ Example: "Other" */
1268
+ Category?: string;
1269
+ /** ☆☆☆☆ ✔ Example: "TEDDINGTON" */
1270
+ City?: string;
1271
+ /** ☆☆☆☆ ✔ Example: "UTF8" */
1272
+ CodedCharacterSet?: string;
1273
+ /** ☆☆☆☆ ✔ Example: "Donna Ringmanumba" */
1274
+ Contact?: string;
1275
+ /** ☆☆☆☆ ✔ Example: "Creative Commons Attribution 4.0 International" */
1276
+ CopyrightNotice?: string;
1277
+ /** ☆☆☆☆ ✔ Example: "photo by Jenny Snapsalot" */
1278
+ Credit?: string;
1279
+ /** ☆☆☆☆ ✔ Example: "" */
1280
+ DateSent?: string;
1281
+ /** ☆☆☆☆ ✔ Example: "2023:11:07 14:10:21-05:00" */
1282
+ DateTimeCreated?: ExifDateTime | string;
1283
+ /** ☆☆☆☆ ✔ Example: "" */
1284
+ Destination?: string;
1285
+ /** ☆☆☆☆ ✔ Example: "2021:03:16" */
1286
+ DigitalCreationDate?: ExifDate | string;
1287
+ /** ☆☆☆☆ ✔ Example: "20:25:15" */
1288
+ DigitalCreationTime?: ExifTime | string;
1289
+ /** ☆☆☆☆ ✔ Example: "" */
1290
+ EnvelopeNumber?: string;
1291
+ /** ☆☆☆☆ ✔ Example: "5 (normal urgency)" */
1292
+ EnvelopePriority?: string;
1293
+ /** ☆☆☆☆ ✔ Example: 4 */
1294
+ EnvelopeRecordVersion?: number;
1295
+ /** ☆☆☆☆ ✔ Example: 2 */
1296
+ FileVersion?: number;
1297
+ /** ☆☆☆☆ ✔ Example: "" */
1298
+ Headline?: string;
1299
+ /** ☆☆☆☆ ✔ Example: ["red","car"] */
1300
+ Keywords?: string | string[];
1301
+ /** ☆☆☆☆ ✔ Example: "Artist deep into to wine and flower" */
1302
+ ObjectName?: string;
1303
+ /** ☆☆☆☆ ✔ Example: "" */
1304
+ OriginalTransmissionReference?: string;
1305
+ /** ☆☆☆☆ ✔ Example: "digiKam" */
1306
+ OriginatingProgram?: string;
1307
+ /** ☆☆☆☆ ✔ Example: "Tagged:1, ColorClass:2, Rating:0, FrameNum:000940" */
1308
+ Prefs?: string;
1309
+ /** ☆☆☆☆ ✔ Example: "4.13.0" */
1310
+ ProgramVersion?: string;
1311
+ /** ☆☆☆☆ ✔ Example: "" */
1312
+ ServiceIdentifier?: string;
1313
+ /** ☆☆☆☆ ✔ Example: "Renee Lanette Sims" */
1314
+ Source?: string;
1315
+ /** ☆☆☆☆ ✔ Example: "" */
1316
+ SpecialInstructions?: string;
1317
+ /** ☆☆☆☆ ✔ Example: "" */
1318
+ SupplementalCategories?: string;
1319
+ /** ☆☆☆☆ ✔ Example: "23:59:46.92" */
1320
+ TimeCreated?: ExifTime | string;
1321
+ /** ☆☆☆☆ ✔ Example: "" */
1322
+ TimeSent?: string;
1323
+ /** ☆☆☆☆ ✔ Example: "1 (most urgent)" */
1324
+ Urgency?: string;
1325
+ }
1339
1326
  export interface JFIFTags {
1340
1327
  /** ★★★☆ ✔ Example: 1.02 */
1341
1328
  JFIFVersion?: number;
@@ -1627,6 +1614,8 @@ export interface MakerNotesTags {
1627
1614
  Altitude?: string;
1628
1615
  /** ☆☆☆☆ ✔ Example: "Standard" */
1629
1616
  AmbienceSelection?: string;
1617
+ /** ☆☆☆☆ ✔ Example: "40 C" */
1618
+ AmbientTemperature?: string;
1630
1619
  /** ☆☆☆☆ Example: "95 F" */
1631
1620
  AmbientTemperatureFahrenheit?: string;
1632
1621
  /** ☆☆☆☆ ✔ Example: "Off" */
@@ -1783,8 +1772,6 @@ export interface MakerNotesTags {
1783
1772
  BlackPoint?: string;
1784
1773
  /** ☆☆☆☆ Example: "n/a" */
1785
1774
  BleachBypassToning?: string;
1786
- /** ★★☆☆ ✔ Example: 46 */
1787
- BlueBalance?: number;
1788
1775
  /** ☆☆☆☆ Example: "5C" */
1789
1776
  BlueGain?: string;
1790
1777
  /** ☆☆☆☆ Example: "Off; 0; 0; 0" */
@@ -1821,6 +1808,8 @@ export interface MakerNotesTags {
1821
1808
  BracketStep?: string;
1822
1809
  /** ☆☆☆☆ ✔ Example: 12 */
1823
1810
  BracketValue?: number;
1811
+ /** ☆☆☆☆ ✔ Example: 9.25 */
1812
+ Brightness?: number;
1824
1813
  /** ☆☆☆☆ Example: "SU6-7" */
1825
1814
  BuildNumber?: string;
1826
1815
  /** ★★☆☆ ✔ Example: 0 */
@@ -1861,7 +1850,7 @@ export interface MakerNotesTags {
1861
1850
  CameraISO?: string;
1862
1851
  /** ☆☆☆☆ ✔ Example: "Unknown (155)" */
1863
1852
  CameraOrientation?: string;
1864
- /** ☆☆☆☆ ✔ Example: "(Binary data 8412 bytes, use -b option to extract)" */
1853
+ /** ☆☆☆☆ ✔ Example: "(Binary data 8290 bytes, use -b option to extract)" */
1865
1854
  CameraParameters?: BinaryField | string;
1866
1855
  /** ☆☆☆☆ ✔ Example: "User Defined 3" */
1867
1856
  CameraPictureStyle?: string;
@@ -1977,6 +1966,8 @@ export interface MakerNotesTags {
1977
1966
  ColorMatrixB?: string;
1978
1967
  /** ☆☆☆☆ ✔ Example: 4 */
1979
1968
  ColorMatrixNumber?: number;
1969
+ /** ★★☆☆ ✔ Example: "n/a" */
1970
+ ColorMode?: string;
1980
1971
  /** ☆☆☆☆ ✔ Example: "Min -5; Max 5; Yellow 0; Orange 0; Orange-red 0; Red 0; M…green 0" */
1981
1972
  ColorProfileSettings?: string;
1982
1973
  /** ☆☆☆☆ ✔ Example: 8059 */
@@ -2241,7 +2232,7 @@ export interface MakerNotesTags {
2241
2232
  DigitalGain?: number;
2242
2233
  /** ☆☆☆☆ ✔ Example: "Off" */
2243
2234
  DigitalICE?: string;
2244
- /** ☆☆☆☆ ✔ Example: "Stanard" */
2235
+ /** ☆☆☆☆ ✔ Example: "Standard" */
2245
2236
  DigitalLensOptimizer?: string;
2246
2237
  /** ☆☆☆☆ ✔ Example: "On" */
2247
2238
  DigitalLensOptimizerSetting?: string;
@@ -2428,6 +2419,8 @@ export interface MakerNotesTags {
2428
2419
  /** ☆☆☆☆ ✔ Example: "0.2.0.0" */
2429
2420
  ExtraInfoVersion?: string;
2430
2421
  /** ☆☆☆☆ ✔ Example: "On" */
2422
+ EyeDetection?: string;
2423
+ /** ☆☆☆☆ ✔ Example: "On" */
2431
2424
  EyeStartAF?: string;
2432
2425
  /** ☆☆☆☆ ✔ Example: "Enable; 0; 8; 0" */
2433
2426
  FEMicroadjustment?: string;
@@ -2457,8 +2450,6 @@ export interface MakerNotesTags {
2457
2450
  FacePosition?: string;
2458
2451
  /** ☆☆☆☆ ✔ Example: "918 1058 1959 2101" */
2459
2452
  FacePositions?: string;
2460
- /** ☆☆☆☆ ✔ Example: "On" */
2461
- FaceRecognition?: string;
2462
2453
  /** ☆☆☆☆ ✔ Example: 35 */
2463
2454
  FaceWidth?: number;
2464
2455
  /** ★★★☆ ✔ Example: 65535 */
@@ -2467,6 +2458,8 @@ export interface MakerNotesTags {
2467
2458
  FacesRecognized?: number;
2468
2459
  /** ☆☆☆☆ ✔ Example: 0 */
2469
2460
  Fade?: number;
2461
+ /** ☆☆☆☆ ✔ Example: "X3F" */
2462
+ FileFormat?: string;
2470
2463
  /** ☆☆☆☆ ✔ Example: 9984 */
2471
2464
  FileIndex?: number;
2472
2465
  /** ☆☆☆☆ ✔ Example: "0100" */
@@ -2835,6 +2828,8 @@ export interface MakerNotesTags {
2835
2828
  HDRInfoVersion?: string;
2836
2829
  /** ☆☆☆☆ ✔ Example: "n/a" */
2837
2830
  HDRLevel?: string;
2831
+ /** ☆☆☆☆ ✔ Example: "On (Manual)" */
2832
+ HDRSetting?: string;
2838
2833
  /** ☆☆☆☆ ✔ Example: "n/a" */
2839
2834
  HDRSmoothing?: string;
2840
2835
  /** ☆☆☆☆ Example: 53248 */
@@ -3071,8 +3066,6 @@ export interface MakerNotesTags {
3071
3066
  LCDPanels?: string;
3072
3067
  /** ☆☆☆☆ ✔ Example: "Masked" */
3073
3068
  LVShootingAreaDisplay?: string;
3074
- /** ☆☆☆☆ ✔ Example: "UNICORN THEATRE FOR CHILDREN" */
3075
- Landmark?: string;
3076
3069
  /** ☆☆☆☆ ✔ Example: "English" */
3077
3070
  Language?: string;
3078
3071
  /** ☆☆☆☆ Example: 92 */
@@ -3382,8 +3375,6 @@ export interface MakerNotesTags {
3382
3375
  /** ☆☆☆☆ ✔ Example: "(none)" */
3383
3376
  MonochromeColor?: string;
3384
3377
  /** ☆☆☆☆ ✔ Example: "Off" */
3385
- MonochromeFilterEffect?: string;
3386
- /** ☆☆☆☆ ✔ Example: "Off" */
3387
3378
  MonochromeGrainEffect?: string;
3388
3379
  /** ☆☆☆☆ ✔ Example: "No Filter; 0; 8; Strength 2; 0; 3" */
3389
3380
  MonochromeProfileSettings?: string;
@@ -3477,7 +3468,7 @@ export interface MakerNotesTags {
3477
3468
  NEFBitDepth?: string;
3478
3469
  /** ☆☆☆☆ ✔ Example: "Uncompressed (reduced to 12 bit)" */
3479
3470
  NEFCompression?: string;
3480
- /** ☆☆☆☆ ✔ Example: "(Binary data 624 bytes, use -b option to extract)" */
3471
+ /** ☆☆☆☆ ✔ Example: "(Binary data 46 bytes, use -b option to extract)" */
3481
3472
  NEFLinearizationTable?: BinaryField | string;
3482
3473
  /** ☆☆☆☆ Example: "Off (Auto)" */
3483
3474
  NeutralDensityFilter?: string;
@@ -3539,8 +3530,6 @@ export interface MakerNotesTags {
3539
3530
  OrientationLinkedAF?: string;
3540
3531
  /** ☆☆☆☆ ✔ Example: "Same for vertical and horizontal" */
3541
3532
  OrientationLinkedAFPoint?: string;
3542
- /** ☆☆☆☆ ✔ Example: 3318 */
3543
- OriginalDecisionDataOffset?: number;
3544
3533
  /** ☆☆☆☆ Example: "/home/username/pictures" */
3545
3534
  OriginalDirectory?: string;
3546
3535
  /** ☆☆☆☆ ✔ Example: "L9997698.JPG" */
@@ -3833,8 +3822,6 @@ export interface MakerNotesTags {
3833
3822
  RecordingFormat?: string;
3834
3823
  /** ☆☆☆☆ Example: "Auto" */
3835
3824
  RecordingMode?: string;
3836
- /** ★★☆☆ ✔ Example: 38.625 */
3837
- RedBalance?: number;
3838
3825
  /** ☆☆☆☆ ✔ Example: "On" */
3839
3826
  RedEyeRemoval?: string;
3840
3827
  /** ☆☆☆☆ Example: "8D" */
@@ -4159,8 +4146,10 @@ export interface MakerNotesTags {
4159
4146
  SoftFocusFilter?: string;
4160
4147
  /** ☆☆☆☆ ✔ Example: "n/a" */
4161
4148
  SoftSkinEffect?: string;
4162
- /** ☆☆☆☆ ✔ Example: "2023:05:24 15:18:25" */
4149
+ /** ☆☆☆☆ ✔ Example: "2024:06:12 18:00:20" */
4163
4150
  SonyDateTime?: ExifDateTime | string;
4151
+ /** ☆☆☆☆ Example: */
4152
+ SonyDateTime2?: ExifDateTime | string;
4164
4153
  /** ☆☆☆☆ ✔ Example: "1/82" */
4165
4154
  SonyExposureTime?: string;
4166
4155
  /** ☆☆☆☆ ✔ Example: 8.8 */
@@ -4243,6 +4232,8 @@ export interface MakerNotesTags {
4243
4232
  SubjectMotion?: string;
4244
4233
  /** ☆☆☆☆ Example: "None" */
4245
4234
  SubjectProgram?: string;
4235
+ /** ☆☆☆☆ ✔ Example: "Unknown (4)" */
4236
+ SubjectToDetect?: string;
4246
4237
  /** ☆☆☆☆ ✔ Example: "Off" */
4247
4238
  SuperMacro?: string;
4248
4239
  /** ☆☆☆☆ ✔ Example: "On" */
@@ -4317,7 +4308,7 @@ export interface MakerNotesTags {
4317
4308
  ToneCurve?: string;
4318
4309
  /** ☆☆☆☆ ✔ Example: "(Binary data 95 bytes, use -b option to extract)" */
4319
4310
  ToneCurveMatching?: BinaryField | string;
4320
- /** ☆☆☆☆ ✔ Example: "(Binary data 1679 bytes, use -b option to extract)" */
4311
+ /** ☆☆☆☆ ✔ Example: "(Binary data 1505 bytes, use -b option to extract)" */
4321
4312
  ToneCurveTable?: BinaryField | string;
4322
4313
  /** ☆☆☆☆ ✔ Example: "Highlights; 0; -7; 7; Shadows; 0; -7; 7; Midtones; 0; -7;…0; 0; 0" */
4323
4314
  ToneLevel?: string;
@@ -4485,7 +4476,7 @@ export interface MakerNotesTags {
4485
4476
  WhiteBalanceSetting?: string;
4486
4477
  /** ☆☆☆☆ ✔ Example: "Auto" */
4487
4478
  WhiteBalanceSetup?: string;
4488
- /** ☆☆☆☆ ✔ Example: "(Binary data 2217 bytes, use -b option to extract)" */
4479
+ /** ☆☆☆☆ ✔ Example: "(Binary data 2201 bytes, use -b option to extract)" */
4489
4480
  WhiteBalanceTable?: BinaryField | string;
4490
4481
  /** ☆☆☆☆ ✔ Example: "Auto" */
4491
4482
  WhiteBalanceTemperature?: string;
@@ -4564,8 +4555,6 @@ export interface XMPTags {
4564
4555
  BlueHue?: number;
4565
4556
  /** ☆☆☆☆ ✔ Example: 0 */
4566
4557
  BlueSaturation?: number;
4567
- /** ☆☆☆☆ ✔ Example: 9.25 */
4568
- Brightness?: number;
4569
4558
  /** ☆☆☆☆ ✔ Example: "5c62348a-2bbb-4e4c-89d9-3bf6a461ec89" */
4570
4559
  BurstID?: string;
4571
4560
  /** ☆☆☆☆ ✔ Example: 1 */
@@ -4622,6 +4611,8 @@ export interface XMPTags {
4622
4611
  Comment?: string;
4623
4612
  /** ☆☆☆☆ ✔ Example: {"Directory":[{"Item":{"DataURI":"primary_image","Length"…eg"}}]} */
4624
4613
  Container?: Struct;
4614
+ /** ☆☆☆☆ Example: "/home/username/pictures" */
4615
+ ContainerDirectory?: ContainerDirectoryItem[] | Struct[];
4625
4616
  /** ☆☆☆☆ ✔ Example: false */
4626
4617
  ConvertToGrayscale?: boolean;
4627
4618
  /** ☆☆☆☆ ✔ Example: "United States" */
@@ -4754,7 +4745,7 @@ export interface XMPTags {
4754
4745
  HDRPMakerNote?: BinaryField | string;
4755
4746
  /** ☆☆☆☆ ✔ Example: false */
4756
4747
  HasCrop?: boolean;
4757
- /** ☆☆☆☆ ✔ Example: "D1C7077D72112BA2E3FD1FDA7BCC2F0C" */
4748
+ /** ☆☆☆☆ ✔ Example: "F995C3239BC6E6FC1997814864CD2CA2" */
4758
4749
  HasExtendedXMP?: string;
4759
4750
  /** ☆☆☆☆ ✔ Example: true */
4760
4751
  HasSettings?: boolean;
@@ -4870,7 +4861,7 @@ export interface XMPTags {
4870
4861
  ModificationDate?: ExifDateTime | string;
4871
4862
  /** ☆☆☆☆ Example: 1 */
4872
4863
  MotionPhoto?: number;
4873
- /** ☆☆☆☆ Example: 2933040 */
4864
+ /** ☆☆☆☆ Example: 717986 */
4874
4865
  MotionPhotoPresentationTimestampUs?: number;
4875
4866
  /** ☆☆☆☆ Example: 1 */
4876
4867
  MotionPhotoVersion?: number;
@@ -5094,17 +5085,22 @@ export interface XMPTags {
5094
5085
  /**
5095
5086
  * This is a partial list of fields returned by {@link ExifTool.read}.
5096
5087
  *
5097
- * To prevent error TS2590: (Expression produces a union type that is too
5098
- * complex to represent) only the most common 2874 tags are retained in this
5099
- * interface.
5088
+ * This interface is **not** comprehensive: we only include the most popular
5089
+ * ~2 thousand fields so as to avoid TypeScript error TS2590: (Expression
5090
+ * produces a union type that is too complex to represent).
5091
+ *
5092
+ * If this interface is missing a field you need, you should handle that
5093
+ * typecasting safely in your own code.
5094
+ *
5095
+ * Comments by each tag include:
5096
+ * - a popularity rating (★★★★ is found in > 50% of samples, and ☆☆☆☆ is rare),
5097
+ * - a checkmark if the tag is used by popular devices (like iPhones), and
5098
+ * - an example value, JSON stringified.
5100
5099
  *
5101
- * Comments by each tag include popularity (★★★★ is found in > 50% of samples,
5102
- * and ☆☆☆☆ is rare), followed by a checkmark if the tag is used by popular
5103
- * devices (like iPhones) An example value, JSON stringified, follows the
5104
- * popularity ratings.
5100
+ * Autogenerated by "npm run mktags" by ExifTool 12.89 on Sun Jul 21 2024.
5101
+ * 2754 unique tags were found in 10126 photo and video files.
5105
5102
  *
5106
- * Autogenerated by "yarn mktags" by ExifTool 12.85 on Wed May 29 2024.
5107
- * 2744 unique tags were found in 10122 photo and video files.
5103
+ * @see https://exiftool.org/TagNames/
5108
5104
  */
5109
- export interface Tags extends APP12Tags, APP14Tags, APP1Tags, APP4Tags, APP5Tags, APP6Tags, CompositeTags, EXIFTags, ExifToolTags, ExifToolVendoredTags, FileTags, FlashPixTags, GeolocationTags, ICCProfileTags, IPTCTags, ImageDataHashTag, IPTCApplicationRecordTags, JFIFTags, JSONTags, MPFTags, MWGCollectionsTags, MWGKeywordTags, MakerNotesTags, MetaTags, PanasonicRawTags, PhotoshopTags, PrintIMTags, QuickTimeTags, RAFTags, RIFFTags, XMPTags {
5105
+ export interface Tags extends APPTags, CompositeTags, EXIFTags, ExifToolTags, ExifToolVendoredTags, FileTags, FlashPixTags, GeolocationTags, ICCProfileTags, IPTCApplicationRecordTags, IPTCTags, ImageDataHashTag, JFIFTags, JSONTags, MPFTags, MWGCollectionsTags, MWGKeywordTags, MakerNotesTags, MetaTags, PanasonicRawTags, PhotoshopTags, PrintIMTags, QuickTimeTags, RAFTags, RIFFTags, XMPTags {
5110
5106
  }