@aws-sdk/client-mediaconvert 3.301.0 → 3.303.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/dist-cjs/models/models_0.js +1160 -1353
- package/dist-cjs/models/models_1.js +1011 -1216
- package/dist-cjs/models/models_2.js +22 -27
- package/dist-es/models/models_0.js +1160 -1353
- package/dist-es/models/models_1.js +1011 -1216
- package/dist-es/models/models_2.js +22 -27
- package/dist-types/models/models_0.d.ts +2131 -1166
- package/dist-types/models/models_1.d.ts +2036 -1011
- package/dist-types/models/models_2.d.ts +47 -22
- package/dist-types/ts3.4/models/models_0.d.ts +1524 -1160
- package/dist-types/ts3.4/models/models_1.d.ts +1381 -1011
- package/dist-types/ts3.4/models/models_2.d.ts +28 -22
- package/package.json +34 -34
|
@@ -38,12 +38,13 @@ import {
|
|
|
38
38
|
QueueTransition,
|
|
39
39
|
Rectangle,
|
|
40
40
|
} from "./models_0";
|
|
41
|
-
export declare
|
|
42
|
-
SDT_FOLLOW
|
|
43
|
-
SDT_FOLLOW_IF_PRESENT
|
|
44
|
-
SDT_MANUAL
|
|
45
|
-
SDT_NONE
|
|
46
|
-
}
|
|
41
|
+
export declare const OutputSdt: {
|
|
42
|
+
readonly SDT_FOLLOW: "SDT_FOLLOW";
|
|
43
|
+
readonly SDT_FOLLOW_IF_PRESENT: "SDT_FOLLOW_IF_PRESENT";
|
|
44
|
+
readonly SDT_MANUAL: "SDT_MANUAL";
|
|
45
|
+
readonly SDT_NONE: "SDT_NONE";
|
|
46
|
+
};
|
|
47
|
+
export type OutputSdt = (typeof OutputSdt)[keyof typeof OutputSdt];
|
|
47
48
|
export interface DvbSdtSettings {
|
|
48
49
|
OutputSdt?: OutputSdt | string;
|
|
49
50
|
SdtInterval?: number;
|
|
@@ -53,57 +54,78 @@ export interface DvbSdtSettings {
|
|
|
53
54
|
export interface DvbTdtSettings {
|
|
54
55
|
TdtInterval?: number;
|
|
55
56
|
}
|
|
56
|
-
export declare
|
|
57
|
-
VIDEO_AND_FIXED_INTERVALS
|
|
58
|
-
VIDEO_INTERVAL
|
|
59
|
-
}
|
|
60
|
-
export
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
export declare
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
}
|
|
72
|
-
export
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
export declare
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
}
|
|
84
|
-
export
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
57
|
+
export declare const M2tsEbpAudioInterval: {
|
|
58
|
+
readonly VIDEO_AND_FIXED_INTERVALS: "VIDEO_AND_FIXED_INTERVALS";
|
|
59
|
+
readonly VIDEO_INTERVAL: "VIDEO_INTERVAL";
|
|
60
|
+
};
|
|
61
|
+
export type M2tsEbpAudioInterval =
|
|
62
|
+
(typeof M2tsEbpAudioInterval)[keyof typeof M2tsEbpAudioInterval];
|
|
63
|
+
export declare const M2tsEbpPlacement: {
|
|
64
|
+
readonly VIDEO_AND_AUDIO_PIDS: "VIDEO_AND_AUDIO_PIDS";
|
|
65
|
+
readonly VIDEO_PID: "VIDEO_PID";
|
|
66
|
+
};
|
|
67
|
+
export type M2tsEbpPlacement =
|
|
68
|
+
(typeof M2tsEbpPlacement)[keyof typeof M2tsEbpPlacement];
|
|
69
|
+
export declare const M2tsEsRateInPes: {
|
|
70
|
+
readonly EXCLUDE: "EXCLUDE";
|
|
71
|
+
readonly INCLUDE: "INCLUDE";
|
|
72
|
+
};
|
|
73
|
+
export type M2tsEsRateInPes =
|
|
74
|
+
(typeof M2tsEsRateInPes)[keyof typeof M2tsEsRateInPes];
|
|
75
|
+
export declare const M2tsForceTsVideoEbpOrder: {
|
|
76
|
+
readonly DEFAULT: "DEFAULT";
|
|
77
|
+
readonly FORCE: "FORCE";
|
|
78
|
+
};
|
|
79
|
+
export type M2tsForceTsVideoEbpOrder =
|
|
80
|
+
(typeof M2tsForceTsVideoEbpOrder)[keyof typeof M2tsForceTsVideoEbpOrder];
|
|
81
|
+
export declare const M2tsKlvMetadata: {
|
|
82
|
+
readonly NONE: "NONE";
|
|
83
|
+
readonly PASSTHROUGH: "PASSTHROUGH";
|
|
84
|
+
};
|
|
85
|
+
export type M2tsKlvMetadata =
|
|
86
|
+
(typeof M2tsKlvMetadata)[keyof typeof M2tsKlvMetadata];
|
|
87
|
+
export declare const M2tsNielsenId3: {
|
|
88
|
+
readonly INSERT: "INSERT";
|
|
89
|
+
readonly NONE: "NONE";
|
|
90
|
+
};
|
|
91
|
+
export type M2tsNielsenId3 =
|
|
92
|
+
(typeof M2tsNielsenId3)[keyof typeof M2tsNielsenId3];
|
|
93
|
+
export declare const M2tsPcrControl: {
|
|
94
|
+
readonly CONFIGURED_PCR_PERIOD: "CONFIGURED_PCR_PERIOD";
|
|
95
|
+
readonly PCR_EVERY_PES_PACKET: "PCR_EVERY_PES_PACKET";
|
|
96
|
+
};
|
|
97
|
+
export type M2tsPcrControl =
|
|
98
|
+
(typeof M2tsPcrControl)[keyof typeof M2tsPcrControl];
|
|
99
|
+
export declare const M2tsRateMode: {
|
|
100
|
+
readonly CBR: "CBR";
|
|
101
|
+
readonly VBR: "VBR";
|
|
102
|
+
};
|
|
103
|
+
export type M2tsRateMode = (typeof M2tsRateMode)[keyof typeof M2tsRateMode];
|
|
88
104
|
export interface M2tsScte35Esam {
|
|
89
105
|
Scte35EsamPid?: number;
|
|
90
106
|
}
|
|
91
|
-
export declare
|
|
92
|
-
NONE
|
|
93
|
-
PASSTHROUGH
|
|
94
|
-
}
|
|
95
|
-
export
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
+
export declare const M2tsScte35Source: {
|
|
108
|
+
readonly NONE: "NONE";
|
|
109
|
+
readonly PASSTHROUGH: "PASSTHROUGH";
|
|
110
|
+
};
|
|
111
|
+
export type M2tsScte35Source =
|
|
112
|
+
(typeof M2tsScte35Source)[keyof typeof M2tsScte35Source];
|
|
113
|
+
export declare const M2tsSegmentationMarkers: {
|
|
114
|
+
readonly EBP: "EBP";
|
|
115
|
+
readonly EBP_LEGACY: "EBP_LEGACY";
|
|
116
|
+
readonly NONE: "NONE";
|
|
117
|
+
readonly PSI_SEGSTART: "PSI_SEGSTART";
|
|
118
|
+
readonly RAI_ADAPT: "RAI_ADAPT";
|
|
119
|
+
readonly RAI_SEGSTART: "RAI_SEGSTART";
|
|
120
|
+
};
|
|
121
|
+
export type M2tsSegmentationMarkers =
|
|
122
|
+
(typeof M2tsSegmentationMarkers)[keyof typeof M2tsSegmentationMarkers];
|
|
123
|
+
export declare const M2tsSegmentationStyle: {
|
|
124
|
+
readonly MAINTAIN_CADENCE: "MAINTAIN_CADENCE";
|
|
125
|
+
readonly RESET_CADENCE: "RESET_CADENCE";
|
|
126
|
+
};
|
|
127
|
+
export type M2tsSegmentationStyle =
|
|
128
|
+
(typeof M2tsSegmentationStyle)[keyof typeof M2tsSegmentationStyle];
|
|
107
129
|
export interface M2tsSettings {
|
|
108
130
|
AudioBufferModel?: M2tsAudioBufferModel | string;
|
|
109
131
|
AudioDuration?: M2tsAudioDuration | string;
|
|
@@ -145,30 +167,41 @@ export interface M2tsSettings {
|
|
|
145
167
|
TransportStreamId?: number;
|
|
146
168
|
VideoPid?: number;
|
|
147
169
|
}
|
|
148
|
-
export declare
|
|
149
|
-
DEFAULT_CODEC_DURATION
|
|
150
|
-
MATCH_VIDEO_DURATION
|
|
151
|
-
}
|
|
152
|
-
export
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
export declare
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
}
|
|
164
|
-
export
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
170
|
+
export declare const M3u8AudioDuration: {
|
|
171
|
+
readonly DEFAULT_CODEC_DURATION: "DEFAULT_CODEC_DURATION";
|
|
172
|
+
readonly MATCH_VIDEO_DURATION: "MATCH_VIDEO_DURATION";
|
|
173
|
+
};
|
|
174
|
+
export type M3u8AudioDuration =
|
|
175
|
+
(typeof M3u8AudioDuration)[keyof typeof M3u8AudioDuration];
|
|
176
|
+
export declare const M3u8DataPtsControl: {
|
|
177
|
+
readonly ALIGN_TO_VIDEO: "ALIGN_TO_VIDEO";
|
|
178
|
+
readonly AUTO: "AUTO";
|
|
179
|
+
};
|
|
180
|
+
export type M3u8DataPtsControl =
|
|
181
|
+
(typeof M3u8DataPtsControl)[keyof typeof M3u8DataPtsControl];
|
|
182
|
+
export declare const M3u8NielsenId3: {
|
|
183
|
+
readonly INSERT: "INSERT";
|
|
184
|
+
readonly NONE: "NONE";
|
|
185
|
+
};
|
|
186
|
+
export type M3u8NielsenId3 =
|
|
187
|
+
(typeof M3u8NielsenId3)[keyof typeof M3u8NielsenId3];
|
|
188
|
+
export declare const M3u8PcrControl: {
|
|
189
|
+
readonly CONFIGURED_PCR_PERIOD: "CONFIGURED_PCR_PERIOD";
|
|
190
|
+
readonly PCR_EVERY_PES_PACKET: "PCR_EVERY_PES_PACKET";
|
|
191
|
+
};
|
|
192
|
+
export type M3u8PcrControl =
|
|
193
|
+
(typeof M3u8PcrControl)[keyof typeof M3u8PcrControl];
|
|
194
|
+
export declare const M3u8Scte35Source: {
|
|
195
|
+
readonly NONE: "NONE";
|
|
196
|
+
readonly PASSTHROUGH: "PASSTHROUGH";
|
|
197
|
+
};
|
|
198
|
+
export type M3u8Scte35Source =
|
|
199
|
+
(typeof M3u8Scte35Source)[keyof typeof M3u8Scte35Source];
|
|
200
|
+
export declare const TimedMetadata: {
|
|
201
|
+
readonly NONE: "NONE";
|
|
202
|
+
readonly PASSTHROUGH: "PASSTHROUGH";
|
|
203
|
+
};
|
|
204
|
+
export type TimedMetadata = (typeof TimedMetadata)[keyof typeof TimedMetadata];
|
|
172
205
|
export interface M3u8Settings {
|
|
173
206
|
AudioDuration?: M3u8AudioDuration | string;
|
|
174
207
|
AudioFramesPerPes?: number;
|
|
@@ -190,26 +223,33 @@ export interface M3u8Settings {
|
|
|
190
223
|
TransportStreamId?: number;
|
|
191
224
|
VideoPid?: number;
|
|
192
225
|
}
|
|
193
|
-
export declare
|
|
194
|
-
EXCLUDE
|
|
195
|
-
INCLUDE
|
|
196
|
-
}
|
|
197
|
-
export
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
export declare
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
}
|
|
226
|
+
export declare const MovClapAtom: {
|
|
227
|
+
readonly EXCLUDE: "EXCLUDE";
|
|
228
|
+
readonly INCLUDE: "INCLUDE";
|
|
229
|
+
};
|
|
230
|
+
export type MovClapAtom = (typeof MovClapAtom)[keyof typeof MovClapAtom];
|
|
231
|
+
export declare const MovCslgAtom: {
|
|
232
|
+
readonly EXCLUDE: "EXCLUDE";
|
|
233
|
+
readonly INCLUDE: "INCLUDE";
|
|
234
|
+
};
|
|
235
|
+
export type MovCslgAtom = (typeof MovCslgAtom)[keyof typeof MovCslgAtom];
|
|
236
|
+
export declare const MovMpeg2FourCCControl: {
|
|
237
|
+
readonly MPEG: "MPEG";
|
|
238
|
+
readonly XDCAM: "XDCAM";
|
|
239
|
+
};
|
|
240
|
+
export type MovMpeg2FourCCControl =
|
|
241
|
+
(typeof MovMpeg2FourCCControl)[keyof typeof MovMpeg2FourCCControl];
|
|
242
|
+
export declare const MovPaddingControl: {
|
|
243
|
+
readonly NONE: "NONE";
|
|
244
|
+
readonly OMNEON: "OMNEON";
|
|
245
|
+
};
|
|
246
|
+
export type MovPaddingControl =
|
|
247
|
+
(typeof MovPaddingControl)[keyof typeof MovPaddingControl];
|
|
248
|
+
export declare const MovReference: {
|
|
249
|
+
readonly EXTERNAL: "EXTERNAL";
|
|
250
|
+
readonly SELF_CONTAINED: "SELF_CONTAINED";
|
|
251
|
+
};
|
|
252
|
+
export type MovReference = (typeof MovReference)[keyof typeof MovReference];
|
|
213
253
|
export interface MovSettings {
|
|
214
254
|
ClapAtom?: MovClapAtom | string;
|
|
215
255
|
CslgAtom?: MovCslgAtom | string;
|
|
@@ -217,18 +257,23 @@ export interface MovSettings {
|
|
|
217
257
|
PaddingControl?: MovPaddingControl | string;
|
|
218
258
|
Reference?: MovReference | string;
|
|
219
259
|
}
|
|
220
|
-
export declare
|
|
221
|
-
EXCLUDE
|
|
222
|
-
INCLUDE
|
|
223
|
-
}
|
|
224
|
-
export
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
260
|
+
export declare const Mp4CslgAtom: {
|
|
261
|
+
readonly EXCLUDE: "EXCLUDE";
|
|
262
|
+
readonly INCLUDE: "INCLUDE";
|
|
263
|
+
};
|
|
264
|
+
export type Mp4CslgAtom = (typeof Mp4CslgAtom)[keyof typeof Mp4CslgAtom];
|
|
265
|
+
export declare const Mp4FreeSpaceBox: {
|
|
266
|
+
readonly EXCLUDE: "EXCLUDE";
|
|
267
|
+
readonly INCLUDE: "INCLUDE";
|
|
268
|
+
};
|
|
269
|
+
export type Mp4FreeSpaceBox =
|
|
270
|
+
(typeof Mp4FreeSpaceBox)[keyof typeof Mp4FreeSpaceBox];
|
|
271
|
+
export declare const Mp4MoovPlacement: {
|
|
272
|
+
readonly NORMAL: "NORMAL";
|
|
273
|
+
readonly PROGRESSIVE_DOWNLOAD: "PROGRESSIVE_DOWNLOAD";
|
|
274
|
+
};
|
|
275
|
+
export type Mp4MoovPlacement =
|
|
276
|
+
(typeof Mp4MoovPlacement)[keyof typeof Mp4MoovPlacement];
|
|
232
277
|
export interface Mp4Settings {
|
|
233
278
|
AudioDuration?: CmfcAudioDuration | string;
|
|
234
279
|
CslgAtom?: Mp4CslgAtom | string;
|
|
@@ -237,42 +282,59 @@ export interface Mp4Settings {
|
|
|
237
282
|
MoovPlacement?: Mp4MoovPlacement | string;
|
|
238
283
|
Mp4MajorBrand?: string;
|
|
239
284
|
}
|
|
240
|
-
export declare
|
|
241
|
-
EXCLUDE
|
|
242
|
-
INCLUDE
|
|
243
|
-
}
|
|
244
|
-
export
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
export declare
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
}
|
|
256
|
-
export
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
export declare
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
}
|
|
268
|
-
export
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
285
|
+
export declare const MpdAccessibilityCaptionHints: {
|
|
286
|
+
readonly EXCLUDE: "EXCLUDE";
|
|
287
|
+
readonly INCLUDE: "INCLUDE";
|
|
288
|
+
};
|
|
289
|
+
export type MpdAccessibilityCaptionHints =
|
|
290
|
+
(typeof MpdAccessibilityCaptionHints)[keyof typeof MpdAccessibilityCaptionHints];
|
|
291
|
+
export declare const MpdAudioDuration: {
|
|
292
|
+
readonly DEFAULT_CODEC_DURATION: "DEFAULT_CODEC_DURATION";
|
|
293
|
+
readonly MATCH_VIDEO_DURATION: "MATCH_VIDEO_DURATION";
|
|
294
|
+
};
|
|
295
|
+
export type MpdAudioDuration =
|
|
296
|
+
(typeof MpdAudioDuration)[keyof typeof MpdAudioDuration];
|
|
297
|
+
export declare const MpdCaptionContainerType: {
|
|
298
|
+
readonly FRAGMENTED_MP4: "FRAGMENTED_MP4";
|
|
299
|
+
readonly RAW: "RAW";
|
|
300
|
+
};
|
|
301
|
+
export type MpdCaptionContainerType =
|
|
302
|
+
(typeof MpdCaptionContainerType)[keyof typeof MpdCaptionContainerType];
|
|
303
|
+
export declare const MpdKlvMetadata: {
|
|
304
|
+
readonly NONE: "NONE";
|
|
305
|
+
readonly PASSTHROUGH: "PASSTHROUGH";
|
|
306
|
+
};
|
|
307
|
+
export type MpdKlvMetadata =
|
|
308
|
+
(typeof MpdKlvMetadata)[keyof typeof MpdKlvMetadata];
|
|
309
|
+
export declare const MpdManifestMetadataSignaling: {
|
|
310
|
+
readonly DISABLED: "DISABLED";
|
|
311
|
+
readonly ENABLED: "ENABLED";
|
|
312
|
+
};
|
|
313
|
+
export type MpdManifestMetadataSignaling =
|
|
314
|
+
(typeof MpdManifestMetadataSignaling)[keyof typeof MpdManifestMetadataSignaling];
|
|
315
|
+
export declare const MpdScte35Esam: {
|
|
316
|
+
readonly INSERT: "INSERT";
|
|
317
|
+
readonly NONE: "NONE";
|
|
318
|
+
};
|
|
319
|
+
export type MpdScte35Esam = (typeof MpdScte35Esam)[keyof typeof MpdScte35Esam];
|
|
320
|
+
export declare const MpdScte35Source: {
|
|
321
|
+
readonly NONE: "NONE";
|
|
322
|
+
readonly PASSTHROUGH: "PASSTHROUGH";
|
|
323
|
+
};
|
|
324
|
+
export type MpdScte35Source =
|
|
325
|
+
(typeof MpdScte35Source)[keyof typeof MpdScte35Source];
|
|
326
|
+
export declare const MpdTimedMetadata: {
|
|
327
|
+
readonly NONE: "NONE";
|
|
328
|
+
readonly PASSTHROUGH: "PASSTHROUGH";
|
|
329
|
+
};
|
|
330
|
+
export type MpdTimedMetadata =
|
|
331
|
+
(typeof MpdTimedMetadata)[keyof typeof MpdTimedMetadata];
|
|
332
|
+
export declare const MpdTimedMetadataBoxVersion: {
|
|
333
|
+
readonly VERSION_0: "VERSION_0";
|
|
334
|
+
readonly VERSION_1: "VERSION_1";
|
|
335
|
+
};
|
|
336
|
+
export type MpdTimedMetadataBoxVersion =
|
|
337
|
+
(typeof MpdTimedMetadataBoxVersion)[keyof typeof MpdTimedMetadataBoxVersion];
|
|
276
338
|
export interface MpdSettings {
|
|
277
339
|
AccessibilityCaptionHints?: MpdAccessibilityCaptionHints | string;
|
|
278
340
|
AudioDuration?: MpdAudioDuration | string;
|
|
@@ -286,20 +348,25 @@ export interface MpdSettings {
|
|
|
286
348
|
TimedMetadataSchemeIdUri?: string;
|
|
287
349
|
TimedMetadataValue?: string;
|
|
288
350
|
}
|
|
289
|
-
export declare
|
|
290
|
-
COPY_FROM_VIDEO
|
|
291
|
-
NO_COPY
|
|
292
|
-
}
|
|
293
|
-
export
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
351
|
+
export declare const MxfAfdSignaling: {
|
|
352
|
+
readonly COPY_FROM_VIDEO: "COPY_FROM_VIDEO";
|
|
353
|
+
readonly NO_COPY: "NO_COPY";
|
|
354
|
+
};
|
|
355
|
+
export type MxfAfdSignaling =
|
|
356
|
+
(typeof MxfAfdSignaling)[keyof typeof MxfAfdSignaling];
|
|
357
|
+
export declare const MxfProfile: {
|
|
358
|
+
readonly D_10: "D_10";
|
|
359
|
+
readonly OP1A: "OP1A";
|
|
360
|
+
readonly XAVC: "XAVC";
|
|
361
|
+
readonly XDCAM: "XDCAM";
|
|
362
|
+
};
|
|
363
|
+
export type MxfProfile = (typeof MxfProfile)[keyof typeof MxfProfile];
|
|
364
|
+
export declare const MxfXavcDurationMode: {
|
|
365
|
+
readonly ALLOW_ANY_DURATION: "ALLOW_ANY_DURATION";
|
|
366
|
+
readonly DROP_FRAMES_FOR_COMPLIANCE: "DROP_FRAMES_FOR_COMPLIANCE";
|
|
367
|
+
};
|
|
368
|
+
export type MxfXavcDurationMode =
|
|
369
|
+
(typeof MxfXavcDurationMode)[keyof typeof MxfXavcDurationMode];
|
|
303
370
|
export interface MxfXavcProfileSettings {
|
|
304
371
|
DurationMode?: MxfXavcDurationMode | string;
|
|
305
372
|
MaxAncDataSize?: number;
|
|
@@ -320,24 +387,32 @@ export interface ContainerSettings {
|
|
|
320
387
|
MpdSettings?: MpdSettings;
|
|
321
388
|
MxfSettings?: MxfSettings;
|
|
322
389
|
}
|
|
323
|
-
export declare
|
|
324
|
-
AUTOMATIC
|
|
325
|
-
M2TS
|
|
326
|
-
}
|
|
327
|
-
export
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
export declare
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
}
|
|
390
|
+
export declare const HlsAudioOnlyContainer: {
|
|
391
|
+
readonly AUTOMATIC: "AUTOMATIC";
|
|
392
|
+
readonly M2TS: "M2TS";
|
|
393
|
+
};
|
|
394
|
+
export type HlsAudioOnlyContainer =
|
|
395
|
+
(typeof HlsAudioOnlyContainer)[keyof typeof HlsAudioOnlyContainer];
|
|
396
|
+
export declare const HlsAudioTrackType: {
|
|
397
|
+
readonly ALTERNATE_AUDIO_AUTO_SELECT: "ALTERNATE_AUDIO_AUTO_SELECT";
|
|
398
|
+
readonly ALTERNATE_AUDIO_AUTO_SELECT_DEFAULT: "ALTERNATE_AUDIO_AUTO_SELECT_DEFAULT";
|
|
399
|
+
readonly ALTERNATE_AUDIO_NOT_AUTO_SELECT: "ALTERNATE_AUDIO_NOT_AUTO_SELECT";
|
|
400
|
+
readonly AUDIO_ONLY_VARIANT_STREAM: "AUDIO_ONLY_VARIANT_STREAM";
|
|
401
|
+
};
|
|
402
|
+
export type HlsAudioTrackType =
|
|
403
|
+
(typeof HlsAudioTrackType)[keyof typeof HlsAudioTrackType];
|
|
404
|
+
export declare const HlsDescriptiveVideoServiceFlag: {
|
|
405
|
+
readonly DONT_FLAG: "DONT_FLAG";
|
|
406
|
+
readonly FLAG: "FLAG";
|
|
407
|
+
};
|
|
408
|
+
export type HlsDescriptiveVideoServiceFlag =
|
|
409
|
+
(typeof HlsDescriptiveVideoServiceFlag)[keyof typeof HlsDescriptiveVideoServiceFlag];
|
|
410
|
+
export declare const HlsIFrameOnlyManifest: {
|
|
411
|
+
readonly EXCLUDE: "EXCLUDE";
|
|
412
|
+
readonly INCLUDE: "INCLUDE";
|
|
413
|
+
};
|
|
414
|
+
export type HlsIFrameOnlyManifest =
|
|
415
|
+
(typeof HlsIFrameOnlyManifest)[keyof typeof HlsIFrameOnlyManifest];
|
|
341
416
|
export interface HlsSettings {
|
|
342
417
|
AudioGroupId?: string;
|
|
343
418
|
AudioOnlyContainer?: HlsAudioOnlyContainer | string;
|
|
@@ -350,47 +425,60 @@ export interface HlsSettings {
|
|
|
350
425
|
export interface OutputSettings {
|
|
351
426
|
HlsSettings?: HlsSettings;
|
|
352
427
|
}
|
|
353
|
-
export declare
|
|
354
|
-
AUTO
|
|
355
|
-
FIXED
|
|
356
|
-
NONE
|
|
357
|
-
}
|
|
358
|
-
export
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
export declare
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
}
|
|
378
|
-
export
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
}
|
|
428
|
+
export declare const AfdSignaling: {
|
|
429
|
+
readonly AUTO: "AUTO";
|
|
430
|
+
readonly FIXED: "FIXED";
|
|
431
|
+
readonly NONE: "NONE";
|
|
432
|
+
};
|
|
433
|
+
export type AfdSignaling = (typeof AfdSignaling)[keyof typeof AfdSignaling];
|
|
434
|
+
export declare const AntiAlias: {
|
|
435
|
+
readonly DISABLED: "DISABLED";
|
|
436
|
+
readonly ENABLED: "ENABLED";
|
|
437
|
+
};
|
|
438
|
+
export type AntiAlias = (typeof AntiAlias)[keyof typeof AntiAlias];
|
|
439
|
+
export declare const Av1AdaptiveQuantization: {
|
|
440
|
+
readonly HIGH: "HIGH";
|
|
441
|
+
readonly HIGHER: "HIGHER";
|
|
442
|
+
readonly LOW: "LOW";
|
|
443
|
+
readonly MAX: "MAX";
|
|
444
|
+
readonly MEDIUM: "MEDIUM";
|
|
445
|
+
readonly OFF: "OFF";
|
|
446
|
+
};
|
|
447
|
+
export type Av1AdaptiveQuantization =
|
|
448
|
+
(typeof Av1AdaptiveQuantization)[keyof typeof Av1AdaptiveQuantization];
|
|
449
|
+
export declare const Av1BitDepth: {
|
|
450
|
+
readonly BIT_10: "BIT_10";
|
|
451
|
+
readonly BIT_8: "BIT_8";
|
|
452
|
+
};
|
|
453
|
+
export type Av1BitDepth = (typeof Av1BitDepth)[keyof typeof Av1BitDepth];
|
|
454
|
+
export declare const Av1FramerateControl: {
|
|
455
|
+
readonly INITIALIZE_FROM_SOURCE: "INITIALIZE_FROM_SOURCE";
|
|
456
|
+
readonly SPECIFIED: "SPECIFIED";
|
|
457
|
+
};
|
|
458
|
+
export type Av1FramerateControl =
|
|
459
|
+
(typeof Av1FramerateControl)[keyof typeof Av1FramerateControl];
|
|
460
|
+
export declare const Av1FramerateConversionAlgorithm: {
|
|
461
|
+
readonly DUPLICATE_DROP: "DUPLICATE_DROP";
|
|
462
|
+
readonly FRAMEFORMER: "FRAMEFORMER";
|
|
463
|
+
readonly INTERPOLATE: "INTERPOLATE";
|
|
464
|
+
};
|
|
465
|
+
export type Av1FramerateConversionAlgorithm =
|
|
466
|
+
(typeof Av1FramerateConversionAlgorithm)[keyof typeof Av1FramerateConversionAlgorithm];
|
|
383
467
|
export interface Av1QvbrSettings {
|
|
384
468
|
QvbrQualityLevel?: number;
|
|
385
469
|
QvbrQualityLevelFineTune?: number;
|
|
386
470
|
}
|
|
387
|
-
export declare
|
|
388
|
-
QVBR
|
|
389
|
-
}
|
|
390
|
-
export
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
471
|
+
export declare const Av1RateControlMode: {
|
|
472
|
+
readonly QVBR: "QVBR";
|
|
473
|
+
};
|
|
474
|
+
export type Av1RateControlMode =
|
|
475
|
+
(typeof Av1RateControlMode)[keyof typeof Av1RateControlMode];
|
|
476
|
+
export declare const Av1SpatialAdaptiveQuantization: {
|
|
477
|
+
readonly DISABLED: "DISABLED";
|
|
478
|
+
readonly ENABLED: "ENABLED";
|
|
479
|
+
};
|
|
480
|
+
export type Av1SpatialAdaptiveQuantization =
|
|
481
|
+
(typeof Av1SpatialAdaptiveQuantization)[keyof typeof Av1SpatialAdaptiveQuantization];
|
|
394
482
|
export interface Av1Settings {
|
|
395
483
|
AdaptiveQuantization?: Av1AdaptiveQuantization | string;
|
|
396
484
|
BitDepth?: Av1BitDepth | string;
|
|
@@ -406,47 +494,62 @@ export interface Av1Settings {
|
|
|
406
494
|
Slices?: number;
|
|
407
495
|
SpatialAdaptiveQuantization?: Av1SpatialAdaptiveQuantization | string;
|
|
408
496
|
}
|
|
409
|
-
export declare
|
|
410
|
-
CLASS_100
|
|
411
|
-
CLASS_200
|
|
412
|
-
CLASS_4K_2K
|
|
413
|
-
CLASS_50
|
|
414
|
-
}
|
|
415
|
-
export
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
497
|
+
export declare const AvcIntraClass: {
|
|
498
|
+
readonly CLASS_100: "CLASS_100";
|
|
499
|
+
readonly CLASS_200: "CLASS_200";
|
|
500
|
+
readonly CLASS_4K_2K: "CLASS_4K_2K";
|
|
501
|
+
readonly CLASS_50: "CLASS_50";
|
|
502
|
+
};
|
|
503
|
+
export type AvcIntraClass = (typeof AvcIntraClass)[keyof typeof AvcIntraClass];
|
|
504
|
+
export declare const AvcIntraUhdQualityTuningLevel: {
|
|
505
|
+
readonly MULTI_PASS: "MULTI_PASS";
|
|
506
|
+
readonly SINGLE_PASS: "SINGLE_PASS";
|
|
507
|
+
};
|
|
508
|
+
export type AvcIntraUhdQualityTuningLevel =
|
|
509
|
+
(typeof AvcIntraUhdQualityTuningLevel)[keyof typeof AvcIntraUhdQualityTuningLevel];
|
|
419
510
|
export interface AvcIntraUhdSettings {
|
|
420
511
|
QualityTuningLevel?: AvcIntraUhdQualityTuningLevel | string;
|
|
421
512
|
}
|
|
422
|
-
export declare
|
|
423
|
-
INITIALIZE_FROM_SOURCE
|
|
424
|
-
SPECIFIED
|
|
425
|
-
}
|
|
426
|
-
export
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
}
|
|
442
|
-
export
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
513
|
+
export declare const AvcIntraFramerateControl: {
|
|
514
|
+
readonly INITIALIZE_FROM_SOURCE: "INITIALIZE_FROM_SOURCE";
|
|
515
|
+
readonly SPECIFIED: "SPECIFIED";
|
|
516
|
+
};
|
|
517
|
+
export type AvcIntraFramerateControl =
|
|
518
|
+
(typeof AvcIntraFramerateControl)[keyof typeof AvcIntraFramerateControl];
|
|
519
|
+
export declare const AvcIntraFramerateConversionAlgorithm: {
|
|
520
|
+
readonly DUPLICATE_DROP: "DUPLICATE_DROP";
|
|
521
|
+
readonly FRAMEFORMER: "FRAMEFORMER";
|
|
522
|
+
readonly INTERPOLATE: "INTERPOLATE";
|
|
523
|
+
};
|
|
524
|
+
export type AvcIntraFramerateConversionAlgorithm =
|
|
525
|
+
(typeof AvcIntraFramerateConversionAlgorithm)[keyof typeof AvcIntraFramerateConversionAlgorithm];
|
|
526
|
+
export declare const AvcIntraInterlaceMode: {
|
|
527
|
+
readonly BOTTOM_FIELD: "BOTTOM_FIELD";
|
|
528
|
+
readonly FOLLOW_BOTTOM_FIELD: "FOLLOW_BOTTOM_FIELD";
|
|
529
|
+
readonly FOLLOW_TOP_FIELD: "FOLLOW_TOP_FIELD";
|
|
530
|
+
readonly PROGRESSIVE: "PROGRESSIVE";
|
|
531
|
+
readonly TOP_FIELD: "TOP_FIELD";
|
|
532
|
+
};
|
|
533
|
+
export type AvcIntraInterlaceMode =
|
|
534
|
+
(typeof AvcIntraInterlaceMode)[keyof typeof AvcIntraInterlaceMode];
|
|
535
|
+
export declare const AvcIntraScanTypeConversionMode: {
|
|
536
|
+
readonly INTERLACED: "INTERLACED";
|
|
537
|
+
readonly INTERLACED_OPTIMIZE: "INTERLACED_OPTIMIZE";
|
|
538
|
+
};
|
|
539
|
+
export type AvcIntraScanTypeConversionMode =
|
|
540
|
+
(typeof AvcIntraScanTypeConversionMode)[keyof typeof AvcIntraScanTypeConversionMode];
|
|
541
|
+
export declare const AvcIntraSlowPal: {
|
|
542
|
+
readonly DISABLED: "DISABLED";
|
|
543
|
+
readonly ENABLED: "ENABLED";
|
|
544
|
+
};
|
|
545
|
+
export type AvcIntraSlowPal =
|
|
546
|
+
(typeof AvcIntraSlowPal)[keyof typeof AvcIntraSlowPal];
|
|
547
|
+
export declare const AvcIntraTelecine: {
|
|
548
|
+
readonly HARD: "HARD";
|
|
549
|
+
readonly NONE: "NONE";
|
|
550
|
+
};
|
|
551
|
+
export type AvcIntraTelecine =
|
|
552
|
+
(typeof AvcIntraTelecine)[keyof typeof AvcIntraTelecine];
|
|
450
553
|
export interface AvcIntraSettings {
|
|
451
554
|
AvcIntraClass?: AvcIntraClass | string;
|
|
452
555
|
AvcIntraUhdSettings?: AvcIntraUhdSettings;
|
|
@@ -459,177 +562,226 @@ export interface AvcIntraSettings {
|
|
|
459
562
|
SlowPal?: AvcIntraSlowPal | string;
|
|
460
563
|
Telecine?: AvcIntraTelecine | string;
|
|
461
564
|
}
|
|
462
|
-
export declare
|
|
463
|
-
AV1
|
|
464
|
-
AVC_INTRA
|
|
465
|
-
FRAME_CAPTURE
|
|
466
|
-
H_264
|
|
467
|
-
H_265
|
|
468
|
-
MPEG2
|
|
469
|
-
PRORES
|
|
470
|
-
VC3
|
|
471
|
-
VP8
|
|
472
|
-
VP9
|
|
473
|
-
XAVC
|
|
474
|
-
}
|
|
565
|
+
export declare const VideoCodec: {
|
|
566
|
+
readonly AV1: "AV1";
|
|
567
|
+
readonly AVC_INTRA: "AVC_INTRA";
|
|
568
|
+
readonly FRAME_CAPTURE: "FRAME_CAPTURE";
|
|
569
|
+
readonly H_264: "H_264";
|
|
570
|
+
readonly H_265: "H_265";
|
|
571
|
+
readonly MPEG2: "MPEG2";
|
|
572
|
+
readonly PRORES: "PRORES";
|
|
573
|
+
readonly VC3: "VC3";
|
|
574
|
+
readonly VP8: "VP8";
|
|
575
|
+
readonly VP9: "VP9";
|
|
576
|
+
readonly XAVC: "XAVC";
|
|
577
|
+
};
|
|
578
|
+
export type VideoCodec = (typeof VideoCodec)[keyof typeof VideoCodec];
|
|
475
579
|
export interface FrameCaptureSettings {
|
|
476
580
|
FramerateDenominator?: number;
|
|
477
581
|
FramerateNumerator?: number;
|
|
478
582
|
MaxCaptures?: number;
|
|
479
583
|
Quality?: number;
|
|
480
584
|
}
|
|
481
|
-
export declare
|
|
482
|
-
AUTO
|
|
483
|
-
HIGH
|
|
484
|
-
HIGHER
|
|
485
|
-
LOW
|
|
486
|
-
MAX
|
|
487
|
-
MEDIUM
|
|
488
|
-
OFF
|
|
489
|
-
}
|
|
490
|
-
export
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
585
|
+
export declare const H264AdaptiveQuantization: {
|
|
586
|
+
readonly AUTO: "AUTO";
|
|
587
|
+
readonly HIGH: "HIGH";
|
|
588
|
+
readonly HIGHER: "HIGHER";
|
|
589
|
+
readonly LOW: "LOW";
|
|
590
|
+
readonly MAX: "MAX";
|
|
591
|
+
readonly MEDIUM: "MEDIUM";
|
|
592
|
+
readonly OFF: "OFF";
|
|
593
|
+
};
|
|
594
|
+
export type H264AdaptiveQuantization =
|
|
595
|
+
(typeof H264AdaptiveQuantization)[keyof typeof H264AdaptiveQuantization];
|
|
596
|
+
export declare const BandwidthReductionFilterSharpening: {
|
|
597
|
+
readonly HIGH: "HIGH";
|
|
598
|
+
readonly LOW: "LOW";
|
|
599
|
+
readonly MEDIUM: "MEDIUM";
|
|
600
|
+
readonly OFF: "OFF";
|
|
601
|
+
};
|
|
602
|
+
export type BandwidthReductionFilterSharpening =
|
|
603
|
+
(typeof BandwidthReductionFilterSharpening)[keyof typeof BandwidthReductionFilterSharpening];
|
|
604
|
+
export declare const BandwidthReductionFilterStrength: {
|
|
605
|
+
readonly AUTO: "AUTO";
|
|
606
|
+
readonly HIGH: "HIGH";
|
|
607
|
+
readonly LOW: "LOW";
|
|
608
|
+
readonly MEDIUM: "MEDIUM";
|
|
609
|
+
readonly OFF: "OFF";
|
|
610
|
+
};
|
|
611
|
+
export type BandwidthReductionFilterStrength =
|
|
612
|
+
(typeof BandwidthReductionFilterStrength)[keyof typeof BandwidthReductionFilterStrength];
|
|
503
613
|
export interface BandwidthReductionFilter {
|
|
504
614
|
Sharpening?: BandwidthReductionFilterSharpening | string;
|
|
505
615
|
Strength?: BandwidthReductionFilterStrength | string;
|
|
506
616
|
}
|
|
507
|
-
export declare
|
|
508
|
-
AUTO
|
|
509
|
-
LEVEL_1
|
|
510
|
-
LEVEL_1_1
|
|
511
|
-
LEVEL_1_2
|
|
512
|
-
LEVEL_1_3
|
|
513
|
-
LEVEL_2
|
|
514
|
-
LEVEL_2_1
|
|
515
|
-
LEVEL_2_2
|
|
516
|
-
LEVEL_3
|
|
517
|
-
LEVEL_3_1
|
|
518
|
-
LEVEL_3_2
|
|
519
|
-
LEVEL_4
|
|
520
|
-
LEVEL_4_1
|
|
521
|
-
LEVEL_4_2
|
|
522
|
-
LEVEL_5
|
|
523
|
-
LEVEL_5_1
|
|
524
|
-
LEVEL_5_2
|
|
525
|
-
}
|
|
526
|
-
export
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
export declare
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
}
|
|
542
|
-
export
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
}
|
|
555
|
-
export
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
export declare
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
export declare
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
}
|
|
580
|
-
export
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
617
|
+
export declare const H264CodecLevel: {
|
|
618
|
+
readonly AUTO: "AUTO";
|
|
619
|
+
readonly LEVEL_1: "LEVEL_1";
|
|
620
|
+
readonly LEVEL_1_1: "LEVEL_1_1";
|
|
621
|
+
readonly LEVEL_1_2: "LEVEL_1_2";
|
|
622
|
+
readonly LEVEL_1_3: "LEVEL_1_3";
|
|
623
|
+
readonly LEVEL_2: "LEVEL_2";
|
|
624
|
+
readonly LEVEL_2_1: "LEVEL_2_1";
|
|
625
|
+
readonly LEVEL_2_2: "LEVEL_2_2";
|
|
626
|
+
readonly LEVEL_3: "LEVEL_3";
|
|
627
|
+
readonly LEVEL_3_1: "LEVEL_3_1";
|
|
628
|
+
readonly LEVEL_3_2: "LEVEL_3_2";
|
|
629
|
+
readonly LEVEL_4: "LEVEL_4";
|
|
630
|
+
readonly LEVEL_4_1: "LEVEL_4_1";
|
|
631
|
+
readonly LEVEL_4_2: "LEVEL_4_2";
|
|
632
|
+
readonly LEVEL_5: "LEVEL_5";
|
|
633
|
+
readonly LEVEL_5_1: "LEVEL_5_1";
|
|
634
|
+
readonly LEVEL_5_2: "LEVEL_5_2";
|
|
635
|
+
};
|
|
636
|
+
export type H264CodecLevel =
|
|
637
|
+
(typeof H264CodecLevel)[keyof typeof H264CodecLevel];
|
|
638
|
+
export declare const H264CodecProfile: {
|
|
639
|
+
readonly BASELINE: "BASELINE";
|
|
640
|
+
readonly HIGH: "HIGH";
|
|
641
|
+
readonly HIGH_10BIT: "HIGH_10BIT";
|
|
642
|
+
readonly HIGH_422: "HIGH_422";
|
|
643
|
+
readonly HIGH_422_10BIT: "HIGH_422_10BIT";
|
|
644
|
+
readonly MAIN: "MAIN";
|
|
645
|
+
};
|
|
646
|
+
export type H264CodecProfile =
|
|
647
|
+
(typeof H264CodecProfile)[keyof typeof H264CodecProfile];
|
|
648
|
+
export declare const H264DynamicSubGop: {
|
|
649
|
+
readonly ADAPTIVE: "ADAPTIVE";
|
|
650
|
+
readonly STATIC: "STATIC";
|
|
651
|
+
};
|
|
652
|
+
export type H264DynamicSubGop =
|
|
653
|
+
(typeof H264DynamicSubGop)[keyof typeof H264DynamicSubGop];
|
|
654
|
+
export declare const H264EntropyEncoding: {
|
|
655
|
+
readonly CABAC: "CABAC";
|
|
656
|
+
readonly CAVLC: "CAVLC";
|
|
657
|
+
};
|
|
658
|
+
export type H264EntropyEncoding =
|
|
659
|
+
(typeof H264EntropyEncoding)[keyof typeof H264EntropyEncoding];
|
|
660
|
+
export declare const H264FieldEncoding: {
|
|
661
|
+
readonly FORCE_FIELD: "FORCE_FIELD";
|
|
662
|
+
readonly MBAFF: "MBAFF";
|
|
663
|
+
readonly PAFF: "PAFF";
|
|
664
|
+
};
|
|
665
|
+
export type H264FieldEncoding =
|
|
666
|
+
(typeof H264FieldEncoding)[keyof typeof H264FieldEncoding];
|
|
667
|
+
export declare const H264FlickerAdaptiveQuantization: {
|
|
668
|
+
readonly DISABLED: "DISABLED";
|
|
669
|
+
readonly ENABLED: "ENABLED";
|
|
670
|
+
};
|
|
671
|
+
export type H264FlickerAdaptiveQuantization =
|
|
672
|
+
(typeof H264FlickerAdaptiveQuantization)[keyof typeof H264FlickerAdaptiveQuantization];
|
|
673
|
+
export declare const H264FramerateControl: {
|
|
674
|
+
readonly INITIALIZE_FROM_SOURCE: "INITIALIZE_FROM_SOURCE";
|
|
675
|
+
readonly SPECIFIED: "SPECIFIED";
|
|
676
|
+
};
|
|
677
|
+
export type H264FramerateControl =
|
|
678
|
+
(typeof H264FramerateControl)[keyof typeof H264FramerateControl];
|
|
679
|
+
export declare const H264FramerateConversionAlgorithm: {
|
|
680
|
+
readonly DUPLICATE_DROP: "DUPLICATE_DROP";
|
|
681
|
+
readonly FRAMEFORMER: "FRAMEFORMER";
|
|
682
|
+
readonly INTERPOLATE: "INTERPOLATE";
|
|
683
|
+
};
|
|
684
|
+
export type H264FramerateConversionAlgorithm =
|
|
685
|
+
(typeof H264FramerateConversionAlgorithm)[keyof typeof H264FramerateConversionAlgorithm];
|
|
686
|
+
export declare const H264GopBReference: {
|
|
687
|
+
readonly DISABLED: "DISABLED";
|
|
688
|
+
readonly ENABLED: "ENABLED";
|
|
689
|
+
};
|
|
690
|
+
export type H264GopBReference =
|
|
691
|
+
(typeof H264GopBReference)[keyof typeof H264GopBReference];
|
|
692
|
+
export declare const H264GopSizeUnits: {
|
|
693
|
+
readonly AUTO: "AUTO";
|
|
694
|
+
readonly FRAMES: "FRAMES";
|
|
695
|
+
readonly SECONDS: "SECONDS";
|
|
696
|
+
};
|
|
697
|
+
export type H264GopSizeUnits =
|
|
698
|
+
(typeof H264GopSizeUnits)[keyof typeof H264GopSizeUnits];
|
|
699
|
+
export declare const H264InterlaceMode: {
|
|
700
|
+
readonly BOTTOM_FIELD: "BOTTOM_FIELD";
|
|
701
|
+
readonly FOLLOW_BOTTOM_FIELD: "FOLLOW_BOTTOM_FIELD";
|
|
702
|
+
readonly FOLLOW_TOP_FIELD: "FOLLOW_TOP_FIELD";
|
|
703
|
+
readonly PROGRESSIVE: "PROGRESSIVE";
|
|
704
|
+
readonly TOP_FIELD: "TOP_FIELD";
|
|
705
|
+
};
|
|
706
|
+
export type H264InterlaceMode =
|
|
707
|
+
(typeof H264InterlaceMode)[keyof typeof H264InterlaceMode];
|
|
708
|
+
export declare const H264ParControl: {
|
|
709
|
+
readonly INITIALIZE_FROM_SOURCE: "INITIALIZE_FROM_SOURCE";
|
|
710
|
+
readonly SPECIFIED: "SPECIFIED";
|
|
711
|
+
};
|
|
712
|
+
export type H264ParControl =
|
|
713
|
+
(typeof H264ParControl)[keyof typeof H264ParControl];
|
|
714
|
+
export declare const H264QualityTuningLevel: {
|
|
715
|
+
readonly MULTI_PASS_HQ: "MULTI_PASS_HQ";
|
|
716
|
+
readonly SINGLE_PASS: "SINGLE_PASS";
|
|
717
|
+
readonly SINGLE_PASS_HQ: "SINGLE_PASS_HQ";
|
|
718
|
+
};
|
|
719
|
+
export type H264QualityTuningLevel =
|
|
720
|
+
(typeof H264QualityTuningLevel)[keyof typeof H264QualityTuningLevel];
|
|
585
721
|
export interface H264QvbrSettings {
|
|
586
722
|
MaxAverageBitrate?: number;
|
|
587
723
|
QvbrQualityLevel?: number;
|
|
588
724
|
QvbrQualityLevelFineTune?: number;
|
|
589
725
|
}
|
|
590
|
-
export declare
|
|
591
|
-
CBR
|
|
592
|
-
QVBR
|
|
593
|
-
VBR
|
|
594
|
-
}
|
|
595
|
-
export
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
export declare
|
|
609
|
-
DISABLED
|
|
610
|
-
ENABLED
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
export declare
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
726
|
+
export declare const H264RateControlMode: {
|
|
727
|
+
readonly CBR: "CBR";
|
|
728
|
+
readonly QVBR: "QVBR";
|
|
729
|
+
readonly VBR: "VBR";
|
|
730
|
+
};
|
|
731
|
+
export type H264RateControlMode =
|
|
732
|
+
(typeof H264RateControlMode)[keyof typeof H264RateControlMode];
|
|
733
|
+
export declare const H264RepeatPps: {
|
|
734
|
+
readonly DISABLED: "DISABLED";
|
|
735
|
+
readonly ENABLED: "ENABLED";
|
|
736
|
+
};
|
|
737
|
+
export type H264RepeatPps = (typeof H264RepeatPps)[keyof typeof H264RepeatPps];
|
|
738
|
+
export declare const H264ScanTypeConversionMode: {
|
|
739
|
+
readonly INTERLACED: "INTERLACED";
|
|
740
|
+
readonly INTERLACED_OPTIMIZE: "INTERLACED_OPTIMIZE";
|
|
741
|
+
};
|
|
742
|
+
export type H264ScanTypeConversionMode =
|
|
743
|
+
(typeof H264ScanTypeConversionMode)[keyof typeof H264ScanTypeConversionMode];
|
|
744
|
+
export declare const H264SceneChangeDetect: {
|
|
745
|
+
readonly DISABLED: "DISABLED";
|
|
746
|
+
readonly ENABLED: "ENABLED";
|
|
747
|
+
readonly TRANSITION_DETECTION: "TRANSITION_DETECTION";
|
|
748
|
+
};
|
|
749
|
+
export type H264SceneChangeDetect =
|
|
750
|
+
(typeof H264SceneChangeDetect)[keyof typeof H264SceneChangeDetect];
|
|
751
|
+
export declare const H264SlowPal: {
|
|
752
|
+
readonly DISABLED: "DISABLED";
|
|
753
|
+
readonly ENABLED: "ENABLED";
|
|
754
|
+
};
|
|
755
|
+
export type H264SlowPal = (typeof H264SlowPal)[keyof typeof H264SlowPal];
|
|
756
|
+
export declare const H264SpatialAdaptiveQuantization: {
|
|
757
|
+
readonly DISABLED: "DISABLED";
|
|
758
|
+
readonly ENABLED: "ENABLED";
|
|
759
|
+
};
|
|
760
|
+
export type H264SpatialAdaptiveQuantization =
|
|
761
|
+
(typeof H264SpatialAdaptiveQuantization)[keyof typeof H264SpatialAdaptiveQuantization];
|
|
762
|
+
export declare const H264Syntax: {
|
|
763
|
+
readonly DEFAULT: "DEFAULT";
|
|
764
|
+
readonly RP2027: "RP2027";
|
|
765
|
+
};
|
|
766
|
+
export type H264Syntax = (typeof H264Syntax)[keyof typeof H264Syntax];
|
|
767
|
+
export declare const H264Telecine: {
|
|
768
|
+
readonly HARD: "HARD";
|
|
769
|
+
readonly NONE: "NONE";
|
|
770
|
+
readonly SOFT: "SOFT";
|
|
771
|
+
};
|
|
772
|
+
export type H264Telecine = (typeof H264Telecine)[keyof typeof H264Telecine];
|
|
773
|
+
export declare const H264TemporalAdaptiveQuantization: {
|
|
774
|
+
readonly DISABLED: "DISABLED";
|
|
775
|
+
readonly ENABLED: "ENABLED";
|
|
776
|
+
};
|
|
777
|
+
export type H264TemporalAdaptiveQuantization =
|
|
778
|
+
(typeof H264TemporalAdaptiveQuantization)[keyof typeof H264TemporalAdaptiveQuantization];
|
|
779
|
+
export declare const H264UnregisteredSeiTimecode: {
|
|
780
|
+
readonly DISABLED: "DISABLED";
|
|
781
|
+
readonly ENABLED: "ENABLED";
|
|
782
|
+
};
|
|
783
|
+
export type H264UnregisteredSeiTimecode =
|
|
784
|
+
(typeof H264UnregisteredSeiTimecode)[keyof typeof H264UnregisteredSeiTimecode];
|
|
633
785
|
export interface H264Settings {
|
|
634
786
|
AdaptiveQuantization?: H264AdaptiveQuantization | string;
|
|
635
787
|
BandwidthReductionFilter?: BandwidthReductionFilter;
|
|
@@ -674,144 +826,191 @@ export interface H264Settings {
|
|
|
674
826
|
TemporalAdaptiveQuantization?: H264TemporalAdaptiveQuantization | string;
|
|
675
827
|
UnregisteredSeiTimecode?: H264UnregisteredSeiTimecode | string;
|
|
676
828
|
}
|
|
677
|
-
export declare
|
|
678
|
-
AUTO
|
|
679
|
-
HIGH
|
|
680
|
-
HIGHER
|
|
681
|
-
LOW
|
|
682
|
-
MAX
|
|
683
|
-
MEDIUM
|
|
684
|
-
OFF
|
|
685
|
-
}
|
|
686
|
-
export
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
|
|
710
|
-
|
|
711
|
-
|
|
712
|
-
|
|
713
|
-
|
|
714
|
-
|
|
715
|
-
|
|
716
|
-
|
|
717
|
-
|
|
718
|
-
|
|
719
|
-
|
|
720
|
-
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
|
|
724
|
-
export declare
|
|
725
|
-
|
|
726
|
-
|
|
727
|
-
}
|
|
728
|
-
export
|
|
729
|
-
|
|
730
|
-
|
|
731
|
-
|
|
732
|
-
|
|
733
|
-
|
|
734
|
-
|
|
735
|
-
|
|
736
|
-
|
|
737
|
-
|
|
738
|
-
|
|
739
|
-
|
|
740
|
-
|
|
741
|
-
|
|
742
|
-
export declare
|
|
743
|
-
|
|
744
|
-
|
|
745
|
-
|
|
746
|
-
|
|
747
|
-
|
|
748
|
-
|
|
749
|
-
export declare
|
|
750
|
-
|
|
751
|
-
|
|
752
|
-
}
|
|
753
|
-
export
|
|
754
|
-
|
|
755
|
-
|
|
756
|
-
|
|
757
|
-
|
|
829
|
+
export declare const H265AdaptiveQuantization: {
|
|
830
|
+
readonly AUTO: "AUTO";
|
|
831
|
+
readonly HIGH: "HIGH";
|
|
832
|
+
readonly HIGHER: "HIGHER";
|
|
833
|
+
readonly LOW: "LOW";
|
|
834
|
+
readonly MAX: "MAX";
|
|
835
|
+
readonly MEDIUM: "MEDIUM";
|
|
836
|
+
readonly OFF: "OFF";
|
|
837
|
+
};
|
|
838
|
+
export type H265AdaptiveQuantization =
|
|
839
|
+
(typeof H265AdaptiveQuantization)[keyof typeof H265AdaptiveQuantization];
|
|
840
|
+
export declare const H265AlternateTransferFunctionSei: {
|
|
841
|
+
readonly DISABLED: "DISABLED";
|
|
842
|
+
readonly ENABLED: "ENABLED";
|
|
843
|
+
};
|
|
844
|
+
export type H265AlternateTransferFunctionSei =
|
|
845
|
+
(typeof H265AlternateTransferFunctionSei)[keyof typeof H265AlternateTransferFunctionSei];
|
|
846
|
+
export declare const H265CodecLevel: {
|
|
847
|
+
readonly AUTO: "AUTO";
|
|
848
|
+
readonly LEVEL_1: "LEVEL_1";
|
|
849
|
+
readonly LEVEL_2: "LEVEL_2";
|
|
850
|
+
readonly LEVEL_2_1: "LEVEL_2_1";
|
|
851
|
+
readonly LEVEL_3: "LEVEL_3";
|
|
852
|
+
readonly LEVEL_3_1: "LEVEL_3_1";
|
|
853
|
+
readonly LEVEL_4: "LEVEL_4";
|
|
854
|
+
readonly LEVEL_4_1: "LEVEL_4_1";
|
|
855
|
+
readonly LEVEL_5: "LEVEL_5";
|
|
856
|
+
readonly LEVEL_5_1: "LEVEL_5_1";
|
|
857
|
+
readonly LEVEL_5_2: "LEVEL_5_2";
|
|
858
|
+
readonly LEVEL_6: "LEVEL_6";
|
|
859
|
+
readonly LEVEL_6_1: "LEVEL_6_1";
|
|
860
|
+
readonly LEVEL_6_2: "LEVEL_6_2";
|
|
861
|
+
};
|
|
862
|
+
export type H265CodecLevel =
|
|
863
|
+
(typeof H265CodecLevel)[keyof typeof H265CodecLevel];
|
|
864
|
+
export declare const H265CodecProfile: {
|
|
865
|
+
readonly MAIN10_HIGH: "MAIN10_HIGH";
|
|
866
|
+
readonly MAIN10_MAIN: "MAIN10_MAIN";
|
|
867
|
+
readonly MAIN_422_10BIT_HIGH: "MAIN_422_10BIT_HIGH";
|
|
868
|
+
readonly MAIN_422_10BIT_MAIN: "MAIN_422_10BIT_MAIN";
|
|
869
|
+
readonly MAIN_422_8BIT_HIGH: "MAIN_422_8BIT_HIGH";
|
|
870
|
+
readonly MAIN_422_8BIT_MAIN: "MAIN_422_8BIT_MAIN";
|
|
871
|
+
readonly MAIN_HIGH: "MAIN_HIGH";
|
|
872
|
+
readonly MAIN_MAIN: "MAIN_MAIN";
|
|
873
|
+
};
|
|
874
|
+
export type H265CodecProfile =
|
|
875
|
+
(typeof H265CodecProfile)[keyof typeof H265CodecProfile];
|
|
876
|
+
export declare const H265DynamicSubGop: {
|
|
877
|
+
readonly ADAPTIVE: "ADAPTIVE";
|
|
878
|
+
readonly STATIC: "STATIC";
|
|
879
|
+
};
|
|
880
|
+
export type H265DynamicSubGop =
|
|
881
|
+
(typeof H265DynamicSubGop)[keyof typeof H265DynamicSubGop];
|
|
882
|
+
export declare const H265FlickerAdaptiveQuantization: {
|
|
883
|
+
readonly DISABLED: "DISABLED";
|
|
884
|
+
readonly ENABLED: "ENABLED";
|
|
885
|
+
};
|
|
886
|
+
export type H265FlickerAdaptiveQuantization =
|
|
887
|
+
(typeof H265FlickerAdaptiveQuantization)[keyof typeof H265FlickerAdaptiveQuantization];
|
|
888
|
+
export declare const H265FramerateControl: {
|
|
889
|
+
readonly INITIALIZE_FROM_SOURCE: "INITIALIZE_FROM_SOURCE";
|
|
890
|
+
readonly SPECIFIED: "SPECIFIED";
|
|
891
|
+
};
|
|
892
|
+
export type H265FramerateControl =
|
|
893
|
+
(typeof H265FramerateControl)[keyof typeof H265FramerateControl];
|
|
894
|
+
export declare const H265FramerateConversionAlgorithm: {
|
|
895
|
+
readonly DUPLICATE_DROP: "DUPLICATE_DROP";
|
|
896
|
+
readonly FRAMEFORMER: "FRAMEFORMER";
|
|
897
|
+
readonly INTERPOLATE: "INTERPOLATE";
|
|
898
|
+
};
|
|
899
|
+
export type H265FramerateConversionAlgorithm =
|
|
900
|
+
(typeof H265FramerateConversionAlgorithm)[keyof typeof H265FramerateConversionAlgorithm];
|
|
901
|
+
export declare const H265GopBReference: {
|
|
902
|
+
readonly DISABLED: "DISABLED";
|
|
903
|
+
readonly ENABLED: "ENABLED";
|
|
904
|
+
};
|
|
905
|
+
export type H265GopBReference =
|
|
906
|
+
(typeof H265GopBReference)[keyof typeof H265GopBReference];
|
|
907
|
+
export declare const H265GopSizeUnits: {
|
|
908
|
+
readonly AUTO: "AUTO";
|
|
909
|
+
readonly FRAMES: "FRAMES";
|
|
910
|
+
readonly SECONDS: "SECONDS";
|
|
911
|
+
};
|
|
912
|
+
export type H265GopSizeUnits =
|
|
913
|
+
(typeof H265GopSizeUnits)[keyof typeof H265GopSizeUnits];
|
|
914
|
+
export declare const H265InterlaceMode: {
|
|
915
|
+
readonly BOTTOM_FIELD: "BOTTOM_FIELD";
|
|
916
|
+
readonly FOLLOW_BOTTOM_FIELD: "FOLLOW_BOTTOM_FIELD";
|
|
917
|
+
readonly FOLLOW_TOP_FIELD: "FOLLOW_TOP_FIELD";
|
|
918
|
+
readonly PROGRESSIVE: "PROGRESSIVE";
|
|
919
|
+
readonly TOP_FIELD: "TOP_FIELD";
|
|
920
|
+
};
|
|
921
|
+
export type H265InterlaceMode =
|
|
922
|
+
(typeof H265InterlaceMode)[keyof typeof H265InterlaceMode];
|
|
923
|
+
export declare const H265ParControl: {
|
|
924
|
+
readonly INITIALIZE_FROM_SOURCE: "INITIALIZE_FROM_SOURCE";
|
|
925
|
+
readonly SPECIFIED: "SPECIFIED";
|
|
926
|
+
};
|
|
927
|
+
export type H265ParControl =
|
|
928
|
+
(typeof H265ParControl)[keyof typeof H265ParControl];
|
|
929
|
+
export declare const H265QualityTuningLevel: {
|
|
930
|
+
readonly MULTI_PASS_HQ: "MULTI_PASS_HQ";
|
|
931
|
+
readonly SINGLE_PASS: "SINGLE_PASS";
|
|
932
|
+
readonly SINGLE_PASS_HQ: "SINGLE_PASS_HQ";
|
|
933
|
+
};
|
|
934
|
+
export type H265QualityTuningLevel =
|
|
935
|
+
(typeof H265QualityTuningLevel)[keyof typeof H265QualityTuningLevel];
|
|
758
936
|
export interface H265QvbrSettings {
|
|
759
937
|
MaxAverageBitrate?: number;
|
|
760
938
|
QvbrQualityLevel?: number;
|
|
761
939
|
QvbrQualityLevelFineTune?: number;
|
|
762
940
|
}
|
|
763
|
-
export declare
|
|
764
|
-
CBR
|
|
765
|
-
QVBR
|
|
766
|
-
VBR
|
|
767
|
-
}
|
|
768
|
-
export
|
|
769
|
-
|
|
770
|
-
|
|
771
|
-
|
|
772
|
-
|
|
773
|
-
|
|
774
|
-
|
|
775
|
-
|
|
776
|
-
|
|
777
|
-
export declare
|
|
778
|
-
|
|
779
|
-
|
|
780
|
-
|
|
781
|
-
|
|
782
|
-
|
|
783
|
-
|
|
784
|
-
|
|
785
|
-
|
|
786
|
-
|
|
787
|
-
|
|
788
|
-
|
|
789
|
-
|
|
790
|
-
export declare
|
|
791
|
-
|
|
792
|
-
|
|
793
|
-
|
|
794
|
-
|
|
795
|
-
export declare
|
|
796
|
-
DISABLED
|
|
797
|
-
ENABLED
|
|
798
|
-
}
|
|
799
|
-
export
|
|
800
|
-
|
|
801
|
-
|
|
802
|
-
|
|
803
|
-
|
|
804
|
-
|
|
805
|
-
|
|
806
|
-
|
|
807
|
-
export declare
|
|
808
|
-
DISABLED
|
|
809
|
-
ENABLED
|
|
810
|
-
}
|
|
811
|
-
export
|
|
812
|
-
|
|
813
|
-
|
|
814
|
-
|
|
941
|
+
export declare const H265RateControlMode: {
|
|
942
|
+
readonly CBR: "CBR";
|
|
943
|
+
readonly QVBR: "QVBR";
|
|
944
|
+
readonly VBR: "VBR";
|
|
945
|
+
};
|
|
946
|
+
export type H265RateControlMode =
|
|
947
|
+
(typeof H265RateControlMode)[keyof typeof H265RateControlMode];
|
|
948
|
+
export declare const H265SampleAdaptiveOffsetFilterMode: {
|
|
949
|
+
readonly ADAPTIVE: "ADAPTIVE";
|
|
950
|
+
readonly DEFAULT: "DEFAULT";
|
|
951
|
+
readonly OFF: "OFF";
|
|
952
|
+
};
|
|
953
|
+
export type H265SampleAdaptiveOffsetFilterMode =
|
|
954
|
+
(typeof H265SampleAdaptiveOffsetFilterMode)[keyof typeof H265SampleAdaptiveOffsetFilterMode];
|
|
955
|
+
export declare const H265ScanTypeConversionMode: {
|
|
956
|
+
readonly INTERLACED: "INTERLACED";
|
|
957
|
+
readonly INTERLACED_OPTIMIZE: "INTERLACED_OPTIMIZE";
|
|
958
|
+
};
|
|
959
|
+
export type H265ScanTypeConversionMode =
|
|
960
|
+
(typeof H265ScanTypeConversionMode)[keyof typeof H265ScanTypeConversionMode];
|
|
961
|
+
export declare const H265SceneChangeDetect: {
|
|
962
|
+
readonly DISABLED: "DISABLED";
|
|
963
|
+
readonly ENABLED: "ENABLED";
|
|
964
|
+
readonly TRANSITION_DETECTION: "TRANSITION_DETECTION";
|
|
965
|
+
};
|
|
966
|
+
export type H265SceneChangeDetect =
|
|
967
|
+
(typeof H265SceneChangeDetect)[keyof typeof H265SceneChangeDetect];
|
|
968
|
+
export declare const H265SlowPal: {
|
|
969
|
+
readonly DISABLED: "DISABLED";
|
|
970
|
+
readonly ENABLED: "ENABLED";
|
|
971
|
+
};
|
|
972
|
+
export type H265SlowPal = (typeof H265SlowPal)[keyof typeof H265SlowPal];
|
|
973
|
+
export declare const H265SpatialAdaptiveQuantization: {
|
|
974
|
+
readonly DISABLED: "DISABLED";
|
|
975
|
+
readonly ENABLED: "ENABLED";
|
|
976
|
+
};
|
|
977
|
+
export type H265SpatialAdaptiveQuantization =
|
|
978
|
+
(typeof H265SpatialAdaptiveQuantization)[keyof typeof H265SpatialAdaptiveQuantization];
|
|
979
|
+
export declare const H265Telecine: {
|
|
980
|
+
readonly HARD: "HARD";
|
|
981
|
+
readonly NONE: "NONE";
|
|
982
|
+
readonly SOFT: "SOFT";
|
|
983
|
+
};
|
|
984
|
+
export type H265Telecine = (typeof H265Telecine)[keyof typeof H265Telecine];
|
|
985
|
+
export declare const H265TemporalAdaptiveQuantization: {
|
|
986
|
+
readonly DISABLED: "DISABLED";
|
|
987
|
+
readonly ENABLED: "ENABLED";
|
|
988
|
+
};
|
|
989
|
+
export type H265TemporalAdaptiveQuantization =
|
|
990
|
+
(typeof H265TemporalAdaptiveQuantization)[keyof typeof H265TemporalAdaptiveQuantization];
|
|
991
|
+
export declare const H265TemporalIds: {
|
|
992
|
+
readonly DISABLED: "DISABLED";
|
|
993
|
+
readonly ENABLED: "ENABLED";
|
|
994
|
+
};
|
|
995
|
+
export type H265TemporalIds =
|
|
996
|
+
(typeof H265TemporalIds)[keyof typeof H265TemporalIds];
|
|
997
|
+
export declare const H265Tiles: {
|
|
998
|
+
readonly DISABLED: "DISABLED";
|
|
999
|
+
readonly ENABLED: "ENABLED";
|
|
1000
|
+
};
|
|
1001
|
+
export type H265Tiles = (typeof H265Tiles)[keyof typeof H265Tiles];
|
|
1002
|
+
export declare const H265UnregisteredSeiTimecode: {
|
|
1003
|
+
readonly DISABLED: "DISABLED";
|
|
1004
|
+
readonly ENABLED: "ENABLED";
|
|
1005
|
+
};
|
|
1006
|
+
export type H265UnregisteredSeiTimecode =
|
|
1007
|
+
(typeof H265UnregisteredSeiTimecode)[keyof typeof H265UnregisteredSeiTimecode];
|
|
1008
|
+
export declare const H265WriteMp4PackagingType: {
|
|
1009
|
+
readonly HEV1: "HEV1";
|
|
1010
|
+
readonly HVC1: "HVC1";
|
|
1011
|
+
};
|
|
1012
|
+
export type H265WriteMp4PackagingType =
|
|
1013
|
+
(typeof H265WriteMp4PackagingType)[keyof typeof H265WriteMp4PackagingType];
|
|
815
1014
|
export interface H265Settings {
|
|
816
1015
|
AdaptiveQuantization?: H265AdaptiveQuantization | string;
|
|
817
1016
|
AlternateTransferFunctionSei?: H265AlternateTransferFunctionSei | string;
|
|
@@ -855,95 +1054,130 @@ export interface H265Settings {
|
|
|
855
1054
|
UnregisteredSeiTimecode?: H265UnregisteredSeiTimecode | string;
|
|
856
1055
|
WriteMp4PackagingType?: H265WriteMp4PackagingType | string;
|
|
857
1056
|
}
|
|
858
|
-
export declare
|
|
859
|
-
HIGH
|
|
860
|
-
LOW
|
|
861
|
-
MEDIUM
|
|
862
|
-
OFF
|
|
863
|
-
}
|
|
864
|
-
export
|
|
865
|
-
|
|
866
|
-
|
|
867
|
-
|
|
868
|
-
|
|
869
|
-
|
|
870
|
-
|
|
871
|
-
|
|
872
|
-
|
|
873
|
-
|
|
874
|
-
|
|
875
|
-
export declare
|
|
876
|
-
|
|
877
|
-
|
|
878
|
-
}
|
|
879
|
-
export
|
|
880
|
-
|
|
881
|
-
|
|
882
|
-
|
|
883
|
-
|
|
884
|
-
|
|
885
|
-
|
|
886
|
-
|
|
887
|
-
|
|
888
|
-
|
|
889
|
-
|
|
890
|
-
|
|
891
|
-
|
|
892
|
-
|
|
893
|
-
|
|
894
|
-
|
|
895
|
-
|
|
896
|
-
|
|
897
|
-
|
|
898
|
-
|
|
899
|
-
|
|
900
|
-
|
|
901
|
-
|
|
902
|
-
|
|
903
|
-
|
|
904
|
-
|
|
905
|
-
|
|
906
|
-
export declare
|
|
907
|
-
|
|
908
|
-
|
|
909
|
-
|
|
910
|
-
|
|
911
|
-
|
|
912
|
-
|
|
913
|
-
|
|
914
|
-
|
|
915
|
-
|
|
916
|
-
|
|
917
|
-
|
|
918
|
-
|
|
919
|
-
|
|
920
|
-
|
|
921
|
-
}
|
|
922
|
-
export
|
|
923
|
-
|
|
924
|
-
|
|
925
|
-
|
|
926
|
-
|
|
927
|
-
|
|
928
|
-
|
|
929
|
-
|
|
930
|
-
export declare
|
|
931
|
-
|
|
932
|
-
|
|
933
|
-
}
|
|
934
|
-
export
|
|
935
|
-
|
|
936
|
-
|
|
937
|
-
|
|
938
|
-
|
|
939
|
-
|
|
940
|
-
|
|
941
|
-
|
|
942
|
-
|
|
943
|
-
|
|
944
|
-
|
|
945
|
-
|
|
946
|
-
|
|
1057
|
+
export declare const Mpeg2AdaptiveQuantization: {
|
|
1058
|
+
readonly HIGH: "HIGH";
|
|
1059
|
+
readonly LOW: "LOW";
|
|
1060
|
+
readonly MEDIUM: "MEDIUM";
|
|
1061
|
+
readonly OFF: "OFF";
|
|
1062
|
+
};
|
|
1063
|
+
export type Mpeg2AdaptiveQuantization =
|
|
1064
|
+
(typeof Mpeg2AdaptiveQuantization)[keyof typeof Mpeg2AdaptiveQuantization];
|
|
1065
|
+
export declare const Mpeg2CodecLevel: {
|
|
1066
|
+
readonly AUTO: "AUTO";
|
|
1067
|
+
readonly HIGH: "HIGH";
|
|
1068
|
+
readonly HIGH1440: "HIGH1440";
|
|
1069
|
+
readonly LOW: "LOW";
|
|
1070
|
+
readonly MAIN: "MAIN";
|
|
1071
|
+
};
|
|
1072
|
+
export type Mpeg2CodecLevel =
|
|
1073
|
+
(typeof Mpeg2CodecLevel)[keyof typeof Mpeg2CodecLevel];
|
|
1074
|
+
export declare const Mpeg2CodecProfile: {
|
|
1075
|
+
readonly MAIN: "MAIN";
|
|
1076
|
+
readonly PROFILE_422: "PROFILE_422";
|
|
1077
|
+
};
|
|
1078
|
+
export type Mpeg2CodecProfile =
|
|
1079
|
+
(typeof Mpeg2CodecProfile)[keyof typeof Mpeg2CodecProfile];
|
|
1080
|
+
export declare const Mpeg2DynamicSubGop: {
|
|
1081
|
+
readonly ADAPTIVE: "ADAPTIVE";
|
|
1082
|
+
readonly STATIC: "STATIC";
|
|
1083
|
+
};
|
|
1084
|
+
export type Mpeg2DynamicSubGop =
|
|
1085
|
+
(typeof Mpeg2DynamicSubGop)[keyof typeof Mpeg2DynamicSubGop];
|
|
1086
|
+
export declare const Mpeg2FramerateControl: {
|
|
1087
|
+
readonly INITIALIZE_FROM_SOURCE: "INITIALIZE_FROM_SOURCE";
|
|
1088
|
+
readonly SPECIFIED: "SPECIFIED";
|
|
1089
|
+
};
|
|
1090
|
+
export type Mpeg2FramerateControl =
|
|
1091
|
+
(typeof Mpeg2FramerateControl)[keyof typeof Mpeg2FramerateControl];
|
|
1092
|
+
export declare const Mpeg2FramerateConversionAlgorithm: {
|
|
1093
|
+
readonly DUPLICATE_DROP: "DUPLICATE_DROP";
|
|
1094
|
+
readonly FRAMEFORMER: "FRAMEFORMER";
|
|
1095
|
+
readonly INTERPOLATE: "INTERPOLATE";
|
|
1096
|
+
};
|
|
1097
|
+
export type Mpeg2FramerateConversionAlgorithm =
|
|
1098
|
+
(typeof Mpeg2FramerateConversionAlgorithm)[keyof typeof Mpeg2FramerateConversionAlgorithm];
|
|
1099
|
+
export declare const Mpeg2GopSizeUnits: {
|
|
1100
|
+
readonly FRAMES: "FRAMES";
|
|
1101
|
+
readonly SECONDS: "SECONDS";
|
|
1102
|
+
};
|
|
1103
|
+
export type Mpeg2GopSizeUnits =
|
|
1104
|
+
(typeof Mpeg2GopSizeUnits)[keyof typeof Mpeg2GopSizeUnits];
|
|
1105
|
+
export declare const Mpeg2InterlaceMode: {
|
|
1106
|
+
readonly BOTTOM_FIELD: "BOTTOM_FIELD";
|
|
1107
|
+
readonly FOLLOW_BOTTOM_FIELD: "FOLLOW_BOTTOM_FIELD";
|
|
1108
|
+
readonly FOLLOW_TOP_FIELD: "FOLLOW_TOP_FIELD";
|
|
1109
|
+
readonly PROGRESSIVE: "PROGRESSIVE";
|
|
1110
|
+
readonly TOP_FIELD: "TOP_FIELD";
|
|
1111
|
+
};
|
|
1112
|
+
export type Mpeg2InterlaceMode =
|
|
1113
|
+
(typeof Mpeg2InterlaceMode)[keyof typeof Mpeg2InterlaceMode];
|
|
1114
|
+
export declare const Mpeg2IntraDcPrecision: {
|
|
1115
|
+
readonly AUTO: "AUTO";
|
|
1116
|
+
readonly INTRA_DC_PRECISION_10: "INTRA_DC_PRECISION_10";
|
|
1117
|
+
readonly INTRA_DC_PRECISION_11: "INTRA_DC_PRECISION_11";
|
|
1118
|
+
readonly INTRA_DC_PRECISION_8: "INTRA_DC_PRECISION_8";
|
|
1119
|
+
readonly INTRA_DC_PRECISION_9: "INTRA_DC_PRECISION_9";
|
|
1120
|
+
};
|
|
1121
|
+
export type Mpeg2IntraDcPrecision =
|
|
1122
|
+
(typeof Mpeg2IntraDcPrecision)[keyof typeof Mpeg2IntraDcPrecision];
|
|
1123
|
+
export declare const Mpeg2ParControl: {
|
|
1124
|
+
readonly INITIALIZE_FROM_SOURCE: "INITIALIZE_FROM_SOURCE";
|
|
1125
|
+
readonly SPECIFIED: "SPECIFIED";
|
|
1126
|
+
};
|
|
1127
|
+
export type Mpeg2ParControl =
|
|
1128
|
+
(typeof Mpeg2ParControl)[keyof typeof Mpeg2ParControl];
|
|
1129
|
+
export declare const Mpeg2QualityTuningLevel: {
|
|
1130
|
+
readonly MULTI_PASS: "MULTI_PASS";
|
|
1131
|
+
readonly SINGLE_PASS: "SINGLE_PASS";
|
|
1132
|
+
};
|
|
1133
|
+
export type Mpeg2QualityTuningLevel =
|
|
1134
|
+
(typeof Mpeg2QualityTuningLevel)[keyof typeof Mpeg2QualityTuningLevel];
|
|
1135
|
+
export declare const Mpeg2RateControlMode: {
|
|
1136
|
+
readonly CBR: "CBR";
|
|
1137
|
+
readonly VBR: "VBR";
|
|
1138
|
+
};
|
|
1139
|
+
export type Mpeg2RateControlMode =
|
|
1140
|
+
(typeof Mpeg2RateControlMode)[keyof typeof Mpeg2RateControlMode];
|
|
1141
|
+
export declare const Mpeg2ScanTypeConversionMode: {
|
|
1142
|
+
readonly INTERLACED: "INTERLACED";
|
|
1143
|
+
readonly INTERLACED_OPTIMIZE: "INTERLACED_OPTIMIZE";
|
|
1144
|
+
};
|
|
1145
|
+
export type Mpeg2ScanTypeConversionMode =
|
|
1146
|
+
(typeof Mpeg2ScanTypeConversionMode)[keyof typeof Mpeg2ScanTypeConversionMode];
|
|
1147
|
+
export declare const Mpeg2SceneChangeDetect: {
|
|
1148
|
+
readonly DISABLED: "DISABLED";
|
|
1149
|
+
readonly ENABLED: "ENABLED";
|
|
1150
|
+
};
|
|
1151
|
+
export type Mpeg2SceneChangeDetect =
|
|
1152
|
+
(typeof Mpeg2SceneChangeDetect)[keyof typeof Mpeg2SceneChangeDetect];
|
|
1153
|
+
export declare const Mpeg2SlowPal: {
|
|
1154
|
+
readonly DISABLED: "DISABLED";
|
|
1155
|
+
readonly ENABLED: "ENABLED";
|
|
1156
|
+
};
|
|
1157
|
+
export type Mpeg2SlowPal = (typeof Mpeg2SlowPal)[keyof typeof Mpeg2SlowPal];
|
|
1158
|
+
export declare const Mpeg2SpatialAdaptiveQuantization: {
|
|
1159
|
+
readonly DISABLED: "DISABLED";
|
|
1160
|
+
readonly ENABLED: "ENABLED";
|
|
1161
|
+
};
|
|
1162
|
+
export type Mpeg2SpatialAdaptiveQuantization =
|
|
1163
|
+
(typeof Mpeg2SpatialAdaptiveQuantization)[keyof typeof Mpeg2SpatialAdaptiveQuantization];
|
|
1164
|
+
export declare const Mpeg2Syntax: {
|
|
1165
|
+
readonly DEFAULT: "DEFAULT";
|
|
1166
|
+
readonly D_10: "D_10";
|
|
1167
|
+
};
|
|
1168
|
+
export type Mpeg2Syntax = (typeof Mpeg2Syntax)[keyof typeof Mpeg2Syntax];
|
|
1169
|
+
export declare const Mpeg2Telecine: {
|
|
1170
|
+
readonly HARD: "HARD";
|
|
1171
|
+
readonly NONE: "NONE";
|
|
1172
|
+
readonly SOFT: "SOFT";
|
|
1173
|
+
};
|
|
1174
|
+
export type Mpeg2Telecine = (typeof Mpeg2Telecine)[keyof typeof Mpeg2Telecine];
|
|
1175
|
+
export declare const Mpeg2TemporalAdaptiveQuantization: {
|
|
1176
|
+
readonly DISABLED: "DISABLED";
|
|
1177
|
+
readonly ENABLED: "ENABLED";
|
|
1178
|
+
};
|
|
1179
|
+
export type Mpeg2TemporalAdaptiveQuantization =
|
|
1180
|
+
(typeof Mpeg2TemporalAdaptiveQuantization)[keyof typeof Mpeg2TemporalAdaptiveQuantization];
|
|
947
1181
|
export interface Mpeg2Settings {
|
|
948
1182
|
AdaptiveQuantization?: Mpeg2AdaptiveQuantization | string;
|
|
949
1183
|
Bitrate?: number;
|
|
@@ -979,50 +1213,67 @@ export interface Mpeg2Settings {
|
|
|
979
1213
|
Telecine?: Mpeg2Telecine | string;
|
|
980
1214
|
TemporalAdaptiveQuantization?: Mpeg2TemporalAdaptiveQuantization | string;
|
|
981
1215
|
}
|
|
982
|
-
export declare
|
|
983
|
-
PRESERVE_444_SAMPLING
|
|
984
|
-
SUBSAMPLE_TO_422
|
|
985
|
-
}
|
|
986
|
-
export
|
|
987
|
-
|
|
988
|
-
|
|
989
|
-
|
|
990
|
-
|
|
991
|
-
|
|
992
|
-
|
|
993
|
-
|
|
994
|
-
|
|
995
|
-
|
|
996
|
-
|
|
997
|
-
|
|
998
|
-
export declare
|
|
999
|
-
|
|
1000
|
-
|
|
1001
|
-
|
|
1002
|
-
|
|
1003
|
-
|
|
1004
|
-
|
|
1005
|
-
|
|
1006
|
-
|
|
1007
|
-
|
|
1008
|
-
|
|
1009
|
-
|
|
1010
|
-
|
|
1011
|
-
|
|
1012
|
-
|
|
1013
|
-
|
|
1014
|
-
|
|
1015
|
-
|
|
1016
|
-
|
|
1017
|
-
}
|
|
1018
|
-
export
|
|
1019
|
-
|
|
1020
|
-
|
|
1021
|
-
|
|
1022
|
-
|
|
1023
|
-
|
|
1024
|
-
|
|
1025
|
-
|
|
1216
|
+
export declare const ProresChromaSampling: {
|
|
1217
|
+
readonly PRESERVE_444_SAMPLING: "PRESERVE_444_SAMPLING";
|
|
1218
|
+
readonly SUBSAMPLE_TO_422: "SUBSAMPLE_TO_422";
|
|
1219
|
+
};
|
|
1220
|
+
export type ProresChromaSampling =
|
|
1221
|
+
(typeof ProresChromaSampling)[keyof typeof ProresChromaSampling];
|
|
1222
|
+
export declare const ProresCodecProfile: {
|
|
1223
|
+
readonly APPLE_PRORES_422: "APPLE_PRORES_422";
|
|
1224
|
+
readonly APPLE_PRORES_422_HQ: "APPLE_PRORES_422_HQ";
|
|
1225
|
+
readonly APPLE_PRORES_422_LT: "APPLE_PRORES_422_LT";
|
|
1226
|
+
readonly APPLE_PRORES_422_PROXY: "APPLE_PRORES_422_PROXY";
|
|
1227
|
+
readonly APPLE_PRORES_4444: "APPLE_PRORES_4444";
|
|
1228
|
+
readonly APPLE_PRORES_4444_XQ: "APPLE_PRORES_4444_XQ";
|
|
1229
|
+
};
|
|
1230
|
+
export type ProresCodecProfile =
|
|
1231
|
+
(typeof ProresCodecProfile)[keyof typeof ProresCodecProfile];
|
|
1232
|
+
export declare const ProresFramerateControl: {
|
|
1233
|
+
readonly INITIALIZE_FROM_SOURCE: "INITIALIZE_FROM_SOURCE";
|
|
1234
|
+
readonly SPECIFIED: "SPECIFIED";
|
|
1235
|
+
};
|
|
1236
|
+
export type ProresFramerateControl =
|
|
1237
|
+
(typeof ProresFramerateControl)[keyof typeof ProresFramerateControl];
|
|
1238
|
+
export declare const ProresFramerateConversionAlgorithm: {
|
|
1239
|
+
readonly DUPLICATE_DROP: "DUPLICATE_DROP";
|
|
1240
|
+
readonly FRAMEFORMER: "FRAMEFORMER";
|
|
1241
|
+
readonly INTERPOLATE: "INTERPOLATE";
|
|
1242
|
+
};
|
|
1243
|
+
export type ProresFramerateConversionAlgorithm =
|
|
1244
|
+
(typeof ProresFramerateConversionAlgorithm)[keyof typeof ProresFramerateConversionAlgorithm];
|
|
1245
|
+
export declare const ProresInterlaceMode: {
|
|
1246
|
+
readonly BOTTOM_FIELD: "BOTTOM_FIELD";
|
|
1247
|
+
readonly FOLLOW_BOTTOM_FIELD: "FOLLOW_BOTTOM_FIELD";
|
|
1248
|
+
readonly FOLLOW_TOP_FIELD: "FOLLOW_TOP_FIELD";
|
|
1249
|
+
readonly PROGRESSIVE: "PROGRESSIVE";
|
|
1250
|
+
readonly TOP_FIELD: "TOP_FIELD";
|
|
1251
|
+
};
|
|
1252
|
+
export type ProresInterlaceMode =
|
|
1253
|
+
(typeof ProresInterlaceMode)[keyof typeof ProresInterlaceMode];
|
|
1254
|
+
export declare const ProresParControl: {
|
|
1255
|
+
readonly INITIALIZE_FROM_SOURCE: "INITIALIZE_FROM_SOURCE";
|
|
1256
|
+
readonly SPECIFIED: "SPECIFIED";
|
|
1257
|
+
};
|
|
1258
|
+
export type ProresParControl =
|
|
1259
|
+
(typeof ProresParControl)[keyof typeof ProresParControl];
|
|
1260
|
+
export declare const ProresScanTypeConversionMode: {
|
|
1261
|
+
readonly INTERLACED: "INTERLACED";
|
|
1262
|
+
readonly INTERLACED_OPTIMIZE: "INTERLACED_OPTIMIZE";
|
|
1263
|
+
};
|
|
1264
|
+
export type ProresScanTypeConversionMode =
|
|
1265
|
+
(typeof ProresScanTypeConversionMode)[keyof typeof ProresScanTypeConversionMode];
|
|
1266
|
+
export declare const ProresSlowPal: {
|
|
1267
|
+
readonly DISABLED: "DISABLED";
|
|
1268
|
+
readonly ENABLED: "ENABLED";
|
|
1269
|
+
};
|
|
1270
|
+
export type ProresSlowPal = (typeof ProresSlowPal)[keyof typeof ProresSlowPal];
|
|
1271
|
+
export declare const ProresTelecine: {
|
|
1272
|
+
readonly HARD: "HARD";
|
|
1273
|
+
readonly NONE: "NONE";
|
|
1274
|
+
};
|
|
1275
|
+
export type ProresTelecine =
|
|
1276
|
+
(typeof ProresTelecine)[keyof typeof ProresTelecine];
|
|
1026
1277
|
export interface ProresSettings {
|
|
1027
1278
|
ChromaSampling?: ProresChromaSampling | string;
|
|
1028
1279
|
CodecProfile?: ProresCodecProfile | string;
|
|
@@ -1038,36 +1289,47 @@ export interface ProresSettings {
|
|
|
1038
1289
|
SlowPal?: ProresSlowPal | string;
|
|
1039
1290
|
Telecine?: ProresTelecine | string;
|
|
1040
1291
|
}
|
|
1041
|
-
export declare
|
|
1042
|
-
INITIALIZE_FROM_SOURCE
|
|
1043
|
-
SPECIFIED
|
|
1044
|
-
}
|
|
1045
|
-
export
|
|
1046
|
-
|
|
1047
|
-
|
|
1048
|
-
|
|
1049
|
-
|
|
1050
|
-
|
|
1051
|
-
|
|
1052
|
-
|
|
1053
|
-
|
|
1054
|
-
export declare
|
|
1055
|
-
INTERLACED
|
|
1056
|
-
|
|
1057
|
-
}
|
|
1058
|
-
export
|
|
1059
|
-
|
|
1060
|
-
|
|
1061
|
-
|
|
1062
|
-
|
|
1063
|
-
|
|
1064
|
-
|
|
1065
|
-
|
|
1066
|
-
export declare
|
|
1067
|
-
|
|
1068
|
-
|
|
1069
|
-
|
|
1070
|
-
|
|
1292
|
+
export declare const Vc3FramerateControl: {
|
|
1293
|
+
readonly INITIALIZE_FROM_SOURCE: "INITIALIZE_FROM_SOURCE";
|
|
1294
|
+
readonly SPECIFIED: "SPECIFIED";
|
|
1295
|
+
};
|
|
1296
|
+
export type Vc3FramerateControl =
|
|
1297
|
+
(typeof Vc3FramerateControl)[keyof typeof Vc3FramerateControl];
|
|
1298
|
+
export declare const Vc3FramerateConversionAlgorithm: {
|
|
1299
|
+
readonly DUPLICATE_DROP: "DUPLICATE_DROP";
|
|
1300
|
+
readonly FRAMEFORMER: "FRAMEFORMER";
|
|
1301
|
+
readonly INTERPOLATE: "INTERPOLATE";
|
|
1302
|
+
};
|
|
1303
|
+
export type Vc3FramerateConversionAlgorithm =
|
|
1304
|
+
(typeof Vc3FramerateConversionAlgorithm)[keyof typeof Vc3FramerateConversionAlgorithm];
|
|
1305
|
+
export declare const Vc3InterlaceMode: {
|
|
1306
|
+
readonly INTERLACED: "INTERLACED";
|
|
1307
|
+
readonly PROGRESSIVE: "PROGRESSIVE";
|
|
1308
|
+
};
|
|
1309
|
+
export type Vc3InterlaceMode =
|
|
1310
|
+
(typeof Vc3InterlaceMode)[keyof typeof Vc3InterlaceMode];
|
|
1311
|
+
export declare const Vc3ScanTypeConversionMode: {
|
|
1312
|
+
readonly INTERLACED: "INTERLACED";
|
|
1313
|
+
readonly INTERLACED_OPTIMIZE: "INTERLACED_OPTIMIZE";
|
|
1314
|
+
};
|
|
1315
|
+
export type Vc3ScanTypeConversionMode =
|
|
1316
|
+
(typeof Vc3ScanTypeConversionMode)[keyof typeof Vc3ScanTypeConversionMode];
|
|
1317
|
+
export declare const Vc3SlowPal: {
|
|
1318
|
+
readonly DISABLED: "DISABLED";
|
|
1319
|
+
readonly ENABLED: "ENABLED";
|
|
1320
|
+
};
|
|
1321
|
+
export type Vc3SlowPal = (typeof Vc3SlowPal)[keyof typeof Vc3SlowPal];
|
|
1322
|
+
export declare const Vc3Telecine: {
|
|
1323
|
+
readonly HARD: "HARD";
|
|
1324
|
+
readonly NONE: "NONE";
|
|
1325
|
+
};
|
|
1326
|
+
export type Vc3Telecine = (typeof Vc3Telecine)[keyof typeof Vc3Telecine];
|
|
1327
|
+
export declare const Vc3Class: {
|
|
1328
|
+
readonly CLASS_145_8BIT: "CLASS_145_8BIT";
|
|
1329
|
+
readonly CLASS_220_10BIT: "CLASS_220_10BIT";
|
|
1330
|
+
readonly CLASS_220_8BIT: "CLASS_220_8BIT";
|
|
1331
|
+
};
|
|
1332
|
+
export type Vc3Class = (typeof Vc3Class)[keyof typeof Vc3Class];
|
|
1071
1333
|
export interface Vc3Settings {
|
|
1072
1334
|
FramerateControl?: Vc3FramerateControl | string;
|
|
1073
1335
|
FramerateConversionAlgorithm?: Vc3FramerateConversionAlgorithm | string;
|
|
@@ -1079,26 +1341,35 @@ export interface Vc3Settings {
|
|
|
1079
1341
|
Telecine?: Vc3Telecine | string;
|
|
1080
1342
|
Vc3Class?: Vc3Class | string;
|
|
1081
1343
|
}
|
|
1082
|
-
export declare
|
|
1083
|
-
INITIALIZE_FROM_SOURCE
|
|
1084
|
-
SPECIFIED
|
|
1085
|
-
}
|
|
1086
|
-
export
|
|
1087
|
-
|
|
1088
|
-
|
|
1089
|
-
|
|
1090
|
-
|
|
1091
|
-
|
|
1092
|
-
|
|
1093
|
-
|
|
1094
|
-
|
|
1095
|
-
export declare
|
|
1096
|
-
|
|
1097
|
-
|
|
1098
|
-
}
|
|
1099
|
-
export
|
|
1100
|
-
|
|
1101
|
-
|
|
1344
|
+
export declare const Vp8FramerateControl: {
|
|
1345
|
+
readonly INITIALIZE_FROM_SOURCE: "INITIALIZE_FROM_SOURCE";
|
|
1346
|
+
readonly SPECIFIED: "SPECIFIED";
|
|
1347
|
+
};
|
|
1348
|
+
export type Vp8FramerateControl =
|
|
1349
|
+
(typeof Vp8FramerateControl)[keyof typeof Vp8FramerateControl];
|
|
1350
|
+
export declare const Vp8FramerateConversionAlgorithm: {
|
|
1351
|
+
readonly DUPLICATE_DROP: "DUPLICATE_DROP";
|
|
1352
|
+
readonly FRAMEFORMER: "FRAMEFORMER";
|
|
1353
|
+
readonly INTERPOLATE: "INTERPOLATE";
|
|
1354
|
+
};
|
|
1355
|
+
export type Vp8FramerateConversionAlgorithm =
|
|
1356
|
+
(typeof Vp8FramerateConversionAlgorithm)[keyof typeof Vp8FramerateConversionAlgorithm];
|
|
1357
|
+
export declare const Vp8ParControl: {
|
|
1358
|
+
readonly INITIALIZE_FROM_SOURCE: "INITIALIZE_FROM_SOURCE";
|
|
1359
|
+
readonly SPECIFIED: "SPECIFIED";
|
|
1360
|
+
};
|
|
1361
|
+
export type Vp8ParControl = (typeof Vp8ParControl)[keyof typeof Vp8ParControl];
|
|
1362
|
+
export declare const Vp8QualityTuningLevel: {
|
|
1363
|
+
readonly MULTI_PASS: "MULTI_PASS";
|
|
1364
|
+
readonly MULTI_PASS_HQ: "MULTI_PASS_HQ";
|
|
1365
|
+
};
|
|
1366
|
+
export type Vp8QualityTuningLevel =
|
|
1367
|
+
(typeof Vp8QualityTuningLevel)[keyof typeof Vp8QualityTuningLevel];
|
|
1368
|
+
export declare const Vp8RateControlMode: {
|
|
1369
|
+
readonly VBR: "VBR";
|
|
1370
|
+
};
|
|
1371
|
+
export type Vp8RateControlMode =
|
|
1372
|
+
(typeof Vp8RateControlMode)[keyof typeof Vp8RateControlMode];
|
|
1102
1373
|
export interface Vp8Settings {
|
|
1103
1374
|
Bitrate?: number;
|
|
1104
1375
|
FramerateControl?: Vp8FramerateControl | string;
|
|
@@ -1114,26 +1385,35 @@ export interface Vp8Settings {
|
|
|
1114
1385
|
QualityTuningLevel?: Vp8QualityTuningLevel | string;
|
|
1115
1386
|
RateControlMode?: Vp8RateControlMode | string;
|
|
1116
1387
|
}
|
|
1117
|
-
export declare
|
|
1118
|
-
INITIALIZE_FROM_SOURCE
|
|
1119
|
-
SPECIFIED
|
|
1120
|
-
}
|
|
1121
|
-
export
|
|
1122
|
-
|
|
1123
|
-
|
|
1124
|
-
|
|
1125
|
-
|
|
1126
|
-
|
|
1127
|
-
|
|
1128
|
-
|
|
1129
|
-
|
|
1130
|
-
export declare
|
|
1131
|
-
|
|
1132
|
-
|
|
1133
|
-
}
|
|
1134
|
-
export
|
|
1135
|
-
|
|
1136
|
-
|
|
1388
|
+
export declare const Vp9FramerateControl: {
|
|
1389
|
+
readonly INITIALIZE_FROM_SOURCE: "INITIALIZE_FROM_SOURCE";
|
|
1390
|
+
readonly SPECIFIED: "SPECIFIED";
|
|
1391
|
+
};
|
|
1392
|
+
export type Vp9FramerateControl =
|
|
1393
|
+
(typeof Vp9FramerateControl)[keyof typeof Vp9FramerateControl];
|
|
1394
|
+
export declare const Vp9FramerateConversionAlgorithm: {
|
|
1395
|
+
readonly DUPLICATE_DROP: "DUPLICATE_DROP";
|
|
1396
|
+
readonly FRAMEFORMER: "FRAMEFORMER";
|
|
1397
|
+
readonly INTERPOLATE: "INTERPOLATE";
|
|
1398
|
+
};
|
|
1399
|
+
export type Vp9FramerateConversionAlgorithm =
|
|
1400
|
+
(typeof Vp9FramerateConversionAlgorithm)[keyof typeof Vp9FramerateConversionAlgorithm];
|
|
1401
|
+
export declare const Vp9ParControl: {
|
|
1402
|
+
readonly INITIALIZE_FROM_SOURCE: "INITIALIZE_FROM_SOURCE";
|
|
1403
|
+
readonly SPECIFIED: "SPECIFIED";
|
|
1404
|
+
};
|
|
1405
|
+
export type Vp9ParControl = (typeof Vp9ParControl)[keyof typeof Vp9ParControl];
|
|
1406
|
+
export declare const Vp9QualityTuningLevel: {
|
|
1407
|
+
readonly MULTI_PASS: "MULTI_PASS";
|
|
1408
|
+
readonly MULTI_PASS_HQ: "MULTI_PASS_HQ";
|
|
1409
|
+
};
|
|
1410
|
+
export type Vp9QualityTuningLevel =
|
|
1411
|
+
(typeof Vp9QualityTuningLevel)[keyof typeof Vp9QualityTuningLevel];
|
|
1412
|
+
export declare const Vp9RateControlMode: {
|
|
1413
|
+
readonly VBR: "VBR";
|
|
1414
|
+
};
|
|
1415
|
+
export type Vp9RateControlMode =
|
|
1416
|
+
(typeof Vp9RateControlMode)[keyof typeof Vp9RateControlMode];
|
|
1137
1417
|
export interface Vp9Settings {
|
|
1138
1418
|
Bitrate?: number;
|
|
1139
1419
|
FramerateControl?: Vp9FramerateControl | string;
|
|
@@ -1149,86 +1429,114 @@ export interface Vp9Settings {
|
|
|
1149
1429
|
QualityTuningLevel?: Vp9QualityTuningLevel | string;
|
|
1150
1430
|
RateControlMode?: Vp9RateControlMode | string;
|
|
1151
1431
|
}
|
|
1152
|
-
export declare
|
|
1153
|
-
AUTO
|
|
1154
|
-
HIGH
|
|
1155
|
-
HIGHER
|
|
1156
|
-
LOW
|
|
1157
|
-
MAX
|
|
1158
|
-
MEDIUM
|
|
1159
|
-
OFF
|
|
1160
|
-
}
|
|
1161
|
-
export
|
|
1162
|
-
|
|
1163
|
-
|
|
1164
|
-
|
|
1165
|
-
|
|
1166
|
-
|
|
1167
|
-
|
|
1168
|
-
|
|
1169
|
-
|
|
1170
|
-
export declare
|
|
1171
|
-
|
|
1172
|
-
|
|
1173
|
-
|
|
1174
|
-
|
|
1175
|
-
|
|
1176
|
-
|
|
1177
|
-
|
|
1178
|
-
|
|
1179
|
-
|
|
1180
|
-
|
|
1181
|
-
|
|
1182
|
-
|
|
1183
|
-
|
|
1184
|
-
|
|
1185
|
-
|
|
1186
|
-
|
|
1187
|
-
|
|
1188
|
-
|
|
1189
|
-
}
|
|
1190
|
-
export
|
|
1191
|
-
|
|
1192
|
-
|
|
1193
|
-
|
|
1194
|
-
|
|
1195
|
-
|
|
1196
|
-
|
|
1197
|
-
|
|
1198
|
-
|
|
1432
|
+
export declare const XavcAdaptiveQuantization: {
|
|
1433
|
+
readonly AUTO: "AUTO";
|
|
1434
|
+
readonly HIGH: "HIGH";
|
|
1435
|
+
readonly HIGHER: "HIGHER";
|
|
1436
|
+
readonly LOW: "LOW";
|
|
1437
|
+
readonly MAX: "MAX";
|
|
1438
|
+
readonly MEDIUM: "MEDIUM";
|
|
1439
|
+
readonly OFF: "OFF";
|
|
1440
|
+
};
|
|
1441
|
+
export type XavcAdaptiveQuantization =
|
|
1442
|
+
(typeof XavcAdaptiveQuantization)[keyof typeof XavcAdaptiveQuantization];
|
|
1443
|
+
export declare const XavcEntropyEncoding: {
|
|
1444
|
+
readonly AUTO: "AUTO";
|
|
1445
|
+
readonly CABAC: "CABAC";
|
|
1446
|
+
readonly CAVLC: "CAVLC";
|
|
1447
|
+
};
|
|
1448
|
+
export type XavcEntropyEncoding =
|
|
1449
|
+
(typeof XavcEntropyEncoding)[keyof typeof XavcEntropyEncoding];
|
|
1450
|
+
export declare const XavcFramerateControl: {
|
|
1451
|
+
readonly INITIALIZE_FROM_SOURCE: "INITIALIZE_FROM_SOURCE";
|
|
1452
|
+
readonly SPECIFIED: "SPECIFIED";
|
|
1453
|
+
};
|
|
1454
|
+
export type XavcFramerateControl =
|
|
1455
|
+
(typeof XavcFramerateControl)[keyof typeof XavcFramerateControl];
|
|
1456
|
+
export declare const XavcFramerateConversionAlgorithm: {
|
|
1457
|
+
readonly DUPLICATE_DROP: "DUPLICATE_DROP";
|
|
1458
|
+
readonly FRAMEFORMER: "FRAMEFORMER";
|
|
1459
|
+
readonly INTERPOLATE: "INTERPOLATE";
|
|
1460
|
+
};
|
|
1461
|
+
export type XavcFramerateConversionAlgorithm =
|
|
1462
|
+
(typeof XavcFramerateConversionAlgorithm)[keyof typeof XavcFramerateConversionAlgorithm];
|
|
1463
|
+
export declare const XavcProfile: {
|
|
1464
|
+
readonly XAVC_4K: "XAVC_4K";
|
|
1465
|
+
readonly XAVC_4K_INTRA_CBG: "XAVC_4K_INTRA_CBG";
|
|
1466
|
+
readonly XAVC_4K_INTRA_VBR: "XAVC_4K_INTRA_VBR";
|
|
1467
|
+
readonly XAVC_HD: "XAVC_HD";
|
|
1468
|
+
readonly XAVC_HD_INTRA_CBG: "XAVC_HD_INTRA_CBG";
|
|
1469
|
+
};
|
|
1470
|
+
export type XavcProfile = (typeof XavcProfile)[keyof typeof XavcProfile];
|
|
1471
|
+
export declare const XavcSlowPal: {
|
|
1472
|
+
readonly DISABLED: "DISABLED";
|
|
1473
|
+
readonly ENABLED: "ENABLED";
|
|
1474
|
+
};
|
|
1475
|
+
export type XavcSlowPal = (typeof XavcSlowPal)[keyof typeof XavcSlowPal];
|
|
1476
|
+
export declare const XavcSpatialAdaptiveQuantization: {
|
|
1477
|
+
readonly DISABLED: "DISABLED";
|
|
1478
|
+
readonly ENABLED: "ENABLED";
|
|
1479
|
+
};
|
|
1480
|
+
export type XavcSpatialAdaptiveQuantization =
|
|
1481
|
+
(typeof XavcSpatialAdaptiveQuantization)[keyof typeof XavcSpatialAdaptiveQuantization];
|
|
1482
|
+
export declare const XavcTemporalAdaptiveQuantization: {
|
|
1483
|
+
readonly DISABLED: "DISABLED";
|
|
1484
|
+
readonly ENABLED: "ENABLED";
|
|
1485
|
+
};
|
|
1486
|
+
export type XavcTemporalAdaptiveQuantization =
|
|
1487
|
+
(typeof XavcTemporalAdaptiveQuantization)[keyof typeof XavcTemporalAdaptiveQuantization];
|
|
1488
|
+
export declare const Xavc4kIntraCbgProfileClass: {
|
|
1489
|
+
readonly CLASS_100: "CLASS_100";
|
|
1490
|
+
readonly CLASS_300: "CLASS_300";
|
|
1491
|
+
readonly CLASS_480: "CLASS_480";
|
|
1492
|
+
};
|
|
1493
|
+
export type Xavc4kIntraCbgProfileClass =
|
|
1494
|
+
(typeof Xavc4kIntraCbgProfileClass)[keyof typeof Xavc4kIntraCbgProfileClass];
|
|
1199
1495
|
export interface Xavc4kIntraCbgProfileSettings {
|
|
1200
1496
|
XavcClass?: Xavc4kIntraCbgProfileClass | string;
|
|
1201
1497
|
}
|
|
1202
|
-
export declare
|
|
1203
|
-
CLASS_100
|
|
1204
|
-
CLASS_300
|
|
1205
|
-
CLASS_480
|
|
1206
|
-
}
|
|
1498
|
+
export declare const Xavc4kIntraVbrProfileClass: {
|
|
1499
|
+
readonly CLASS_100: "CLASS_100";
|
|
1500
|
+
readonly CLASS_300: "CLASS_300";
|
|
1501
|
+
readonly CLASS_480: "CLASS_480";
|
|
1502
|
+
};
|
|
1503
|
+
export type Xavc4kIntraVbrProfileClass =
|
|
1504
|
+
(typeof Xavc4kIntraVbrProfileClass)[keyof typeof Xavc4kIntraVbrProfileClass];
|
|
1207
1505
|
export interface Xavc4kIntraVbrProfileSettings {
|
|
1208
1506
|
XavcClass?: Xavc4kIntraVbrProfileClass | string;
|
|
1209
1507
|
}
|
|
1210
|
-
export declare
|
|
1211
|
-
BITRATE_CLASS_100
|
|
1212
|
-
BITRATE_CLASS_140
|
|
1213
|
-
BITRATE_CLASS_200
|
|
1214
|
-
}
|
|
1215
|
-
export
|
|
1216
|
-
|
|
1217
|
-
|
|
1218
|
-
|
|
1219
|
-
|
|
1220
|
-
|
|
1221
|
-
|
|
1222
|
-
|
|
1223
|
-
export declare
|
|
1224
|
-
DISABLED
|
|
1225
|
-
ENABLED
|
|
1226
|
-
}
|
|
1227
|
-
export
|
|
1228
|
-
|
|
1229
|
-
|
|
1230
|
-
|
|
1231
|
-
|
|
1508
|
+
export declare const Xavc4kProfileBitrateClass: {
|
|
1509
|
+
readonly BITRATE_CLASS_100: "BITRATE_CLASS_100";
|
|
1510
|
+
readonly BITRATE_CLASS_140: "BITRATE_CLASS_140";
|
|
1511
|
+
readonly BITRATE_CLASS_200: "BITRATE_CLASS_200";
|
|
1512
|
+
};
|
|
1513
|
+
export type Xavc4kProfileBitrateClass =
|
|
1514
|
+
(typeof Xavc4kProfileBitrateClass)[keyof typeof Xavc4kProfileBitrateClass];
|
|
1515
|
+
export declare const Xavc4kProfileCodecProfile: {
|
|
1516
|
+
readonly HIGH: "HIGH";
|
|
1517
|
+
readonly HIGH_422: "HIGH_422";
|
|
1518
|
+
};
|
|
1519
|
+
export type Xavc4kProfileCodecProfile =
|
|
1520
|
+
(typeof Xavc4kProfileCodecProfile)[keyof typeof Xavc4kProfileCodecProfile];
|
|
1521
|
+
export declare const XavcFlickerAdaptiveQuantization: {
|
|
1522
|
+
readonly DISABLED: "DISABLED";
|
|
1523
|
+
readonly ENABLED: "ENABLED";
|
|
1524
|
+
};
|
|
1525
|
+
export type XavcFlickerAdaptiveQuantization =
|
|
1526
|
+
(typeof XavcFlickerAdaptiveQuantization)[keyof typeof XavcFlickerAdaptiveQuantization];
|
|
1527
|
+
export declare const XavcGopBReference: {
|
|
1528
|
+
readonly DISABLED: "DISABLED";
|
|
1529
|
+
readonly ENABLED: "ENABLED";
|
|
1530
|
+
};
|
|
1531
|
+
export type XavcGopBReference =
|
|
1532
|
+
(typeof XavcGopBReference)[keyof typeof XavcGopBReference];
|
|
1533
|
+
export declare const Xavc4kProfileQualityTuningLevel: {
|
|
1534
|
+
readonly MULTI_PASS_HQ: "MULTI_PASS_HQ";
|
|
1535
|
+
readonly SINGLE_PASS: "SINGLE_PASS";
|
|
1536
|
+
readonly SINGLE_PASS_HQ: "SINGLE_PASS_HQ";
|
|
1537
|
+
};
|
|
1538
|
+
export type Xavc4kProfileQualityTuningLevel =
|
|
1539
|
+
(typeof Xavc4kProfileQualityTuningLevel)[keyof typeof Xavc4kProfileQualityTuningLevel];
|
|
1232
1540
|
export interface Xavc4kProfileSettings {
|
|
1233
1541
|
BitrateClass?: Xavc4kProfileBitrateClass | string;
|
|
1234
1542
|
CodecProfile?: Xavc4kProfileCodecProfile | string;
|
|
@@ -1239,35 +1547,45 @@ export interface Xavc4kProfileSettings {
|
|
|
1239
1547
|
QualityTuningLevel?: Xavc4kProfileQualityTuningLevel | string;
|
|
1240
1548
|
Slices?: number;
|
|
1241
1549
|
}
|
|
1242
|
-
export declare
|
|
1243
|
-
CLASS_100
|
|
1244
|
-
CLASS_200
|
|
1245
|
-
CLASS_50
|
|
1246
|
-
}
|
|
1550
|
+
export declare const XavcHdIntraCbgProfileClass: {
|
|
1551
|
+
readonly CLASS_100: "CLASS_100";
|
|
1552
|
+
readonly CLASS_200: "CLASS_200";
|
|
1553
|
+
readonly CLASS_50: "CLASS_50";
|
|
1554
|
+
};
|
|
1555
|
+
export type XavcHdIntraCbgProfileClass =
|
|
1556
|
+
(typeof XavcHdIntraCbgProfileClass)[keyof typeof XavcHdIntraCbgProfileClass];
|
|
1247
1557
|
export interface XavcHdIntraCbgProfileSettings {
|
|
1248
1558
|
XavcClass?: XavcHdIntraCbgProfileClass | string;
|
|
1249
1559
|
}
|
|
1250
|
-
export declare
|
|
1251
|
-
BITRATE_CLASS_25
|
|
1252
|
-
BITRATE_CLASS_35
|
|
1253
|
-
BITRATE_CLASS_50
|
|
1254
|
-
}
|
|
1255
|
-
export
|
|
1256
|
-
|
|
1257
|
-
|
|
1258
|
-
|
|
1259
|
-
|
|
1260
|
-
|
|
1261
|
-
|
|
1262
|
-
|
|
1263
|
-
|
|
1264
|
-
|
|
1265
|
-
|
|
1266
|
-
|
|
1267
|
-
|
|
1268
|
-
|
|
1269
|
-
|
|
1270
|
-
}
|
|
1560
|
+
export declare const XavcHdProfileBitrateClass: {
|
|
1561
|
+
readonly BITRATE_CLASS_25: "BITRATE_CLASS_25";
|
|
1562
|
+
readonly BITRATE_CLASS_35: "BITRATE_CLASS_35";
|
|
1563
|
+
readonly BITRATE_CLASS_50: "BITRATE_CLASS_50";
|
|
1564
|
+
};
|
|
1565
|
+
export type XavcHdProfileBitrateClass =
|
|
1566
|
+
(typeof XavcHdProfileBitrateClass)[keyof typeof XavcHdProfileBitrateClass];
|
|
1567
|
+
export declare const XavcInterlaceMode: {
|
|
1568
|
+
readonly BOTTOM_FIELD: "BOTTOM_FIELD";
|
|
1569
|
+
readonly FOLLOW_BOTTOM_FIELD: "FOLLOW_BOTTOM_FIELD";
|
|
1570
|
+
readonly FOLLOW_TOP_FIELD: "FOLLOW_TOP_FIELD";
|
|
1571
|
+
readonly PROGRESSIVE: "PROGRESSIVE";
|
|
1572
|
+
readonly TOP_FIELD: "TOP_FIELD";
|
|
1573
|
+
};
|
|
1574
|
+
export type XavcInterlaceMode =
|
|
1575
|
+
(typeof XavcInterlaceMode)[keyof typeof XavcInterlaceMode];
|
|
1576
|
+
export declare const XavcHdProfileQualityTuningLevel: {
|
|
1577
|
+
readonly MULTI_PASS_HQ: "MULTI_PASS_HQ";
|
|
1578
|
+
readonly SINGLE_PASS: "SINGLE_PASS";
|
|
1579
|
+
readonly SINGLE_PASS_HQ: "SINGLE_PASS_HQ";
|
|
1580
|
+
};
|
|
1581
|
+
export type XavcHdProfileQualityTuningLevel =
|
|
1582
|
+
(typeof XavcHdProfileQualityTuningLevel)[keyof typeof XavcHdProfileQualityTuningLevel];
|
|
1583
|
+
export declare const XavcHdProfileTelecine: {
|
|
1584
|
+
readonly HARD: "HARD";
|
|
1585
|
+
readonly NONE: "NONE";
|
|
1586
|
+
};
|
|
1587
|
+
export type XavcHdProfileTelecine =
|
|
1588
|
+
(typeof XavcHdProfileTelecine)[keyof typeof XavcHdProfileTelecine];
|
|
1271
1589
|
export interface XavcHdProfileSettings {
|
|
1272
1590
|
BitrateClass?: XavcHdProfileBitrateClass | string;
|
|
1273
1591
|
FlickerAdaptiveQuantization?: XavcFlickerAdaptiveQuantization | string;
|
|
@@ -1311,52 +1629,66 @@ export interface VideoCodecSettings {
|
|
|
1311
1629
|
Vp9Settings?: Vp9Settings;
|
|
1312
1630
|
XavcSettings?: XavcSettings;
|
|
1313
1631
|
}
|
|
1314
|
-
export declare
|
|
1315
|
-
IGNORE
|
|
1316
|
-
INSERT
|
|
1317
|
-
}
|
|
1318
|
-
export
|
|
1319
|
-
|
|
1320
|
-
|
|
1321
|
-
|
|
1322
|
-
|
|
1323
|
-
|
|
1324
|
-
|
|
1325
|
-
|
|
1326
|
-
|
|
1327
|
-
|
|
1328
|
-
|
|
1329
|
-
|
|
1330
|
-
|
|
1331
|
-
export declare
|
|
1332
|
-
|
|
1333
|
-
|
|
1334
|
-
}
|
|
1632
|
+
export declare const ColorMetadata: {
|
|
1633
|
+
readonly IGNORE: "IGNORE";
|
|
1634
|
+
readonly INSERT: "INSERT";
|
|
1635
|
+
};
|
|
1636
|
+
export type ColorMetadata = (typeof ColorMetadata)[keyof typeof ColorMetadata];
|
|
1637
|
+
export declare const DropFrameTimecode: {
|
|
1638
|
+
readonly DISABLED: "DISABLED";
|
|
1639
|
+
readonly ENABLED: "ENABLED";
|
|
1640
|
+
};
|
|
1641
|
+
export type DropFrameTimecode =
|
|
1642
|
+
(typeof DropFrameTimecode)[keyof typeof DropFrameTimecode];
|
|
1643
|
+
export declare const RespondToAfd: {
|
|
1644
|
+
readonly NONE: "NONE";
|
|
1645
|
+
readonly PASSTHROUGH: "PASSTHROUGH";
|
|
1646
|
+
readonly RESPOND: "RESPOND";
|
|
1647
|
+
};
|
|
1648
|
+
export type RespondToAfd = (typeof RespondToAfd)[keyof typeof RespondToAfd];
|
|
1649
|
+
export declare const ScalingBehavior: {
|
|
1650
|
+
readonly DEFAULT: "DEFAULT";
|
|
1651
|
+
readonly STRETCH_TO_OUTPUT: "STRETCH_TO_OUTPUT";
|
|
1652
|
+
};
|
|
1653
|
+
export type ScalingBehavior =
|
|
1654
|
+
(typeof ScalingBehavior)[keyof typeof ScalingBehavior];
|
|
1655
|
+
export declare const VideoTimecodeInsertion: {
|
|
1656
|
+
readonly DISABLED: "DISABLED";
|
|
1657
|
+
readonly PIC_TIMING_SEI: "PIC_TIMING_SEI";
|
|
1658
|
+
};
|
|
1659
|
+
export type VideoTimecodeInsertion =
|
|
1660
|
+
(typeof VideoTimecodeInsertion)[keyof typeof VideoTimecodeInsertion];
|
|
1335
1661
|
export interface ClipLimits {
|
|
1336
1662
|
MaximumRGBTolerance?: number;
|
|
1337
1663
|
MaximumYUV?: number;
|
|
1338
1664
|
MinimumRGBTolerance?: number;
|
|
1339
1665
|
MinimumYUV?: number;
|
|
1340
1666
|
}
|
|
1341
|
-
export declare
|
|
1342
|
-
FORCE_601
|
|
1343
|
-
FORCE_709
|
|
1344
|
-
FORCE_HDR10
|
|
1345
|
-
FORCE_HLG_2020
|
|
1346
|
-
FORCE_P3D65_HDR
|
|
1347
|
-
FORCE_P3D65_SDR
|
|
1348
|
-
FORCE_P3DCI
|
|
1349
|
-
NONE
|
|
1350
|
-
}
|
|
1351
|
-
export
|
|
1352
|
-
|
|
1353
|
-
|
|
1354
|
-
|
|
1355
|
-
|
|
1356
|
-
|
|
1357
|
-
|
|
1358
|
-
|
|
1359
|
-
|
|
1667
|
+
export declare const ColorSpaceConversion: {
|
|
1668
|
+
readonly FORCE_601: "FORCE_601";
|
|
1669
|
+
readonly FORCE_709: "FORCE_709";
|
|
1670
|
+
readonly FORCE_HDR10: "FORCE_HDR10";
|
|
1671
|
+
readonly FORCE_HLG_2020: "FORCE_HLG_2020";
|
|
1672
|
+
readonly FORCE_P3D65_HDR: "FORCE_P3D65_HDR";
|
|
1673
|
+
readonly FORCE_P3D65_SDR: "FORCE_P3D65_SDR";
|
|
1674
|
+
readonly FORCE_P3DCI: "FORCE_P3DCI";
|
|
1675
|
+
readonly NONE: "NONE";
|
|
1676
|
+
};
|
|
1677
|
+
export type ColorSpaceConversion =
|
|
1678
|
+
(typeof ColorSpaceConversion)[keyof typeof ColorSpaceConversion];
|
|
1679
|
+
export declare const HDRToSDRToneMapper: {
|
|
1680
|
+
readonly PRESERVE_DETAILS: "PRESERVE_DETAILS";
|
|
1681
|
+
readonly VIBRANT: "VIBRANT";
|
|
1682
|
+
};
|
|
1683
|
+
export type HDRToSDRToneMapper =
|
|
1684
|
+
(typeof HDRToSDRToneMapper)[keyof typeof HDRToSDRToneMapper];
|
|
1685
|
+
export declare const SampleRangeConversion: {
|
|
1686
|
+
readonly LIMITED_RANGE_CLIP: "LIMITED_RANGE_CLIP";
|
|
1687
|
+
readonly LIMITED_RANGE_SQUEEZE: "LIMITED_RANGE_SQUEEZE";
|
|
1688
|
+
readonly NONE: "NONE";
|
|
1689
|
+
};
|
|
1690
|
+
export type SampleRangeConversion =
|
|
1691
|
+
(typeof SampleRangeConversion)[keyof typeof SampleRangeConversion];
|
|
1360
1692
|
export interface ColorCorrector {
|
|
1361
1693
|
Brightness?: number;
|
|
1362
1694
|
ClipLimits?: ClipLimits;
|
|
@@ -1369,21 +1701,27 @@ export interface ColorCorrector {
|
|
|
1369
1701
|
Saturation?: number;
|
|
1370
1702
|
SdrReferenceWhiteLevel?: number;
|
|
1371
1703
|
}
|
|
1372
|
-
export declare
|
|
1373
|
-
BLEND
|
|
1374
|
-
BLEND_TICKER
|
|
1375
|
-
INTERPOLATE
|
|
1376
|
-
INTERPOLATE_TICKER
|
|
1377
|
-
}
|
|
1378
|
-
export
|
|
1379
|
-
|
|
1380
|
-
|
|
1381
|
-
|
|
1382
|
-
|
|
1383
|
-
|
|
1384
|
-
|
|
1385
|
-
|
|
1386
|
-
|
|
1704
|
+
export declare const DeinterlaceAlgorithm: {
|
|
1705
|
+
readonly BLEND: "BLEND";
|
|
1706
|
+
readonly BLEND_TICKER: "BLEND_TICKER";
|
|
1707
|
+
readonly INTERPOLATE: "INTERPOLATE";
|
|
1708
|
+
readonly INTERPOLATE_TICKER: "INTERPOLATE_TICKER";
|
|
1709
|
+
};
|
|
1710
|
+
export type DeinterlaceAlgorithm =
|
|
1711
|
+
(typeof DeinterlaceAlgorithm)[keyof typeof DeinterlaceAlgorithm];
|
|
1712
|
+
export declare const DeinterlacerControl: {
|
|
1713
|
+
readonly FORCE_ALL_FRAMES: "FORCE_ALL_FRAMES";
|
|
1714
|
+
readonly NORMAL: "NORMAL";
|
|
1715
|
+
};
|
|
1716
|
+
export type DeinterlacerControl =
|
|
1717
|
+
(typeof DeinterlacerControl)[keyof typeof DeinterlacerControl];
|
|
1718
|
+
export declare const DeinterlacerMode: {
|
|
1719
|
+
readonly ADAPTIVE: "ADAPTIVE";
|
|
1720
|
+
readonly DEINTERLACE: "DEINTERLACE";
|
|
1721
|
+
readonly INVERSE_TELECINE: "INVERSE_TELECINE";
|
|
1722
|
+
};
|
|
1723
|
+
export type DeinterlacerMode =
|
|
1724
|
+
(typeof DeinterlacerMode)[keyof typeof DeinterlacerMode];
|
|
1387
1725
|
export interface Deinterlacer {
|
|
1388
1726
|
Algorithm?: DeinterlaceAlgorithm | string;
|
|
1389
1727
|
Control?: DeinterlacerControl | string;
|
|
@@ -1393,19 +1731,25 @@ export interface DolbyVisionLevel6Metadata {
|
|
|
1393
1731
|
MaxCll?: number;
|
|
1394
1732
|
MaxFall?: number;
|
|
1395
1733
|
}
|
|
1396
|
-
export declare
|
|
1397
|
-
PASSTHROUGH
|
|
1398
|
-
RECALCULATE
|
|
1399
|
-
SPECIFY
|
|
1400
|
-
}
|
|
1401
|
-
export
|
|
1402
|
-
|
|
1403
|
-
|
|
1404
|
-
|
|
1405
|
-
|
|
1406
|
-
|
|
1407
|
-
|
|
1408
|
-
|
|
1734
|
+
export declare const DolbyVisionLevel6Mode: {
|
|
1735
|
+
readonly PASSTHROUGH: "PASSTHROUGH";
|
|
1736
|
+
readonly RECALCULATE: "RECALCULATE";
|
|
1737
|
+
readonly SPECIFY: "SPECIFY";
|
|
1738
|
+
};
|
|
1739
|
+
export type DolbyVisionLevel6Mode =
|
|
1740
|
+
(typeof DolbyVisionLevel6Mode)[keyof typeof DolbyVisionLevel6Mode];
|
|
1741
|
+
export declare const DolbyVisionMapping: {
|
|
1742
|
+
readonly HDR10_1000: "HDR10_1000";
|
|
1743
|
+
readonly HDR10_NOMAP: "HDR10_NOMAP";
|
|
1744
|
+
};
|
|
1745
|
+
export type DolbyVisionMapping =
|
|
1746
|
+
(typeof DolbyVisionMapping)[keyof typeof DolbyVisionMapping];
|
|
1747
|
+
export declare const DolbyVisionProfile: {
|
|
1748
|
+
readonly PROFILE_5: "PROFILE_5";
|
|
1749
|
+
readonly PROFILE_8_1: "PROFILE_8_1";
|
|
1750
|
+
};
|
|
1751
|
+
export type DolbyVisionProfile =
|
|
1752
|
+
(typeof DolbyVisionProfile)[keyof typeof DolbyVisionProfile];
|
|
1409
1753
|
export interface DolbyVision {
|
|
1410
1754
|
L6Metadata?: DolbyVisionLevel6Metadata;
|
|
1411
1755
|
L6Mode?: DolbyVisionLevel6Mode | string;
|
|
@@ -1416,16 +1760,18 @@ export interface Hdr10Plus {
|
|
|
1416
1760
|
MasteringMonitorNits?: number;
|
|
1417
1761
|
TargetMonitorNits?: number;
|
|
1418
1762
|
}
|
|
1419
|
-
export declare
|
|
1420
|
-
BILATERAL
|
|
1421
|
-
CONSERVE
|
|
1422
|
-
GAUSSIAN
|
|
1423
|
-
LANCZOS
|
|
1424
|
-
MEAN
|
|
1425
|
-
SHARPEN
|
|
1426
|
-
SPATIAL
|
|
1427
|
-
TEMPORAL
|
|
1428
|
-
}
|
|
1763
|
+
export declare const NoiseReducerFilter: {
|
|
1764
|
+
readonly BILATERAL: "BILATERAL";
|
|
1765
|
+
readonly CONSERVE: "CONSERVE";
|
|
1766
|
+
readonly GAUSSIAN: "GAUSSIAN";
|
|
1767
|
+
readonly LANCZOS: "LANCZOS";
|
|
1768
|
+
readonly MEAN: "MEAN";
|
|
1769
|
+
readonly SHARPEN: "SHARPEN";
|
|
1770
|
+
readonly SPATIAL: "SPATIAL";
|
|
1771
|
+
readonly TEMPORAL: "TEMPORAL";
|
|
1772
|
+
};
|
|
1773
|
+
export type NoiseReducerFilter =
|
|
1774
|
+
(typeof NoiseReducerFilter)[keyof typeof NoiseReducerFilter];
|
|
1429
1775
|
export interface NoiseReducerFilterSettings {
|
|
1430
1776
|
Strength?: number;
|
|
1431
1777
|
}
|
|
@@ -1434,16 +1780,20 @@ export interface NoiseReducerSpatialFilterSettings {
|
|
|
1434
1780
|
Speed?: number;
|
|
1435
1781
|
Strength?: number;
|
|
1436
1782
|
}
|
|
1437
|
-
export declare
|
|
1438
|
-
AUTO
|
|
1439
|
-
DISABLED
|
|
1440
|
-
ENABLED
|
|
1441
|
-
}
|
|
1442
|
-
export
|
|
1443
|
-
|
|
1444
|
-
|
|
1445
|
-
|
|
1446
|
-
|
|
1783
|
+
export declare const NoiseFilterPostTemporalSharpening: {
|
|
1784
|
+
readonly AUTO: "AUTO";
|
|
1785
|
+
readonly DISABLED: "DISABLED";
|
|
1786
|
+
readonly ENABLED: "ENABLED";
|
|
1787
|
+
};
|
|
1788
|
+
export type NoiseFilterPostTemporalSharpening =
|
|
1789
|
+
(typeof NoiseFilterPostTemporalSharpening)[keyof typeof NoiseFilterPostTemporalSharpening];
|
|
1790
|
+
export declare const NoiseFilterPostTemporalSharpeningStrength: {
|
|
1791
|
+
readonly HIGH: "HIGH";
|
|
1792
|
+
readonly LOW: "LOW";
|
|
1793
|
+
readonly MEDIUM: "MEDIUM";
|
|
1794
|
+
};
|
|
1795
|
+
export type NoiseFilterPostTemporalSharpeningStrength =
|
|
1796
|
+
(typeof NoiseFilterPostTemporalSharpeningStrength)[keyof typeof NoiseFilterPostTemporalSharpeningStrength];
|
|
1447
1797
|
export interface NoiseReducerTemporalFilterSettings {
|
|
1448
1798
|
AggressiveMode?: number;
|
|
1449
1799
|
PostTemporalSharpening?: NoiseFilterPostTemporalSharpening | string;
|
|
@@ -1459,13 +1809,15 @@ export interface NoiseReducer {
|
|
|
1459
1809
|
SpatialFilterSettings?: NoiseReducerSpatialFilterSettings;
|
|
1460
1810
|
TemporalFilterSettings?: NoiseReducerTemporalFilterSettings;
|
|
1461
1811
|
}
|
|
1462
|
-
export declare
|
|
1463
|
-
DEFAULT
|
|
1464
|
-
LIGHTER
|
|
1465
|
-
LIGHTEST
|
|
1466
|
-
STRONGER
|
|
1467
|
-
STRONGEST
|
|
1468
|
-
}
|
|
1812
|
+
export declare const WatermarkingStrength: {
|
|
1813
|
+
readonly DEFAULT: "DEFAULT";
|
|
1814
|
+
readonly LIGHTER: "LIGHTER";
|
|
1815
|
+
readonly LIGHTEST: "LIGHTEST";
|
|
1816
|
+
readonly STRONGER: "STRONGER";
|
|
1817
|
+
readonly STRONGEST: "STRONGEST";
|
|
1818
|
+
};
|
|
1819
|
+
export type WatermarkingStrength =
|
|
1820
|
+
(typeof WatermarkingStrength)[keyof typeof WatermarkingStrength];
|
|
1469
1821
|
export interface NexGuardFileMarkerSettings {
|
|
1470
1822
|
License?: string;
|
|
1471
1823
|
Payload?: number;
|
|
@@ -1475,17 +1827,19 @@ export interface NexGuardFileMarkerSettings {
|
|
|
1475
1827
|
export interface PartnerWatermarking {
|
|
1476
1828
|
NexguardFileMarkerSettings?: NexGuardFileMarkerSettings;
|
|
1477
1829
|
}
|
|
1478
|
-
export declare
|
|
1479
|
-
BOTTOM_CENTER
|
|
1480
|
-
BOTTOM_LEFT
|
|
1481
|
-
BOTTOM_RIGHT
|
|
1482
|
-
MIDDLE_CENTER
|
|
1483
|
-
MIDDLE_LEFT
|
|
1484
|
-
MIDDLE_RIGHT
|
|
1485
|
-
TOP_CENTER
|
|
1486
|
-
TOP_LEFT
|
|
1487
|
-
TOP_RIGHT
|
|
1488
|
-
}
|
|
1830
|
+
export declare const TimecodeBurninPosition: {
|
|
1831
|
+
readonly BOTTOM_CENTER: "BOTTOM_CENTER";
|
|
1832
|
+
readonly BOTTOM_LEFT: "BOTTOM_LEFT";
|
|
1833
|
+
readonly BOTTOM_RIGHT: "BOTTOM_RIGHT";
|
|
1834
|
+
readonly MIDDLE_CENTER: "MIDDLE_CENTER";
|
|
1835
|
+
readonly MIDDLE_LEFT: "MIDDLE_LEFT";
|
|
1836
|
+
readonly MIDDLE_RIGHT: "MIDDLE_RIGHT";
|
|
1837
|
+
readonly TOP_CENTER: "TOP_CENTER";
|
|
1838
|
+
readonly TOP_LEFT: "TOP_LEFT";
|
|
1839
|
+
readonly TOP_RIGHT: "TOP_RIGHT";
|
|
1840
|
+
};
|
|
1841
|
+
export type TimecodeBurninPosition =
|
|
1842
|
+
(typeof TimecodeBurninPosition)[keyof typeof TimecodeBurninPosition];
|
|
1489
1843
|
export interface TimecodeBurnin {
|
|
1490
1844
|
FontSize?: number;
|
|
1491
1845
|
Position?: TimecodeBurninPosition | string;
|
|
@@ -1535,11 +1889,13 @@ export interface OutputGroup {
|
|
|
1535
1889
|
OutputGroupSettings?: OutputGroupSettings;
|
|
1536
1890
|
Outputs?: Output[];
|
|
1537
1891
|
}
|
|
1538
|
-
export declare
|
|
1539
|
-
EMBEDDED
|
|
1540
|
-
SPECIFIEDSTART
|
|
1541
|
-
ZEROBASED
|
|
1542
|
-
}
|
|
1892
|
+
export declare const TimecodeSource: {
|
|
1893
|
+
readonly EMBEDDED: "EMBEDDED";
|
|
1894
|
+
readonly SPECIFIEDSTART: "SPECIFIEDSTART";
|
|
1895
|
+
readonly ZEROBASED: "ZEROBASED";
|
|
1896
|
+
};
|
|
1897
|
+
export type TimecodeSource =
|
|
1898
|
+
(typeof TimecodeSource)[keyof typeof TimecodeSource];
|
|
1543
1899
|
export interface TimecodeConfig {
|
|
1544
1900
|
Anchor?: string;
|
|
1545
1901
|
Source?: TimecodeSource | string;
|
|
@@ -1563,34 +1919,39 @@ export interface JobSettings {
|
|
|
1563
1919
|
TimecodeConfig?: TimecodeConfig;
|
|
1564
1920
|
TimedMetadataInsertion?: TimedMetadataInsertion;
|
|
1565
1921
|
}
|
|
1566
|
-
export declare
|
|
1567
|
-
DISABLED
|
|
1568
|
-
ENABLED
|
|
1569
|
-
}
|
|
1570
|
-
export
|
|
1571
|
-
|
|
1572
|
-
|
|
1573
|
-
|
|
1574
|
-
|
|
1575
|
-
|
|
1576
|
-
|
|
1577
|
-
|
|
1578
|
-
|
|
1579
|
-
|
|
1580
|
-
|
|
1581
|
-
|
|
1582
|
-
|
|
1583
|
-
|
|
1584
|
-
|
|
1585
|
-
|
|
1586
|
-
|
|
1587
|
-
|
|
1588
|
-
|
|
1589
|
-
|
|
1590
|
-
|
|
1591
|
-
|
|
1592
|
-
|
|
1593
|
-
|
|
1922
|
+
export declare const SimulateReservedQueue: {
|
|
1923
|
+
readonly DISABLED: "DISABLED";
|
|
1924
|
+
readonly ENABLED: "ENABLED";
|
|
1925
|
+
};
|
|
1926
|
+
export type SimulateReservedQueue =
|
|
1927
|
+
(typeof SimulateReservedQueue)[keyof typeof SimulateReservedQueue];
|
|
1928
|
+
export declare const JobStatus: {
|
|
1929
|
+
readonly CANCELED: "CANCELED";
|
|
1930
|
+
readonly COMPLETE: "COMPLETE";
|
|
1931
|
+
readonly ERROR: "ERROR";
|
|
1932
|
+
readonly PROGRESSING: "PROGRESSING";
|
|
1933
|
+
readonly SUBMITTED: "SUBMITTED";
|
|
1934
|
+
};
|
|
1935
|
+
export type JobStatus = (typeof JobStatus)[keyof typeof JobStatus];
|
|
1936
|
+
export declare const StatusUpdateInterval: {
|
|
1937
|
+
readonly SECONDS_10: "SECONDS_10";
|
|
1938
|
+
readonly SECONDS_12: "SECONDS_12";
|
|
1939
|
+
readonly SECONDS_120: "SECONDS_120";
|
|
1940
|
+
readonly SECONDS_15: "SECONDS_15";
|
|
1941
|
+
readonly SECONDS_180: "SECONDS_180";
|
|
1942
|
+
readonly SECONDS_20: "SECONDS_20";
|
|
1943
|
+
readonly SECONDS_240: "SECONDS_240";
|
|
1944
|
+
readonly SECONDS_30: "SECONDS_30";
|
|
1945
|
+
readonly SECONDS_300: "SECONDS_300";
|
|
1946
|
+
readonly SECONDS_360: "SECONDS_360";
|
|
1947
|
+
readonly SECONDS_420: "SECONDS_420";
|
|
1948
|
+
readonly SECONDS_480: "SECONDS_480";
|
|
1949
|
+
readonly SECONDS_540: "SECONDS_540";
|
|
1950
|
+
readonly SECONDS_60: "SECONDS_60";
|
|
1951
|
+
readonly SECONDS_600: "SECONDS_600";
|
|
1952
|
+
};
|
|
1953
|
+
export type StatusUpdateInterval =
|
|
1954
|
+
(typeof StatusUpdateInterval)[keyof typeof StatusUpdateInterval];
|
|
1594
1955
|
export interface Timing {
|
|
1595
1956
|
FinishTime?: Date;
|
|
1596
1957
|
StartTime?: Date;
|
|
@@ -1637,10 +1998,11 @@ export interface JobTemplateSettings {
|
|
|
1637
1998
|
TimecodeConfig?: TimecodeConfig;
|
|
1638
1999
|
TimedMetadataInsertion?: TimedMetadataInsertion;
|
|
1639
2000
|
}
|
|
1640
|
-
export declare
|
|
1641
|
-
CUSTOM
|
|
1642
|
-
SYSTEM
|
|
1643
|
-
}
|
|
2001
|
+
export declare const Type: {
|
|
2002
|
+
readonly CUSTOM: "CUSTOM";
|
|
2003
|
+
readonly SYSTEM: "SYSTEM";
|
|
2004
|
+
};
|
|
2005
|
+
export type Type = (typeof Type)[keyof typeof Type];
|
|
1644
2006
|
export interface JobTemplate {
|
|
1645
2007
|
AccelerationSettings?: AccelerationSettings;
|
|
1646
2008
|
Arn?: string;
|
|
@@ -1672,21 +2034,26 @@ export interface Preset {
|
|
|
1672
2034
|
Settings: PresetSettings | undefined;
|
|
1673
2035
|
Type?: Type | string;
|
|
1674
2036
|
}
|
|
1675
|
-
export declare
|
|
1676
|
-
ON_DEMAND
|
|
1677
|
-
RESERVED
|
|
1678
|
-
}
|
|
1679
|
-
export
|
|
1680
|
-
|
|
1681
|
-
|
|
1682
|
-
|
|
1683
|
-
|
|
1684
|
-
|
|
1685
|
-
|
|
1686
|
-
|
|
1687
|
-
|
|
1688
|
-
|
|
1689
|
-
|
|
2037
|
+
export declare const PricingPlan: {
|
|
2038
|
+
readonly ON_DEMAND: "ON_DEMAND";
|
|
2039
|
+
readonly RESERVED: "RESERVED";
|
|
2040
|
+
};
|
|
2041
|
+
export type PricingPlan = (typeof PricingPlan)[keyof typeof PricingPlan];
|
|
2042
|
+
export declare const Commitment: {
|
|
2043
|
+
readonly ONE_YEAR: "ONE_YEAR";
|
|
2044
|
+
};
|
|
2045
|
+
export type Commitment = (typeof Commitment)[keyof typeof Commitment];
|
|
2046
|
+
export declare const RenewalType: {
|
|
2047
|
+
readonly AUTO_RENEW: "AUTO_RENEW";
|
|
2048
|
+
readonly EXPIRE: "EXPIRE";
|
|
2049
|
+
};
|
|
2050
|
+
export type RenewalType = (typeof RenewalType)[keyof typeof RenewalType];
|
|
2051
|
+
export declare const ReservationPlanStatus: {
|
|
2052
|
+
readonly ACTIVE: "ACTIVE";
|
|
2053
|
+
readonly EXPIRED: "EXPIRED";
|
|
2054
|
+
};
|
|
2055
|
+
export type ReservationPlanStatus =
|
|
2056
|
+
(typeof ReservationPlanStatus)[keyof typeof ReservationPlanStatus];
|
|
1690
2057
|
export interface ReservationPlan {
|
|
1691
2058
|
Commitment?: Commitment | string;
|
|
1692
2059
|
ExpiresAt?: Date;
|
|
@@ -1695,10 +2062,11 @@ export interface ReservationPlan {
|
|
|
1695
2062
|
ReservedSlots?: number;
|
|
1696
2063
|
Status?: ReservationPlanStatus | string;
|
|
1697
2064
|
}
|
|
1698
|
-
export declare
|
|
1699
|
-
ACTIVE
|
|
1700
|
-
PAUSED
|
|
1701
|
-
}
|
|
2065
|
+
export declare const QueueStatus: {
|
|
2066
|
+
readonly ACTIVE: "ACTIVE";
|
|
2067
|
+
readonly PAUSED: "PAUSED";
|
|
2068
|
+
};
|
|
2069
|
+
export type QueueStatus = (typeof QueueStatus)[keyof typeof QueueStatus];
|
|
1702
2070
|
export interface Queue {
|
|
1703
2071
|
Arn?: string;
|
|
1704
2072
|
CreatedAt?: Date;
|
|
@@ -1835,10 +2203,12 @@ export interface DeleteQueueRequest {
|
|
|
1835
2203
|
Name: string | undefined;
|
|
1836
2204
|
}
|
|
1837
2205
|
export interface DeleteQueueResponse {}
|
|
1838
|
-
export declare
|
|
1839
|
-
DEFAULT
|
|
1840
|
-
GET_ONLY
|
|
1841
|
-
}
|
|
2206
|
+
export declare const DescribeEndpointsMode: {
|
|
2207
|
+
readonly DEFAULT: "DEFAULT";
|
|
2208
|
+
readonly GET_ONLY: "GET_ONLY";
|
|
2209
|
+
};
|
|
2210
|
+
export type DescribeEndpointsMode =
|
|
2211
|
+
(typeof DescribeEndpointsMode)[keyof typeof DescribeEndpointsMode];
|
|
1842
2212
|
export interface DescribeEndpointsRequest {
|
|
1843
2213
|
MaxResults?: number;
|
|
1844
2214
|
Mode?: DescribeEndpointsMode | string;
|