exiftool-vendored 15.10.1 โ 15.11.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 +8 -0
- package/dist/ExifTool.d.ts +13 -5
- package/dist/Tags.d.ts +66 -50
- package/package.json +13 -13
package/CHANGELOG.md
CHANGED
|
@@ -25,6 +25,14 @@ vendored versions of ExifTool match the version they vendor.
|
|
|
25
25
|
|
|
26
26
|
## Version history
|
|
27
27
|
|
|
28
|
+
### v15.11.0
|
|
29
|
+
|
|
30
|
+
- ๐ฑ ExifTool upgraded to [v12.40](https://exiftool.org/history.html#v12.40).
|
|
31
|
+
|
|
32
|
+
- ๐ฆ Updated dependencies (batch-cluster [v10.0.0](https://github.com/photostructure/batch-cluster.js/blob/main/CHANGELOG.md#v1000))
|
|
33
|
+
|
|
34
|
+
- ๐ฆ Rebuild `Tags.ts` and docs
|
|
35
|
+
|
|
28
36
|
### v15.10.1
|
|
29
37
|
|
|
30
38
|
- ๐ฆ Updated dependencies (batch-cluster v8.1.0)
|
package/dist/ExifTool.d.ts
CHANGED
|
@@ -320,16 +320,24 @@ export declare class ExifTool {
|
|
|
320
320
|
* @return report why child processes were recycled
|
|
321
321
|
*/
|
|
322
322
|
childEndCounts(): {
|
|
323
|
-
dead: number;
|
|
324
|
-
ending: number;
|
|
325
|
-
unhealthy: number;
|
|
326
|
-
closed: number;
|
|
327
|
-
worn: number;
|
|
328
323
|
idle: number;
|
|
329
324
|
broken: number;
|
|
325
|
+
closed: number;
|
|
326
|
+
ending: number;
|
|
327
|
+
ended: number;
|
|
330
328
|
old: number;
|
|
329
|
+
"proc.close": number;
|
|
330
|
+
"proc.disconnect": number;
|
|
331
|
+
"proc.error": number;
|
|
332
|
+
"proc.exit": number;
|
|
333
|
+
"stderr.error": number;
|
|
334
|
+
stderr: number;
|
|
335
|
+
"stdin.error": number;
|
|
336
|
+
"stdout.error": number;
|
|
331
337
|
timeout: number;
|
|
332
338
|
tooMany: number;
|
|
339
|
+
unhealthy: number;
|
|
340
|
+
worn: number;
|
|
333
341
|
};
|
|
334
342
|
}
|
|
335
343
|
/**
|
package/dist/Tags.d.ts
CHANGED
|
@@ -7,7 +7,7 @@ import { Struct } from "./Struct";
|
|
|
7
7
|
export interface ExifToolTags {
|
|
8
8
|
/** โโโโ โ Example: "File is empty" */
|
|
9
9
|
Error?: string;
|
|
10
|
-
/** โ
โ
โ
โ
โ Example: 12.
|
|
10
|
+
/** โ
โ
โ
โ
โ Example: 12.4 */
|
|
11
11
|
ExifToolVersion?: number;
|
|
12
12
|
/** โโโโ โ Example: "Unrecognized IPTC record 0 (ignored)" */
|
|
13
13
|
Warning?: string;
|
|
@@ -33,11 +33,11 @@ export interface FileTags {
|
|
|
33
33
|
EncodingProcess?: string;
|
|
34
34
|
/** โ
โ
โ
โ
โ Example: "Little-endian (Intel, II)" */
|
|
35
35
|
ExifByteOrder?: string;
|
|
36
|
-
/** โ
โ
โ
โ
โ Example:
|
|
36
|
+
/** โ
โ
โ
โ
โ Example: 2022-02-10T17:21:41.000-08:00 */
|
|
37
37
|
FileAccessDate?: ExifDateTime | string;
|
|
38
|
-
/** โ
โ
โ
โ
โ Example:
|
|
38
|
+
/** โ
โ
โ
โ
โ Example: 2022-02-10T16:31:21.000-08:00 */
|
|
39
39
|
FileInodeChangeDate?: ExifDateTime | string;
|
|
40
|
-
/** โ
โ
โ
โ
โ Example:
|
|
40
|
+
/** โ
โ
โ
โ
โ Example: 2022-01-04T09:34:09.000-08:00 */
|
|
41
41
|
FileModifyDate?: ExifDateTime | string;
|
|
42
42
|
/** โ
โ
โ
โ
โ Example: "utc+8_oly.jpg" */
|
|
43
43
|
FileName?: string;
|
|
@@ -93,7 +93,7 @@ export interface CompositeTags {
|
|
|
93
93
|
DOF?: string;
|
|
94
94
|
/** โโโโ Example: 2006-12-19 */
|
|
95
95
|
DateCreated?: ExifDate | string;
|
|
96
|
-
/** โโโโ โ Example:
|
|
96
|
+
/** โโโโ โ Example: undefined */
|
|
97
97
|
DateTimeCreated?: ExifDateTime | string;
|
|
98
98
|
/** โโโโ โ Example: 2017-02-20T18:06:40.000Z */
|
|
99
99
|
DateTimeOriginal?: ExifDateTime | string;
|
|
@@ -123,6 +123,8 @@ export interface CompositeTags {
|
|
|
123
123
|
FocusDistance2?: string;
|
|
124
124
|
/** โโโโ โ Example: 99.8 */
|
|
125
125
|
GPSAltitude?: number;
|
|
126
|
+
/** โโโโ Example: "Above Sea Level" */
|
|
127
|
+
GPSAltitudeRef?: string;
|
|
126
128
|
/** โโโโ โ Example: 2020-10-23T09:27:26.000Z */
|
|
127
129
|
GPSDateTime?: ExifDateTime | string;
|
|
128
130
|
/** โโโโ โ Example: "43 deg 37' 59.61" N" */
|
|
@@ -183,13 +185,13 @@ export interface CompositeTags {
|
|
|
183
185
|
ShootingMode?: string;
|
|
184
186
|
/** โโโโ โ Example: "1st-curtain sync" */
|
|
185
187
|
ShutterCurtainHack?: string;
|
|
186
|
-
/** โ
โ
โ
โ
โ Example: "
|
|
188
|
+
/** โ
โ
โ
โ
โ Example: "inf" */
|
|
187
189
|
ShutterSpeed?: string;
|
|
188
|
-
/** โ
โโโ โ Example:
|
|
190
|
+
/** โ
โโโ โ Example: 2022-01-14T10:56:21.580Z */
|
|
189
191
|
SubSecCreateDate?: ExifDateTime | string;
|
|
190
|
-
/** โ
โโโ โ Example:
|
|
192
|
+
/** โ
โโโ โ Example: 2022-01-14T10:56:21.580Z */
|
|
191
193
|
SubSecDateTimeOriginal?: ExifDateTime | string;
|
|
192
|
-
/** โ
โโโ โ Example:
|
|
194
|
+
/** โ
โโโ โ Example: 2022-01-14T10:56:21.580Z */
|
|
193
195
|
SubSecModifyDate?: ExifDateTime | string;
|
|
194
196
|
}
|
|
195
197
|
export interface APP1Tags {
|
|
@@ -235,6 +237,10 @@ export interface APP1Tags {
|
|
|
235
237
|
FrameRate?: number;
|
|
236
238
|
/** โโโโ Example: 1.9 */
|
|
237
239
|
GPSDOP?: number;
|
|
240
|
+
/** โโโโ Example: 94 */
|
|
241
|
+
GPSImgDirection?: number;
|
|
242
|
+
/** โโโโ Example: "Magnetic North" */
|
|
243
|
+
GPSImgDirectionRef?: string;
|
|
238
244
|
/** โโโโ Example: "WGS84" */
|
|
239
245
|
GPSMapDatum?: string;
|
|
240
246
|
/** โโโโ Example: "Yes" */
|
|
@@ -595,8 +601,6 @@ export interface EXIFTags {
|
|
|
595
601
|
FocalPlaneXResolution?: number;
|
|
596
602
|
/** โ
โ
โ
โ โ Example: 9846.1538 */
|
|
597
603
|
FocalPlaneYResolution?: number;
|
|
598
|
-
/** โโโโ โ Example: "Unknown (2)" */
|
|
599
|
-
GPSAltitudeRef?: string;
|
|
600
604
|
/** โโโโ โ Example: "ๅบไธญๅธ้ทๅใฎๆฃฎๅ็ฉ้คจ" */
|
|
601
605
|
GPSAreaInformation?: string;
|
|
602
606
|
/** โโโโ โ Example: 2020-10-23 */
|
|
@@ -617,10 +621,6 @@ export interface EXIFTags {
|
|
|
617
621
|
GPSDifferential?: string;
|
|
618
622
|
/** โโโโ โ Example: "8.937059922 m" */
|
|
619
623
|
GPSHPositioningError?: string;
|
|
620
|
-
/** โโโโ โ Example: 94.800416 */
|
|
621
|
-
GPSImgDirection?: number;
|
|
622
|
-
/** โโโโ โ Example: "Unknown ()" */
|
|
623
|
-
GPSImgDirectionRef?: string;
|
|
624
624
|
/** โโโโ โ Example: "Unknown ()" */
|
|
625
625
|
GPSMeasureMode?: string;
|
|
626
626
|
/** โโโโ โ Example: "gps" */
|
|
@@ -1169,6 +1169,8 @@ export interface QuickTimeTags {
|
|
|
1169
1169
|
BackgroundColor?: string;
|
|
1170
1170
|
/** โโโโ โ Example: 0 */
|
|
1171
1171
|
ChapterListTrackID?: number;
|
|
1172
|
+
/** โโโโ Example: "3840x2160" */
|
|
1173
|
+
CleanApertureDimensions?: string;
|
|
1172
1174
|
/** โโโโ โ Example: "nclx 9 1 9" */
|
|
1173
1175
|
ColorRepresentation?: string;
|
|
1174
1176
|
/** โโโโ โ Example: ["qt "] */
|
|
@@ -1177,11 +1179,17 @@ export interface QuickTimeTags {
|
|
|
1177
1179
|
CompressorID?: string;
|
|
1178
1180
|
/** โโโโ โ Example: "Photo - JPEG" */
|
|
1179
1181
|
CompressorName?: string;
|
|
1182
|
+
/** โโโโ Example: "Track 1" */
|
|
1183
|
+
ContentDescribes?: string;
|
|
1184
|
+
/** โโโโ Example: 2021-10-24T17:00:51.000+01:00 */
|
|
1185
|
+
CreationDate?: ExifDateTime | string;
|
|
1180
1186
|
/** โโโโ โ Example: "0 s" */
|
|
1181
1187
|
CurrentTime?: string;
|
|
1188
|
+
/** โโโโ Example: "3840x2160" */
|
|
1189
|
+
EncodedPixelsDimensions?: string;
|
|
1182
1190
|
/** โโโโ โ Example: "Helvetica" */
|
|
1183
1191
|
FontName?: string;
|
|
1184
|
-
/** โโโโ โ Example: "
|
|
1192
|
+
/** โโโโ โ Example: "51 deg 28' 58.44" N, 3 deg 11' 9.96" W, 13.739 m Above Sea Level" */
|
|
1185
1193
|
GPSCoordinates?: string;
|
|
1186
1194
|
/** โโโโ โ Example: 0 */
|
|
1187
1195
|
GenBalance?: number;
|
|
@@ -1199,15 +1207,17 @@ export interface QuickTimeTags {
|
|
|
1199
1207
|
HandlerClass?: string;
|
|
1200
1208
|
/** โโโโ โ Example: "SoundHandle" */
|
|
1201
1209
|
HandlerDescription?: string;
|
|
1202
|
-
/** โโโโ โ Example: "
|
|
1210
|
+
/** โโโโ โ Example: "Metadata Tags" */
|
|
1203
1211
|
HandlerType?: string;
|
|
1204
1212
|
/** โโโโ โ Example: "Panasonic" */
|
|
1205
1213
|
HandlerVendorID?: string;
|
|
1214
|
+
/** โโโโ Example: 4.798027 */
|
|
1215
|
+
LocationAccuracyHorizontal?: number;
|
|
1206
1216
|
/** โโโโ โ Example: "MP4 v2 [ISO 14496-14]" */
|
|
1207
1217
|
MajorBrand?: string;
|
|
1208
1218
|
/** โโโโ โ Example: "1 0 0 0 1 0 0 0 1" */
|
|
1209
1219
|
MatrixStructure?: string;
|
|
1210
|
-
/** โโโโ โ Example:
|
|
1220
|
+
/** โโโโ โ Example: 2021-10-24T16:54:46.000+01:00 */
|
|
1211
1221
|
MediaCreateDate?: ExifDateTime | string;
|
|
1212
1222
|
/** โโโโ โ Example: 98304 */
|
|
1213
1223
|
MediaDataOffset?: number;
|
|
@@ -1217,17 +1227,19 @@ export interface QuickTimeTags {
|
|
|
1217
1227
|
MediaDuration?: number;
|
|
1218
1228
|
/** โโโโ โ Example: 0 */
|
|
1219
1229
|
MediaHeaderVersion?: number;
|
|
1220
|
-
/** โโโโ โ Example: "
|
|
1230
|
+
/** โโโโ โ Example: "und" */
|
|
1221
1231
|
MediaLanguageCode?: string;
|
|
1222
|
-
/** โโโโ โ Example:
|
|
1232
|
+
/** โโโโ โ Example: 2021-10-24T16:55:12.000+01:00 */
|
|
1223
1233
|
MediaModifyDate?: ExifDateTime | string;
|
|
1224
1234
|
/** โโโโ โ Example: 8000 */
|
|
1225
1235
|
MediaTimeScale?: number;
|
|
1236
|
+
/** โโโโ Example: "mebx" */
|
|
1237
|
+
MetaFormat?: string;
|
|
1226
1238
|
/** โโโโ โ Example: "2011.7.0" */
|
|
1227
1239
|
MinorVersion?: string;
|
|
1228
1240
|
/** โโโโ โ Example: 0 */
|
|
1229
1241
|
MovieHeaderVersion?: number;
|
|
1230
|
-
/** โโโโ โ Example:
|
|
1242
|
+
/** โโโโ โ Example: 6 */
|
|
1231
1243
|
NextTrackID?: number;
|
|
1232
1244
|
/** โโโโ โ Example: "32768 32768 32768" */
|
|
1233
1245
|
OpColor?: string;
|
|
@@ -1245,6 +1257,10 @@ export interface QuickTimeTags {
|
|
|
1245
1257
|
PreviewDuration?: number;
|
|
1246
1258
|
/** โโโโ โ Example: "0 s" */
|
|
1247
1259
|
PreviewTime?: string;
|
|
1260
|
+
/** โโโโ Example: "3840x2160" */
|
|
1261
|
+
ProductionApertureDimensions?: string;
|
|
1262
|
+
/** โโโโ Example: "mp4a" */
|
|
1263
|
+
PurchaseFileFormat?: string;
|
|
1248
1264
|
/** โโโโ โ Example: 0 */
|
|
1249
1265
|
SelectionDuration?: number;
|
|
1250
1266
|
/** โโโโ โ Example: "0 s" */
|
|
@@ -1267,7 +1283,7 @@ export interface QuickTimeTags {
|
|
|
1267
1283
|
TimeCode?: number;
|
|
1268
1284
|
/** โโโโ โ Example: 90000 */
|
|
1269
1285
|
TimeScale?: number;
|
|
1270
|
-
/** โโโโ โ Example:
|
|
1286
|
+
/** โโโโ โ Example: 2021-10-24T16:54:46.000+01:00 */
|
|
1271
1287
|
TrackCreateDate?: ExifDateTime | string;
|
|
1272
1288
|
/** โโโโ โ Example: 9.5095 */
|
|
1273
1289
|
TrackDuration?: number;
|
|
@@ -1277,7 +1293,7 @@ export interface QuickTimeTags {
|
|
|
1277
1293
|
TrackID?: number;
|
|
1278
1294
|
/** โโโโ โ Example: 0 */
|
|
1279
1295
|
TrackLayer?: number;
|
|
1280
|
-
/** โโโโ โ Example:
|
|
1296
|
+
/** โโโโ โ Example: 2021-10-24T16:55:12.000+01:00 */
|
|
1281
1297
|
TrackModifyDate?: ExifDateTime | string;
|
|
1282
1298
|
/** โโโโ โ Example: "0.00%" */
|
|
1283
1299
|
TrackVolume?: string;
|
|
@@ -1641,7 +1657,7 @@ export interface MakerNotesTags {
|
|
|
1641
1657
|
ArtModeParameters?: string;
|
|
1642
1658
|
/** โโโโ โ Example: "0 192 4607 3263" */
|
|
1643
1659
|
AspectFrame?: string;
|
|
1644
|
-
/** โ
โโโ โ Example: "Unknown (
|
|
1660
|
+
/** โ
โโโ โ Example: "Unknown (942874672)" */
|
|
1645
1661
|
AspectRatio?: string;
|
|
1646
1662
|
/** โโโโ โ Example: "Auto Bracketing" */
|
|
1647
1663
|
AssignBktButton?: string;
|
|
@@ -1863,7 +1879,7 @@ export interface MakerNotesTags {
|
|
|
1863
1879
|
CameraID?: string;
|
|
1864
1880
|
/** โ
โ
โโ โ Example: "n/a" */
|
|
1865
1881
|
CameraISO?: string;
|
|
1866
|
-
/** โโโโ โ Example: "
|
|
1882
|
+
/** โโโโ โ Example: "Unknown (155)" */
|
|
1867
1883
|
CameraOrientation?: string;
|
|
1868
1884
|
/** โโโโ โ Example: "(Binary data 8964 bytes, use -b option to extract)" */
|
|
1869
1885
|
CameraParameters?: string;
|
|
@@ -2035,13 +2051,13 @@ export interface MakerNotesTags {
|
|
|
2035
2051
|
ColorToneAuto?: number;
|
|
2036
2052
|
/** โโโโ โ Example: 0 */
|
|
2037
2053
|
ColorToneFaithful?: number;
|
|
2038
|
-
/** โโโโ โ Example:
|
|
2054
|
+
/** โโโโ โ Example: 11 */
|
|
2039
2055
|
ColorToneLandscape?: number;
|
|
2040
2056
|
/** โโโโ โ Example: 0 */
|
|
2041
2057
|
ColorToneNeutral?: number;
|
|
2042
2058
|
/** โโโโ โ Example: 0 */
|
|
2043
2059
|
ColorTonePortrait?: number;
|
|
2044
|
-
/** โโโโ โ Example:
|
|
2060
|
+
/** โโโโ โ Example: 15663191 */
|
|
2045
2061
|
ColorToneStandard?: number;
|
|
2046
2062
|
/** โโโโ โ Example: 0 */
|
|
2047
2063
|
ColorToneUserDef1?: number;
|
|
@@ -2121,27 +2137,27 @@ export interface MakerNotesTags {
|
|
|
2121
2137
|
ContrastDetectAFArea?: string;
|
|
2122
2138
|
/** โโโโ โ Example: "Yes" */
|
|
2123
2139
|
ContrastDetectAFInFocus?: string;
|
|
2124
|
-
/** โโโโ โ Example:
|
|
2140
|
+
/** โโโโ โ Example: 6553600 */
|
|
2125
2141
|
ContrastFaithful?: number;
|
|
2126
2142
|
/** โโโโ Example: 0 */
|
|
2127
2143
|
ContrastHighlight?: number;
|
|
2128
2144
|
/** โโโโ Example: "Off" */
|
|
2129
2145
|
ContrastHighlightShadowAdj?: string;
|
|
2130
|
-
/** โโโโ โ Example:
|
|
2146
|
+
/** โโโโ โ Example: 6553600 */
|
|
2131
2147
|
ContrastLandscape?: number;
|
|
2132
2148
|
/** โโโโ โ Example: "Unknown (19)" */
|
|
2133
2149
|
ContrastMode?: string;
|
|
2134
|
-
/** โโโโ โ Example:
|
|
2150
|
+
/** โโโโ โ Example: 524288 */
|
|
2135
2151
|
ContrastMonochrome?: number;
|
|
2136
2152
|
/** โโโโ โ Example: 0 */
|
|
2137
2153
|
ContrastNeutral?: number;
|
|
2138
|
-
/** โโโโ โ Example:
|
|
2154
|
+
/** โโโโ โ Example: 9699328 */
|
|
2139
2155
|
ContrastPortrait?: number;
|
|
2140
2156
|
/** โโโโ โ Example: "1 (min -5, max 5)" */
|
|
2141
2157
|
ContrastSetting?: string;
|
|
2142
2158
|
/** โโโโ Example: 0 */
|
|
2143
2159
|
ContrastShadow?: number;
|
|
2144
|
-
/** โโโโ โ Example:
|
|
2160
|
+
/** โโโโ โ Example: 12058626 */
|
|
2145
2161
|
ContrastStandard?: number;
|
|
2146
2162
|
/** โโโโ โ Example: 3 */
|
|
2147
2163
|
ContrastUserDef1?: number;
|
|
@@ -2175,7 +2191,7 @@ export interface MakerNotesTags {
|
|
|
2175
2191
|
CreativeStyleSetting?: string;
|
|
2176
2192
|
/** โโโโ โ Example: "16 8 5568 3712" */
|
|
2177
2193
|
CropArea?: string;
|
|
2178
|
-
/** โโโโ โ Example:
|
|
2194
|
+
/** โโโโ โ Example: 48 */
|
|
2179
2195
|
CropBottomMargin?: number;
|
|
2180
2196
|
/** โโโโ โ Example: 7776 */
|
|
2181
2197
|
CropHeight?: number;
|
|
@@ -2183,21 +2199,21 @@ export interface MakerNotesTags {
|
|
|
2183
2199
|
CropHiSpeed?: string;
|
|
2184
2200
|
/** โโโโ โ Example: "8 0" */
|
|
2185
2201
|
CropLeft?: string;
|
|
2186
|
-
/** โโโโ โ Example:
|
|
2202
|
+
/** โโโโ โ Example: 8240 */
|
|
2187
2203
|
CropLeftMargin?: number;
|
|
2188
2204
|
/** โโโโ โ Example: "n/a" */
|
|
2189
2205
|
CropMode?: string;
|
|
2190
|
-
/** โโโโ โ Example:
|
|
2206
|
+
/** โโโโ โ Example: 8240 */
|
|
2191
2207
|
CropRightMargin?: number;
|
|
2192
2208
|
/** โโโโ โ Example: "8 0" */
|
|
2193
2209
|
CropTop?: string;
|
|
2194
|
-
/** โโโโ โ Example:
|
|
2210
|
+
/** โโโโ โ Example: 8240 */
|
|
2195
2211
|
CropTopMargin?: number;
|
|
2196
2212
|
/** โโโโ โ Example: 5184 */
|
|
2197
2213
|
CropWidth?: number;
|
|
2198
2214
|
/** โโโโ โ Example: 5792 */
|
|
2199
2215
|
CroppedImageHeight?: number;
|
|
2200
|
-
/** โโโโ โ Example:
|
|
2216
|
+
/** โโโโ โ Example: 3153968 */
|
|
2201
2217
|
CroppedImageLeft?: number;
|
|
2202
2218
|
/** โโโโ โ Example: 0 */
|
|
2203
2219
|
CroppedImageTop?: number;
|
|
@@ -2313,7 +2329,7 @@ export interface MakerNotesTags {
|
|
|
2313
2329
|
DriveModeSetting?: string;
|
|
2314
2330
|
/** โโโโ โ Example: "n/a" */
|
|
2315
2331
|
DriveSpeed?: string;
|
|
2316
|
-
/** โโโโ โ Example: "(Binary data
|
|
2332
|
+
/** โโโโ โ Example: "(Binary data 2047 bytes, use -b option to extract)" */
|
|
2317
2333
|
DustRemovalData?: string;
|
|
2318
2334
|
/** โโโโ โ Example: "9 Points" */
|
|
2319
2335
|
DynamicAFArea?: string;
|
|
@@ -2527,13 +2543,13 @@ export interface MakerNotesTags {
|
|
|
2527
2543
|
FilterEffect?: string;
|
|
2528
2544
|
/** โโโโ โ Example: "n/a" */
|
|
2529
2545
|
FilterEffectAuto?: string;
|
|
2530
|
-
/** โโโโ โ Example: "
|
|
2546
|
+
/** โโโโ โ Example: "Unknown (0x10000)" */
|
|
2531
2547
|
FilterEffectMonochrome?: string;
|
|
2532
2548
|
/** โโโโ โ Example: "n/a" */
|
|
2533
2549
|
FilterEffectUserDef1?: string;
|
|
2534
2550
|
/** โโโโ โ Example: "None" */
|
|
2535
2551
|
FilterEffectUserDef2?: string;
|
|
2536
|
-
/** โโโโ โ Example: "
|
|
2552
|
+
/** โโโโ โ Example: "Unknown (0xfb0000)" */
|
|
2537
2553
|
FilterEffectUserDef3?: string;
|
|
2538
2554
|
/** โโโโ โ Example: "On" */
|
|
2539
2555
|
FinderDisplayDuringExposure?: string;
|
|
@@ -3127,7 +3143,7 @@ export interface MakerNotesTags {
|
|
|
3127
3143
|
LateralChromaticAberration?: string;
|
|
3128
3144
|
/** โโโโ Example: "4.0 to 22" */
|
|
3129
3145
|
LensApertureRange?: string;
|
|
3130
|
-
/** โโโโ โ Example: "
|
|
3146
|
+
/** โโโโ โ Example: "Aperture" */
|
|
3131
3147
|
LensControlRing?: string;
|
|
3132
3148
|
/** โโโโ โ Example: "0801" */
|
|
3133
3149
|
LensDataVersion?: string;
|
|
@@ -3921,7 +3937,7 @@ export interface MakerNotesTags {
|
|
|
3921
3937
|
Resaved?: string;
|
|
3922
3938
|
/** โโโโ Example: "MED" */
|
|
3923
3939
|
ResolutionMode?: string;
|
|
3924
|
-
/** โโโโ โ Example: "Flags
|
|
3940
|
+
/** โโโโ โ Example: "Flags 0x77" */
|
|
3925
3941
|
RestrictDriveModes?: string;
|
|
3926
3942
|
/** โ
โโโ โ Example: "Unknown ()" */
|
|
3927
3943
|
RetouchHistory?: string;
|
|
@@ -3987,13 +4003,13 @@ export interface MakerNotesTags {
|
|
|
3987
4003
|
SaturationAdj?: number;
|
|
3988
4004
|
/** โโโโ โ Example: 0 */
|
|
3989
4005
|
SaturationAuto?: number;
|
|
3990
|
-
/** โโโโ โ Example:
|
|
4006
|
+
/** โโโโ โ Example: 655360 */
|
|
3991
4007
|
SaturationFaithful?: number;
|
|
3992
|
-
/** โโโโ โ Example:
|
|
4008
|
+
/** โโโโ โ Example: 8650752 */
|
|
3993
4009
|
SaturationLandscape?: number;
|
|
3994
|
-
/** โโโโ โ Example:
|
|
4010
|
+
/** โโโโ โ Example: 6619136 */
|
|
3995
4011
|
SaturationNeutral?: number;
|
|
3996
|
-
/** โโโโ โ Example:
|
|
4012
|
+
/** โโโโ โ Example: 6553609 */
|
|
3997
4013
|
SaturationPortrait?: number;
|
|
3998
4014
|
/** โโโโ โ Example: 0 */
|
|
3999
4015
|
SaturationSetting?: number;
|
|
@@ -4127,7 +4143,7 @@ export interface MakerNotesTags {
|
|
|
4127
4143
|
SharpnessMonochrome?: number;
|
|
4128
4144
|
/** โโโโ โ Example: 0 */
|
|
4129
4145
|
SharpnessNeutral?: number;
|
|
4130
|
-
/** โโโโ โ Example:
|
|
4146
|
+
/** โโโโ โ Example: 2752758 */
|
|
4131
4147
|
SharpnessPortrait?: number;
|
|
4132
4148
|
/** โโโโ โ Example: "+3" */
|
|
4133
4149
|
SharpnessRange?: string;
|
|
@@ -4401,7 +4417,7 @@ export interface MakerNotesTags {
|
|
|
4401
4417
|
ToningEffectUserDef1?: string;
|
|
4402
4418
|
/** โโโโ โ Example: "None" */
|
|
4403
4419
|
ToningEffectUserDef2?: string;
|
|
4404
|
-
/** โโโโ โ Example: "
|
|
4420
|
+
/** โโโโ โ Example: "Sepia" */
|
|
4405
4421
|
ToningEffectUserDef3?: string;
|
|
4406
4422
|
/** โโโโ โ Example: "n/a" */
|
|
4407
4423
|
ToningSaturation?: string;
|
|
@@ -4433,11 +4449,11 @@ export interface MakerNotesTags {
|
|
|
4433
4449
|
UsableMeteringModes?: string;
|
|
4434
4450
|
/** โโโโ โ Example: "Flags 0x3f" */
|
|
4435
4451
|
UsableShootingModes?: string;
|
|
4436
|
-
/** โโโโ โ Example: "Unknown (
|
|
4452
|
+
/** โโโโ โ Example: "Unknown (4)" */
|
|
4437
4453
|
UserDef1PictureStyle?: string;
|
|
4438
4454
|
/** โโโโ โ Example: "Unknown (0)" */
|
|
4439
4455
|
UserDef2PictureStyle?: string;
|
|
4440
|
-
/** โโโโ โ Example: "
|
|
4456
|
+
/** โโโโ โ Example: "Unknown (4)" */
|
|
4441
4457
|
UserDef3PictureStyle?: string;
|
|
4442
4458
|
/** โโโโ Example: "PC900 COVERT PRO" */
|
|
4443
4459
|
UserLabel?: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "exiftool-vendored",
|
|
3
|
-
"version": "15.
|
|
3
|
+
"version": "15.11.0",
|
|
4
4
|
"description": "Efficient, cross-platform access to ExifTool",
|
|
5
5
|
"main": "./dist/ExifTool.js",
|
|
6
6
|
"types": "./dist/ExifTool.d.ts",
|
|
@@ -69,30 +69,30 @@
|
|
|
69
69
|
},
|
|
70
70
|
"devDependencies": {
|
|
71
71
|
"@types/chai": "^4.3.0",
|
|
72
|
-
"@types/chai-as-promised": "^7.1.
|
|
72
|
+
"@types/chai-as-promised": "^7.1.5",
|
|
73
73
|
"@types/chai-subset": "^1.3.3",
|
|
74
74
|
"@types/fs-extra": "^9.0.13",
|
|
75
75
|
"@types/globule": "^1.1.4",
|
|
76
76
|
"@types/he": "^1.1.2",
|
|
77
|
-
"@types/mocha": "^9.
|
|
78
|
-
"@types/node": "^17.0.
|
|
77
|
+
"@types/mocha": "^9.1.0",
|
|
78
|
+
"@types/node": "^17.0.17",
|
|
79
79
|
"@types/progress": "^2.0.5",
|
|
80
80
|
"@types/rimraf": "^3.0.2",
|
|
81
81
|
"@types/tar-fs": "^2.0.1",
|
|
82
82
|
"@types/tmp": "^0.2.3",
|
|
83
83
|
"@types/xmldom": "^0.1.31",
|
|
84
|
-
"@typescript-eslint/eslint-plugin": "^5.
|
|
85
|
-
"@typescript-eslint/parser": "^5.
|
|
86
|
-
"chai": "^4.3.
|
|
84
|
+
"@typescript-eslint/eslint-plugin": "^5.11.0",
|
|
85
|
+
"@typescript-eslint/parser": "^5.11.0",
|
|
86
|
+
"chai": "^4.3.6",
|
|
87
87
|
"chai-as-promised": "^7.1.1",
|
|
88
88
|
"chai-subset": "^1.6.0",
|
|
89
|
-
"eslint": "^8.
|
|
89
|
+
"eslint": "^8.9.0",
|
|
90
90
|
"eslint-plugin-import": "^2.25.4",
|
|
91
91
|
"eslint-plugin-node": "^11.1.0",
|
|
92
92
|
"extract-zip": "^2.0.1",
|
|
93
93
|
"fs-extra": "^10.0.0",
|
|
94
94
|
"globule": "^1.3.3",
|
|
95
|
-
"mocha": "^9.
|
|
95
|
+
"mocha": "^9.2.0",
|
|
96
96
|
"npm-run-all": "^4.1.5",
|
|
97
97
|
"prettier": "^2.5.1",
|
|
98
98
|
"progress": "^2.0.3",
|
|
@@ -102,19 +102,19 @@
|
|
|
102
102
|
"tar-fs": "^2.1.1",
|
|
103
103
|
"tmp": "^0.2.1",
|
|
104
104
|
"typedoc": "^0.22.11",
|
|
105
|
-
"typescript": "^4.5.
|
|
105
|
+
"typescript": "^4.5.5",
|
|
106
106
|
"@xmldom/xmldom": "^0.8.0",
|
|
107
107
|
"xpath": "^0.0.32"
|
|
108
108
|
},
|
|
109
109
|
"dependencies": {
|
|
110
110
|
"@types/luxon": "^2.0.9",
|
|
111
|
-
"batch-cluster": "^
|
|
111
|
+
"batch-cluster": "^10.0.0",
|
|
112
112
|
"he": "^1.2.0",
|
|
113
113
|
"luxon": "^2.3.0",
|
|
114
114
|
"tz-lookup": "^6.1.25"
|
|
115
115
|
},
|
|
116
116
|
"optionalDependencies": {
|
|
117
|
-
"exiftool-vendored.exe": "12.
|
|
118
|
-
"exiftool-vendored.pl": "12.
|
|
117
|
+
"exiftool-vendored.exe": "12.40.0",
|
|
118
|
+
"exiftool-vendored.pl": "12.40.0"
|
|
119
119
|
}
|
|
120
120
|
}
|