@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.
@@ -38,12 +38,13 @@ import {
38
38
  QueueTransition,
39
39
  Rectangle,
40
40
  } from "./models_0";
41
- export declare enum OutputSdt {
42
- SDT_FOLLOW = "SDT_FOLLOW",
43
- SDT_FOLLOW_IF_PRESENT = "SDT_FOLLOW_IF_PRESENT",
44
- SDT_MANUAL = "SDT_MANUAL",
45
- SDT_NONE = "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 enum M2tsEbpAudioInterval {
57
- VIDEO_AND_FIXED_INTERVALS = "VIDEO_AND_FIXED_INTERVALS",
58
- VIDEO_INTERVAL = "VIDEO_INTERVAL",
59
- }
60
- export declare enum M2tsEbpPlacement {
61
- VIDEO_AND_AUDIO_PIDS = "VIDEO_AND_AUDIO_PIDS",
62
- VIDEO_PID = "VIDEO_PID",
63
- }
64
- export declare enum M2tsEsRateInPes {
65
- EXCLUDE = "EXCLUDE",
66
- INCLUDE = "INCLUDE",
67
- }
68
- export declare enum M2tsForceTsVideoEbpOrder {
69
- DEFAULT = "DEFAULT",
70
- FORCE = "FORCE",
71
- }
72
- export declare enum M2tsKlvMetadata {
73
- NONE = "NONE",
74
- PASSTHROUGH = "PASSTHROUGH",
75
- }
76
- export declare enum M2tsNielsenId3 {
77
- INSERT = "INSERT",
78
- NONE = "NONE",
79
- }
80
- export declare enum M2tsPcrControl {
81
- CONFIGURED_PCR_PERIOD = "CONFIGURED_PCR_PERIOD",
82
- PCR_EVERY_PES_PACKET = "PCR_EVERY_PES_PACKET",
83
- }
84
- export declare enum M2tsRateMode {
85
- CBR = "CBR",
86
- VBR = "VBR",
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 enum M2tsScte35Source {
92
- NONE = "NONE",
93
- PASSTHROUGH = "PASSTHROUGH",
94
- }
95
- export declare enum M2tsSegmentationMarkers {
96
- EBP = "EBP",
97
- EBP_LEGACY = "EBP_LEGACY",
98
- NONE = "NONE",
99
- PSI_SEGSTART = "PSI_SEGSTART",
100
- RAI_ADAPT = "RAI_ADAPT",
101
- RAI_SEGSTART = "RAI_SEGSTART",
102
- }
103
- export declare enum M2tsSegmentationStyle {
104
- MAINTAIN_CADENCE = "MAINTAIN_CADENCE",
105
- RESET_CADENCE = "RESET_CADENCE",
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 enum M3u8AudioDuration {
149
- DEFAULT_CODEC_DURATION = "DEFAULT_CODEC_DURATION",
150
- MATCH_VIDEO_DURATION = "MATCH_VIDEO_DURATION",
151
- }
152
- export declare enum M3u8DataPtsControl {
153
- ALIGN_TO_VIDEO = "ALIGN_TO_VIDEO",
154
- AUTO = "AUTO",
155
- }
156
- export declare enum M3u8NielsenId3 {
157
- INSERT = "INSERT",
158
- NONE = "NONE",
159
- }
160
- export declare enum M3u8PcrControl {
161
- CONFIGURED_PCR_PERIOD = "CONFIGURED_PCR_PERIOD",
162
- PCR_EVERY_PES_PACKET = "PCR_EVERY_PES_PACKET",
163
- }
164
- export declare enum M3u8Scte35Source {
165
- NONE = "NONE",
166
- PASSTHROUGH = "PASSTHROUGH",
167
- }
168
- export declare enum TimedMetadata {
169
- NONE = "NONE",
170
- PASSTHROUGH = "PASSTHROUGH",
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 enum MovClapAtom {
194
- EXCLUDE = "EXCLUDE",
195
- INCLUDE = "INCLUDE",
196
- }
197
- export declare enum MovCslgAtom {
198
- EXCLUDE = "EXCLUDE",
199
- INCLUDE = "INCLUDE",
200
- }
201
- export declare enum MovMpeg2FourCCControl {
202
- MPEG = "MPEG",
203
- XDCAM = "XDCAM",
204
- }
205
- export declare enum MovPaddingControl {
206
- NONE = "NONE",
207
- OMNEON = "OMNEON",
208
- }
209
- export declare enum MovReference {
210
- EXTERNAL = "EXTERNAL",
211
- SELF_CONTAINED = "SELF_CONTAINED",
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 enum Mp4CslgAtom {
221
- EXCLUDE = "EXCLUDE",
222
- INCLUDE = "INCLUDE",
223
- }
224
- export declare enum Mp4FreeSpaceBox {
225
- EXCLUDE = "EXCLUDE",
226
- INCLUDE = "INCLUDE",
227
- }
228
- export declare enum Mp4MoovPlacement {
229
- NORMAL = "NORMAL",
230
- PROGRESSIVE_DOWNLOAD = "PROGRESSIVE_DOWNLOAD",
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 enum MpdAccessibilityCaptionHints {
241
- EXCLUDE = "EXCLUDE",
242
- INCLUDE = "INCLUDE",
243
- }
244
- export declare enum MpdAudioDuration {
245
- DEFAULT_CODEC_DURATION = "DEFAULT_CODEC_DURATION",
246
- MATCH_VIDEO_DURATION = "MATCH_VIDEO_DURATION",
247
- }
248
- export declare enum MpdCaptionContainerType {
249
- FRAGMENTED_MP4 = "FRAGMENTED_MP4",
250
- RAW = "RAW",
251
- }
252
- export declare enum MpdKlvMetadata {
253
- NONE = "NONE",
254
- PASSTHROUGH = "PASSTHROUGH",
255
- }
256
- export declare enum MpdManifestMetadataSignaling {
257
- DISABLED = "DISABLED",
258
- ENABLED = "ENABLED",
259
- }
260
- export declare enum MpdScte35Esam {
261
- INSERT = "INSERT",
262
- NONE = "NONE",
263
- }
264
- export declare enum MpdScte35Source {
265
- NONE = "NONE",
266
- PASSTHROUGH = "PASSTHROUGH",
267
- }
268
- export declare enum MpdTimedMetadata {
269
- NONE = "NONE",
270
- PASSTHROUGH = "PASSTHROUGH",
271
- }
272
- export declare enum MpdTimedMetadataBoxVersion {
273
- VERSION_0 = "VERSION_0",
274
- VERSION_1 = "VERSION_1",
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 enum MxfAfdSignaling {
290
- COPY_FROM_VIDEO = "COPY_FROM_VIDEO",
291
- NO_COPY = "NO_COPY",
292
- }
293
- export declare enum MxfProfile {
294
- D_10 = "D_10",
295
- OP1A = "OP1A",
296
- XAVC = "XAVC",
297
- XDCAM = "XDCAM",
298
- }
299
- export declare enum MxfXavcDurationMode {
300
- ALLOW_ANY_DURATION = "ALLOW_ANY_DURATION",
301
- DROP_FRAMES_FOR_COMPLIANCE = "DROP_FRAMES_FOR_COMPLIANCE",
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 enum HlsAudioOnlyContainer {
324
- AUTOMATIC = "AUTOMATIC",
325
- M2TS = "M2TS",
326
- }
327
- export declare enum HlsAudioTrackType {
328
- ALTERNATE_AUDIO_AUTO_SELECT = "ALTERNATE_AUDIO_AUTO_SELECT",
329
- ALTERNATE_AUDIO_AUTO_SELECT_DEFAULT = "ALTERNATE_AUDIO_AUTO_SELECT_DEFAULT",
330
- ALTERNATE_AUDIO_NOT_AUTO_SELECT = "ALTERNATE_AUDIO_NOT_AUTO_SELECT",
331
- AUDIO_ONLY_VARIANT_STREAM = "AUDIO_ONLY_VARIANT_STREAM",
332
- }
333
- export declare enum HlsDescriptiveVideoServiceFlag {
334
- DONT_FLAG = "DONT_FLAG",
335
- FLAG = "FLAG",
336
- }
337
- export declare enum HlsIFrameOnlyManifest {
338
- EXCLUDE = "EXCLUDE",
339
- INCLUDE = "INCLUDE",
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 enum AfdSignaling {
354
- AUTO = "AUTO",
355
- FIXED = "FIXED",
356
- NONE = "NONE",
357
- }
358
- export declare enum AntiAlias {
359
- DISABLED = "DISABLED",
360
- ENABLED = "ENABLED",
361
- }
362
- export declare enum Av1AdaptiveQuantization {
363
- HIGH = "HIGH",
364
- HIGHER = "HIGHER",
365
- LOW = "LOW",
366
- MAX = "MAX",
367
- MEDIUM = "MEDIUM",
368
- OFF = "OFF",
369
- }
370
- export declare enum Av1BitDepth {
371
- BIT_10 = "BIT_10",
372
- BIT_8 = "BIT_8",
373
- }
374
- export declare enum Av1FramerateControl {
375
- INITIALIZE_FROM_SOURCE = "INITIALIZE_FROM_SOURCE",
376
- SPECIFIED = "SPECIFIED",
377
- }
378
- export declare enum Av1FramerateConversionAlgorithm {
379
- DUPLICATE_DROP = "DUPLICATE_DROP",
380
- FRAMEFORMER = "FRAMEFORMER",
381
- INTERPOLATE = "INTERPOLATE",
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 enum Av1RateControlMode {
388
- QVBR = "QVBR",
389
- }
390
- export declare enum Av1SpatialAdaptiveQuantization {
391
- DISABLED = "DISABLED",
392
- ENABLED = "ENABLED",
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 enum AvcIntraClass {
410
- CLASS_100 = "CLASS_100",
411
- CLASS_200 = "CLASS_200",
412
- CLASS_4K_2K = "CLASS_4K_2K",
413
- CLASS_50 = "CLASS_50",
414
- }
415
- export declare enum AvcIntraUhdQualityTuningLevel {
416
- MULTI_PASS = "MULTI_PASS",
417
- SINGLE_PASS = "SINGLE_PASS",
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 enum AvcIntraFramerateControl {
423
- INITIALIZE_FROM_SOURCE = "INITIALIZE_FROM_SOURCE",
424
- SPECIFIED = "SPECIFIED",
425
- }
426
- export declare enum AvcIntraFramerateConversionAlgorithm {
427
- DUPLICATE_DROP = "DUPLICATE_DROP",
428
- FRAMEFORMER = "FRAMEFORMER",
429
- INTERPOLATE = "INTERPOLATE",
430
- }
431
- export declare enum AvcIntraInterlaceMode {
432
- BOTTOM_FIELD = "BOTTOM_FIELD",
433
- FOLLOW_BOTTOM_FIELD = "FOLLOW_BOTTOM_FIELD",
434
- FOLLOW_TOP_FIELD = "FOLLOW_TOP_FIELD",
435
- PROGRESSIVE = "PROGRESSIVE",
436
- TOP_FIELD = "TOP_FIELD",
437
- }
438
- export declare enum AvcIntraScanTypeConversionMode {
439
- INTERLACED = "INTERLACED",
440
- INTERLACED_OPTIMIZE = "INTERLACED_OPTIMIZE",
441
- }
442
- export declare enum AvcIntraSlowPal {
443
- DISABLED = "DISABLED",
444
- ENABLED = "ENABLED",
445
- }
446
- export declare enum AvcIntraTelecine {
447
- HARD = "HARD",
448
- NONE = "NONE",
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 enum VideoCodec {
463
- AV1 = "AV1",
464
- AVC_INTRA = "AVC_INTRA",
465
- FRAME_CAPTURE = "FRAME_CAPTURE",
466
- H_264 = "H_264",
467
- H_265 = "H_265",
468
- MPEG2 = "MPEG2",
469
- PRORES = "PRORES",
470
- VC3 = "VC3",
471
- VP8 = "VP8",
472
- VP9 = "VP9",
473
- XAVC = "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 enum H264AdaptiveQuantization {
482
- AUTO = "AUTO",
483
- HIGH = "HIGH",
484
- HIGHER = "HIGHER",
485
- LOW = "LOW",
486
- MAX = "MAX",
487
- MEDIUM = "MEDIUM",
488
- OFF = "OFF",
489
- }
490
- export declare enum BandwidthReductionFilterSharpening {
491
- HIGH = "HIGH",
492
- LOW = "LOW",
493
- MEDIUM = "MEDIUM",
494
- OFF = "OFF",
495
- }
496
- export declare enum BandwidthReductionFilterStrength {
497
- AUTO = "AUTO",
498
- HIGH = "HIGH",
499
- LOW = "LOW",
500
- MEDIUM = "MEDIUM",
501
- OFF = "OFF",
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 enum H264CodecLevel {
508
- AUTO = "AUTO",
509
- LEVEL_1 = "LEVEL_1",
510
- LEVEL_1_1 = "LEVEL_1_1",
511
- LEVEL_1_2 = "LEVEL_1_2",
512
- LEVEL_1_3 = "LEVEL_1_3",
513
- LEVEL_2 = "LEVEL_2",
514
- LEVEL_2_1 = "LEVEL_2_1",
515
- LEVEL_2_2 = "LEVEL_2_2",
516
- LEVEL_3 = "LEVEL_3",
517
- LEVEL_3_1 = "LEVEL_3_1",
518
- LEVEL_3_2 = "LEVEL_3_2",
519
- LEVEL_4 = "LEVEL_4",
520
- LEVEL_4_1 = "LEVEL_4_1",
521
- LEVEL_4_2 = "LEVEL_4_2",
522
- LEVEL_5 = "LEVEL_5",
523
- LEVEL_5_1 = "LEVEL_5_1",
524
- LEVEL_5_2 = "LEVEL_5_2",
525
- }
526
- export declare enum H264CodecProfile {
527
- BASELINE = "BASELINE",
528
- HIGH = "HIGH",
529
- HIGH_10BIT = "HIGH_10BIT",
530
- HIGH_422 = "HIGH_422",
531
- HIGH_422_10BIT = "HIGH_422_10BIT",
532
- MAIN = "MAIN",
533
- }
534
- export declare enum H264DynamicSubGop {
535
- ADAPTIVE = "ADAPTIVE",
536
- STATIC = "STATIC",
537
- }
538
- export declare enum H264EntropyEncoding {
539
- CABAC = "CABAC",
540
- CAVLC = "CAVLC",
541
- }
542
- export declare enum H264FieldEncoding {
543
- FORCE_FIELD = "FORCE_FIELD",
544
- MBAFF = "MBAFF",
545
- PAFF = "PAFF",
546
- }
547
- export declare enum H264FlickerAdaptiveQuantization {
548
- DISABLED = "DISABLED",
549
- ENABLED = "ENABLED",
550
- }
551
- export declare enum H264FramerateControl {
552
- INITIALIZE_FROM_SOURCE = "INITIALIZE_FROM_SOURCE",
553
- SPECIFIED = "SPECIFIED",
554
- }
555
- export declare enum H264FramerateConversionAlgorithm {
556
- DUPLICATE_DROP = "DUPLICATE_DROP",
557
- FRAMEFORMER = "FRAMEFORMER",
558
- INTERPOLATE = "INTERPOLATE",
559
- }
560
- export declare enum H264GopBReference {
561
- DISABLED = "DISABLED",
562
- ENABLED = "ENABLED",
563
- }
564
- export declare enum H264GopSizeUnits {
565
- AUTO = "AUTO",
566
- FRAMES = "FRAMES",
567
- SECONDS = "SECONDS",
568
- }
569
- export declare enum H264InterlaceMode {
570
- BOTTOM_FIELD = "BOTTOM_FIELD",
571
- FOLLOW_BOTTOM_FIELD = "FOLLOW_BOTTOM_FIELD",
572
- FOLLOW_TOP_FIELD = "FOLLOW_TOP_FIELD",
573
- PROGRESSIVE = "PROGRESSIVE",
574
- TOP_FIELD = "TOP_FIELD",
575
- }
576
- export declare enum H264ParControl {
577
- INITIALIZE_FROM_SOURCE = "INITIALIZE_FROM_SOURCE",
578
- SPECIFIED = "SPECIFIED",
579
- }
580
- export declare enum H264QualityTuningLevel {
581
- MULTI_PASS_HQ = "MULTI_PASS_HQ",
582
- SINGLE_PASS = "SINGLE_PASS",
583
- SINGLE_PASS_HQ = "SINGLE_PASS_HQ",
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 enum H264RateControlMode {
591
- CBR = "CBR",
592
- QVBR = "QVBR",
593
- VBR = "VBR",
594
- }
595
- export declare enum H264RepeatPps {
596
- DISABLED = "DISABLED",
597
- ENABLED = "ENABLED",
598
- }
599
- export declare enum H264ScanTypeConversionMode {
600
- INTERLACED = "INTERLACED",
601
- INTERLACED_OPTIMIZE = "INTERLACED_OPTIMIZE",
602
- }
603
- export declare enum H264SceneChangeDetect {
604
- DISABLED = "DISABLED",
605
- ENABLED = "ENABLED",
606
- TRANSITION_DETECTION = "TRANSITION_DETECTION",
607
- }
608
- export declare enum H264SlowPal {
609
- DISABLED = "DISABLED",
610
- ENABLED = "ENABLED",
611
- }
612
- export declare enum H264SpatialAdaptiveQuantization {
613
- DISABLED = "DISABLED",
614
- ENABLED = "ENABLED",
615
- }
616
- export declare enum H264Syntax {
617
- DEFAULT = "DEFAULT",
618
- RP2027 = "RP2027",
619
- }
620
- export declare enum H264Telecine {
621
- HARD = "HARD",
622
- NONE = "NONE",
623
- SOFT = "SOFT",
624
- }
625
- export declare enum H264TemporalAdaptiveQuantization {
626
- DISABLED = "DISABLED",
627
- ENABLED = "ENABLED",
628
- }
629
- export declare enum H264UnregisteredSeiTimecode {
630
- DISABLED = "DISABLED",
631
- ENABLED = "ENABLED",
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 enum H265AdaptiveQuantization {
678
- AUTO = "AUTO",
679
- HIGH = "HIGH",
680
- HIGHER = "HIGHER",
681
- LOW = "LOW",
682
- MAX = "MAX",
683
- MEDIUM = "MEDIUM",
684
- OFF = "OFF",
685
- }
686
- export declare enum H265AlternateTransferFunctionSei {
687
- DISABLED = "DISABLED",
688
- ENABLED = "ENABLED",
689
- }
690
- export declare enum H265CodecLevel {
691
- AUTO = "AUTO",
692
- LEVEL_1 = "LEVEL_1",
693
- LEVEL_2 = "LEVEL_2",
694
- LEVEL_2_1 = "LEVEL_2_1",
695
- LEVEL_3 = "LEVEL_3",
696
- LEVEL_3_1 = "LEVEL_3_1",
697
- LEVEL_4 = "LEVEL_4",
698
- LEVEL_4_1 = "LEVEL_4_1",
699
- LEVEL_5 = "LEVEL_5",
700
- LEVEL_5_1 = "LEVEL_5_1",
701
- LEVEL_5_2 = "LEVEL_5_2",
702
- LEVEL_6 = "LEVEL_6",
703
- LEVEL_6_1 = "LEVEL_6_1",
704
- LEVEL_6_2 = "LEVEL_6_2",
705
- }
706
- export declare enum H265CodecProfile {
707
- MAIN10_HIGH = "MAIN10_HIGH",
708
- MAIN10_MAIN = "MAIN10_MAIN",
709
- MAIN_422_10BIT_HIGH = "MAIN_422_10BIT_HIGH",
710
- MAIN_422_10BIT_MAIN = "MAIN_422_10BIT_MAIN",
711
- MAIN_422_8BIT_HIGH = "MAIN_422_8BIT_HIGH",
712
- MAIN_422_8BIT_MAIN = "MAIN_422_8BIT_MAIN",
713
- MAIN_HIGH = "MAIN_HIGH",
714
- MAIN_MAIN = "MAIN_MAIN",
715
- }
716
- export declare enum H265DynamicSubGop {
717
- ADAPTIVE = "ADAPTIVE",
718
- STATIC = "STATIC",
719
- }
720
- export declare enum H265FlickerAdaptiveQuantization {
721
- DISABLED = "DISABLED",
722
- ENABLED = "ENABLED",
723
- }
724
- export declare enum H265FramerateControl {
725
- INITIALIZE_FROM_SOURCE = "INITIALIZE_FROM_SOURCE",
726
- SPECIFIED = "SPECIFIED",
727
- }
728
- export declare enum H265FramerateConversionAlgorithm {
729
- DUPLICATE_DROP = "DUPLICATE_DROP",
730
- FRAMEFORMER = "FRAMEFORMER",
731
- INTERPOLATE = "INTERPOLATE",
732
- }
733
- export declare enum H265GopBReference {
734
- DISABLED = "DISABLED",
735
- ENABLED = "ENABLED",
736
- }
737
- export declare enum H265GopSizeUnits {
738
- AUTO = "AUTO",
739
- FRAMES = "FRAMES",
740
- SECONDS = "SECONDS",
741
- }
742
- export declare enum H265InterlaceMode {
743
- BOTTOM_FIELD = "BOTTOM_FIELD",
744
- FOLLOW_BOTTOM_FIELD = "FOLLOW_BOTTOM_FIELD",
745
- FOLLOW_TOP_FIELD = "FOLLOW_TOP_FIELD",
746
- PROGRESSIVE = "PROGRESSIVE",
747
- TOP_FIELD = "TOP_FIELD",
748
- }
749
- export declare enum H265ParControl {
750
- INITIALIZE_FROM_SOURCE = "INITIALIZE_FROM_SOURCE",
751
- SPECIFIED = "SPECIFIED",
752
- }
753
- export declare enum H265QualityTuningLevel {
754
- MULTI_PASS_HQ = "MULTI_PASS_HQ",
755
- SINGLE_PASS = "SINGLE_PASS",
756
- SINGLE_PASS_HQ = "SINGLE_PASS_HQ",
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 enum H265RateControlMode {
764
- CBR = "CBR",
765
- QVBR = "QVBR",
766
- VBR = "VBR",
767
- }
768
- export declare enum H265SampleAdaptiveOffsetFilterMode {
769
- ADAPTIVE = "ADAPTIVE",
770
- DEFAULT = "DEFAULT",
771
- OFF = "OFF",
772
- }
773
- export declare enum H265ScanTypeConversionMode {
774
- INTERLACED = "INTERLACED",
775
- INTERLACED_OPTIMIZE = "INTERLACED_OPTIMIZE",
776
- }
777
- export declare enum H265SceneChangeDetect {
778
- DISABLED = "DISABLED",
779
- ENABLED = "ENABLED",
780
- TRANSITION_DETECTION = "TRANSITION_DETECTION",
781
- }
782
- export declare enum H265SlowPal {
783
- DISABLED = "DISABLED",
784
- ENABLED = "ENABLED",
785
- }
786
- export declare enum H265SpatialAdaptiveQuantization {
787
- DISABLED = "DISABLED",
788
- ENABLED = "ENABLED",
789
- }
790
- export declare enum H265Telecine {
791
- HARD = "HARD",
792
- NONE = "NONE",
793
- SOFT = "SOFT",
794
- }
795
- export declare enum H265TemporalAdaptiveQuantization {
796
- DISABLED = "DISABLED",
797
- ENABLED = "ENABLED",
798
- }
799
- export declare enum H265TemporalIds {
800
- DISABLED = "DISABLED",
801
- ENABLED = "ENABLED",
802
- }
803
- export declare enum H265Tiles {
804
- DISABLED = "DISABLED",
805
- ENABLED = "ENABLED",
806
- }
807
- export declare enum H265UnregisteredSeiTimecode {
808
- DISABLED = "DISABLED",
809
- ENABLED = "ENABLED",
810
- }
811
- export declare enum H265WriteMp4PackagingType {
812
- HEV1 = "HEV1",
813
- HVC1 = "HVC1",
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 enum Mpeg2AdaptiveQuantization {
859
- HIGH = "HIGH",
860
- LOW = "LOW",
861
- MEDIUM = "MEDIUM",
862
- OFF = "OFF",
863
- }
864
- export declare enum Mpeg2CodecLevel {
865
- AUTO = "AUTO",
866
- HIGH = "HIGH",
867
- HIGH1440 = "HIGH1440",
868
- LOW = "LOW",
869
- MAIN = "MAIN",
870
- }
871
- export declare enum Mpeg2CodecProfile {
872
- MAIN = "MAIN",
873
- PROFILE_422 = "PROFILE_422",
874
- }
875
- export declare enum Mpeg2DynamicSubGop {
876
- ADAPTIVE = "ADAPTIVE",
877
- STATIC = "STATIC",
878
- }
879
- export declare enum Mpeg2FramerateControl {
880
- INITIALIZE_FROM_SOURCE = "INITIALIZE_FROM_SOURCE",
881
- SPECIFIED = "SPECIFIED",
882
- }
883
- export declare enum Mpeg2FramerateConversionAlgorithm {
884
- DUPLICATE_DROP = "DUPLICATE_DROP",
885
- FRAMEFORMER = "FRAMEFORMER",
886
- INTERPOLATE = "INTERPOLATE",
887
- }
888
- export declare enum Mpeg2GopSizeUnits {
889
- FRAMES = "FRAMES",
890
- SECONDS = "SECONDS",
891
- }
892
- export declare enum Mpeg2InterlaceMode {
893
- BOTTOM_FIELD = "BOTTOM_FIELD",
894
- FOLLOW_BOTTOM_FIELD = "FOLLOW_BOTTOM_FIELD",
895
- FOLLOW_TOP_FIELD = "FOLLOW_TOP_FIELD",
896
- PROGRESSIVE = "PROGRESSIVE",
897
- TOP_FIELD = "TOP_FIELD",
898
- }
899
- export declare enum Mpeg2IntraDcPrecision {
900
- AUTO = "AUTO",
901
- INTRA_DC_PRECISION_10 = "INTRA_DC_PRECISION_10",
902
- INTRA_DC_PRECISION_11 = "INTRA_DC_PRECISION_11",
903
- INTRA_DC_PRECISION_8 = "INTRA_DC_PRECISION_8",
904
- INTRA_DC_PRECISION_9 = "INTRA_DC_PRECISION_9",
905
- }
906
- export declare enum Mpeg2ParControl {
907
- INITIALIZE_FROM_SOURCE = "INITIALIZE_FROM_SOURCE",
908
- SPECIFIED = "SPECIFIED",
909
- }
910
- export declare enum Mpeg2QualityTuningLevel {
911
- MULTI_PASS = "MULTI_PASS",
912
- SINGLE_PASS = "SINGLE_PASS",
913
- }
914
- export declare enum Mpeg2RateControlMode {
915
- CBR = "CBR",
916
- VBR = "VBR",
917
- }
918
- export declare enum Mpeg2ScanTypeConversionMode {
919
- INTERLACED = "INTERLACED",
920
- INTERLACED_OPTIMIZE = "INTERLACED_OPTIMIZE",
921
- }
922
- export declare enum Mpeg2SceneChangeDetect {
923
- DISABLED = "DISABLED",
924
- ENABLED = "ENABLED",
925
- }
926
- export declare enum Mpeg2SlowPal {
927
- DISABLED = "DISABLED",
928
- ENABLED = "ENABLED",
929
- }
930
- export declare enum Mpeg2SpatialAdaptiveQuantization {
931
- DISABLED = "DISABLED",
932
- ENABLED = "ENABLED",
933
- }
934
- export declare enum Mpeg2Syntax {
935
- DEFAULT = "DEFAULT",
936
- D_10 = "D_10",
937
- }
938
- export declare enum Mpeg2Telecine {
939
- HARD = "HARD",
940
- NONE = "NONE",
941
- SOFT = "SOFT",
942
- }
943
- export declare enum Mpeg2TemporalAdaptiveQuantization {
944
- DISABLED = "DISABLED",
945
- ENABLED = "ENABLED",
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 enum ProresChromaSampling {
983
- PRESERVE_444_SAMPLING = "PRESERVE_444_SAMPLING",
984
- SUBSAMPLE_TO_422 = "SUBSAMPLE_TO_422",
985
- }
986
- export declare enum ProresCodecProfile {
987
- APPLE_PRORES_422 = "APPLE_PRORES_422",
988
- APPLE_PRORES_422_HQ = "APPLE_PRORES_422_HQ",
989
- APPLE_PRORES_422_LT = "APPLE_PRORES_422_LT",
990
- APPLE_PRORES_422_PROXY = "APPLE_PRORES_422_PROXY",
991
- APPLE_PRORES_4444 = "APPLE_PRORES_4444",
992
- APPLE_PRORES_4444_XQ = "APPLE_PRORES_4444_XQ",
993
- }
994
- export declare enum ProresFramerateControl {
995
- INITIALIZE_FROM_SOURCE = "INITIALIZE_FROM_SOURCE",
996
- SPECIFIED = "SPECIFIED",
997
- }
998
- export declare enum ProresFramerateConversionAlgorithm {
999
- DUPLICATE_DROP = "DUPLICATE_DROP",
1000
- FRAMEFORMER = "FRAMEFORMER",
1001
- INTERPOLATE = "INTERPOLATE",
1002
- }
1003
- export declare enum ProresInterlaceMode {
1004
- BOTTOM_FIELD = "BOTTOM_FIELD",
1005
- FOLLOW_BOTTOM_FIELD = "FOLLOW_BOTTOM_FIELD",
1006
- FOLLOW_TOP_FIELD = "FOLLOW_TOP_FIELD",
1007
- PROGRESSIVE = "PROGRESSIVE",
1008
- TOP_FIELD = "TOP_FIELD",
1009
- }
1010
- export declare enum ProresParControl {
1011
- INITIALIZE_FROM_SOURCE = "INITIALIZE_FROM_SOURCE",
1012
- SPECIFIED = "SPECIFIED",
1013
- }
1014
- export declare enum ProresScanTypeConversionMode {
1015
- INTERLACED = "INTERLACED",
1016
- INTERLACED_OPTIMIZE = "INTERLACED_OPTIMIZE",
1017
- }
1018
- export declare enum ProresSlowPal {
1019
- DISABLED = "DISABLED",
1020
- ENABLED = "ENABLED",
1021
- }
1022
- export declare enum ProresTelecine {
1023
- HARD = "HARD",
1024
- NONE = "NONE",
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 enum Vc3FramerateControl {
1042
- INITIALIZE_FROM_SOURCE = "INITIALIZE_FROM_SOURCE",
1043
- SPECIFIED = "SPECIFIED",
1044
- }
1045
- export declare enum Vc3FramerateConversionAlgorithm {
1046
- DUPLICATE_DROP = "DUPLICATE_DROP",
1047
- FRAMEFORMER = "FRAMEFORMER",
1048
- INTERPOLATE = "INTERPOLATE",
1049
- }
1050
- export declare enum Vc3InterlaceMode {
1051
- INTERLACED = "INTERLACED",
1052
- PROGRESSIVE = "PROGRESSIVE",
1053
- }
1054
- export declare enum Vc3ScanTypeConversionMode {
1055
- INTERLACED = "INTERLACED",
1056
- INTERLACED_OPTIMIZE = "INTERLACED_OPTIMIZE",
1057
- }
1058
- export declare enum Vc3SlowPal {
1059
- DISABLED = "DISABLED",
1060
- ENABLED = "ENABLED",
1061
- }
1062
- export declare enum Vc3Telecine {
1063
- HARD = "HARD",
1064
- NONE = "NONE",
1065
- }
1066
- export declare enum Vc3Class {
1067
- CLASS_145_8BIT = "CLASS_145_8BIT",
1068
- CLASS_220_10BIT = "CLASS_220_10BIT",
1069
- CLASS_220_8BIT = "CLASS_220_8BIT",
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 enum Vp8FramerateControl {
1083
- INITIALIZE_FROM_SOURCE = "INITIALIZE_FROM_SOURCE",
1084
- SPECIFIED = "SPECIFIED",
1085
- }
1086
- export declare enum Vp8FramerateConversionAlgorithm {
1087
- DUPLICATE_DROP = "DUPLICATE_DROP",
1088
- FRAMEFORMER = "FRAMEFORMER",
1089
- INTERPOLATE = "INTERPOLATE",
1090
- }
1091
- export declare enum Vp8ParControl {
1092
- INITIALIZE_FROM_SOURCE = "INITIALIZE_FROM_SOURCE",
1093
- SPECIFIED = "SPECIFIED",
1094
- }
1095
- export declare enum Vp8QualityTuningLevel {
1096
- MULTI_PASS = "MULTI_PASS",
1097
- MULTI_PASS_HQ = "MULTI_PASS_HQ",
1098
- }
1099
- export declare enum Vp8RateControlMode {
1100
- VBR = "VBR",
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 enum Vp9FramerateControl {
1118
- INITIALIZE_FROM_SOURCE = "INITIALIZE_FROM_SOURCE",
1119
- SPECIFIED = "SPECIFIED",
1120
- }
1121
- export declare enum Vp9FramerateConversionAlgorithm {
1122
- DUPLICATE_DROP = "DUPLICATE_DROP",
1123
- FRAMEFORMER = "FRAMEFORMER",
1124
- INTERPOLATE = "INTERPOLATE",
1125
- }
1126
- export declare enum Vp9ParControl {
1127
- INITIALIZE_FROM_SOURCE = "INITIALIZE_FROM_SOURCE",
1128
- SPECIFIED = "SPECIFIED",
1129
- }
1130
- export declare enum Vp9QualityTuningLevel {
1131
- MULTI_PASS = "MULTI_PASS",
1132
- MULTI_PASS_HQ = "MULTI_PASS_HQ",
1133
- }
1134
- export declare enum Vp9RateControlMode {
1135
- VBR = "VBR",
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 enum XavcAdaptiveQuantization {
1153
- AUTO = "AUTO",
1154
- HIGH = "HIGH",
1155
- HIGHER = "HIGHER",
1156
- LOW = "LOW",
1157
- MAX = "MAX",
1158
- MEDIUM = "MEDIUM",
1159
- OFF = "OFF",
1160
- }
1161
- export declare enum XavcEntropyEncoding {
1162
- AUTO = "AUTO",
1163
- CABAC = "CABAC",
1164
- CAVLC = "CAVLC",
1165
- }
1166
- export declare enum XavcFramerateControl {
1167
- INITIALIZE_FROM_SOURCE = "INITIALIZE_FROM_SOURCE",
1168
- SPECIFIED = "SPECIFIED",
1169
- }
1170
- export declare enum XavcFramerateConversionAlgorithm {
1171
- DUPLICATE_DROP = "DUPLICATE_DROP",
1172
- FRAMEFORMER = "FRAMEFORMER",
1173
- INTERPOLATE = "INTERPOLATE",
1174
- }
1175
- export declare enum XavcProfile {
1176
- XAVC_4K = "XAVC_4K",
1177
- XAVC_4K_INTRA_CBG = "XAVC_4K_INTRA_CBG",
1178
- XAVC_4K_INTRA_VBR = "XAVC_4K_INTRA_VBR",
1179
- XAVC_HD = "XAVC_HD",
1180
- XAVC_HD_INTRA_CBG = "XAVC_HD_INTRA_CBG",
1181
- }
1182
- export declare enum XavcSlowPal {
1183
- DISABLED = "DISABLED",
1184
- ENABLED = "ENABLED",
1185
- }
1186
- export declare enum XavcSpatialAdaptiveQuantization {
1187
- DISABLED = "DISABLED",
1188
- ENABLED = "ENABLED",
1189
- }
1190
- export declare enum XavcTemporalAdaptiveQuantization {
1191
- DISABLED = "DISABLED",
1192
- ENABLED = "ENABLED",
1193
- }
1194
- export declare enum Xavc4kIntraCbgProfileClass {
1195
- CLASS_100 = "CLASS_100",
1196
- CLASS_300 = "CLASS_300",
1197
- CLASS_480 = "CLASS_480",
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 enum Xavc4kIntraVbrProfileClass {
1203
- CLASS_100 = "CLASS_100",
1204
- CLASS_300 = "CLASS_300",
1205
- CLASS_480 = "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 enum Xavc4kProfileBitrateClass {
1211
- BITRATE_CLASS_100 = "BITRATE_CLASS_100",
1212
- BITRATE_CLASS_140 = "BITRATE_CLASS_140",
1213
- BITRATE_CLASS_200 = "BITRATE_CLASS_200",
1214
- }
1215
- export declare enum Xavc4kProfileCodecProfile {
1216
- HIGH = "HIGH",
1217
- HIGH_422 = "HIGH_422",
1218
- }
1219
- export declare enum XavcFlickerAdaptiveQuantization {
1220
- DISABLED = "DISABLED",
1221
- ENABLED = "ENABLED",
1222
- }
1223
- export declare enum XavcGopBReference {
1224
- DISABLED = "DISABLED",
1225
- ENABLED = "ENABLED",
1226
- }
1227
- export declare enum Xavc4kProfileQualityTuningLevel {
1228
- MULTI_PASS_HQ = "MULTI_PASS_HQ",
1229
- SINGLE_PASS = "SINGLE_PASS",
1230
- SINGLE_PASS_HQ = "SINGLE_PASS_HQ",
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 enum XavcHdIntraCbgProfileClass {
1243
- CLASS_100 = "CLASS_100",
1244
- CLASS_200 = "CLASS_200",
1245
- CLASS_50 = "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 enum XavcHdProfileBitrateClass {
1251
- BITRATE_CLASS_25 = "BITRATE_CLASS_25",
1252
- BITRATE_CLASS_35 = "BITRATE_CLASS_35",
1253
- BITRATE_CLASS_50 = "BITRATE_CLASS_50",
1254
- }
1255
- export declare enum XavcInterlaceMode {
1256
- BOTTOM_FIELD = "BOTTOM_FIELD",
1257
- FOLLOW_BOTTOM_FIELD = "FOLLOW_BOTTOM_FIELD",
1258
- FOLLOW_TOP_FIELD = "FOLLOW_TOP_FIELD",
1259
- PROGRESSIVE = "PROGRESSIVE",
1260
- TOP_FIELD = "TOP_FIELD",
1261
- }
1262
- export declare enum XavcHdProfileQualityTuningLevel {
1263
- MULTI_PASS_HQ = "MULTI_PASS_HQ",
1264
- SINGLE_PASS = "SINGLE_PASS",
1265
- SINGLE_PASS_HQ = "SINGLE_PASS_HQ",
1266
- }
1267
- export declare enum XavcHdProfileTelecine {
1268
- HARD = "HARD",
1269
- NONE = "NONE",
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 enum ColorMetadata {
1315
- IGNORE = "IGNORE",
1316
- INSERT = "INSERT",
1317
- }
1318
- export declare enum DropFrameTimecode {
1319
- DISABLED = "DISABLED",
1320
- ENABLED = "ENABLED",
1321
- }
1322
- export declare enum RespondToAfd {
1323
- NONE = "NONE",
1324
- PASSTHROUGH = "PASSTHROUGH",
1325
- RESPOND = "RESPOND",
1326
- }
1327
- export declare enum ScalingBehavior {
1328
- DEFAULT = "DEFAULT",
1329
- STRETCH_TO_OUTPUT = "STRETCH_TO_OUTPUT",
1330
- }
1331
- export declare enum VideoTimecodeInsertion {
1332
- DISABLED = "DISABLED",
1333
- PIC_TIMING_SEI = "PIC_TIMING_SEI",
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 enum ColorSpaceConversion {
1342
- FORCE_601 = "FORCE_601",
1343
- FORCE_709 = "FORCE_709",
1344
- FORCE_HDR10 = "FORCE_HDR10",
1345
- FORCE_HLG_2020 = "FORCE_HLG_2020",
1346
- FORCE_P3D65_HDR = "FORCE_P3D65_HDR",
1347
- FORCE_P3D65_SDR = "FORCE_P3D65_SDR",
1348
- FORCE_P3DCI = "FORCE_P3DCI",
1349
- NONE = "NONE",
1350
- }
1351
- export declare enum HDRToSDRToneMapper {
1352
- PRESERVE_DETAILS = "PRESERVE_DETAILS",
1353
- VIBRANT = "VIBRANT",
1354
- }
1355
- export declare enum SampleRangeConversion {
1356
- LIMITED_RANGE_CLIP = "LIMITED_RANGE_CLIP",
1357
- LIMITED_RANGE_SQUEEZE = "LIMITED_RANGE_SQUEEZE",
1358
- NONE = "NONE",
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 enum DeinterlaceAlgorithm {
1373
- BLEND = "BLEND",
1374
- BLEND_TICKER = "BLEND_TICKER",
1375
- INTERPOLATE = "INTERPOLATE",
1376
- INTERPOLATE_TICKER = "INTERPOLATE_TICKER",
1377
- }
1378
- export declare enum DeinterlacerControl {
1379
- FORCE_ALL_FRAMES = "FORCE_ALL_FRAMES",
1380
- NORMAL = "NORMAL",
1381
- }
1382
- export declare enum DeinterlacerMode {
1383
- ADAPTIVE = "ADAPTIVE",
1384
- DEINTERLACE = "DEINTERLACE",
1385
- INVERSE_TELECINE = "INVERSE_TELECINE",
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 enum DolbyVisionLevel6Mode {
1397
- PASSTHROUGH = "PASSTHROUGH",
1398
- RECALCULATE = "RECALCULATE",
1399
- SPECIFY = "SPECIFY",
1400
- }
1401
- export declare enum DolbyVisionMapping {
1402
- HDR10_1000 = "HDR10_1000",
1403
- HDR10_NOMAP = "HDR10_NOMAP",
1404
- }
1405
- export declare enum DolbyVisionProfile {
1406
- PROFILE_5 = "PROFILE_5",
1407
- PROFILE_8_1 = "PROFILE_8_1",
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 enum NoiseReducerFilter {
1420
- BILATERAL = "BILATERAL",
1421
- CONSERVE = "CONSERVE",
1422
- GAUSSIAN = "GAUSSIAN",
1423
- LANCZOS = "LANCZOS",
1424
- MEAN = "MEAN",
1425
- SHARPEN = "SHARPEN",
1426
- SPATIAL = "SPATIAL",
1427
- TEMPORAL = "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 enum NoiseFilterPostTemporalSharpening {
1438
- AUTO = "AUTO",
1439
- DISABLED = "DISABLED",
1440
- ENABLED = "ENABLED",
1441
- }
1442
- export declare enum NoiseFilterPostTemporalSharpeningStrength {
1443
- HIGH = "HIGH",
1444
- LOW = "LOW",
1445
- MEDIUM = "MEDIUM",
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 enum WatermarkingStrength {
1463
- DEFAULT = "DEFAULT",
1464
- LIGHTER = "LIGHTER",
1465
- LIGHTEST = "LIGHTEST",
1466
- STRONGER = "STRONGER",
1467
- STRONGEST = "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 enum TimecodeBurninPosition {
1479
- BOTTOM_CENTER = "BOTTOM_CENTER",
1480
- BOTTOM_LEFT = "BOTTOM_LEFT",
1481
- BOTTOM_RIGHT = "BOTTOM_RIGHT",
1482
- MIDDLE_CENTER = "MIDDLE_CENTER",
1483
- MIDDLE_LEFT = "MIDDLE_LEFT",
1484
- MIDDLE_RIGHT = "MIDDLE_RIGHT",
1485
- TOP_CENTER = "TOP_CENTER",
1486
- TOP_LEFT = "TOP_LEFT",
1487
- TOP_RIGHT = "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 enum TimecodeSource {
1539
- EMBEDDED = "EMBEDDED",
1540
- SPECIFIEDSTART = "SPECIFIEDSTART",
1541
- ZEROBASED = "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 enum SimulateReservedQueue {
1567
- DISABLED = "DISABLED",
1568
- ENABLED = "ENABLED",
1569
- }
1570
- export declare enum JobStatus {
1571
- CANCELED = "CANCELED",
1572
- COMPLETE = "COMPLETE",
1573
- ERROR = "ERROR",
1574
- PROGRESSING = "PROGRESSING",
1575
- SUBMITTED = "SUBMITTED",
1576
- }
1577
- export declare enum StatusUpdateInterval {
1578
- SECONDS_10 = "SECONDS_10",
1579
- SECONDS_12 = "SECONDS_12",
1580
- SECONDS_120 = "SECONDS_120",
1581
- SECONDS_15 = "SECONDS_15",
1582
- SECONDS_180 = "SECONDS_180",
1583
- SECONDS_20 = "SECONDS_20",
1584
- SECONDS_240 = "SECONDS_240",
1585
- SECONDS_30 = "SECONDS_30",
1586
- SECONDS_300 = "SECONDS_300",
1587
- SECONDS_360 = "SECONDS_360",
1588
- SECONDS_420 = "SECONDS_420",
1589
- SECONDS_480 = "SECONDS_480",
1590
- SECONDS_540 = "SECONDS_540",
1591
- SECONDS_60 = "SECONDS_60",
1592
- SECONDS_600 = "SECONDS_600",
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 enum Type {
1641
- CUSTOM = "CUSTOM",
1642
- SYSTEM = "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 enum PricingPlan {
1676
- ON_DEMAND = "ON_DEMAND",
1677
- RESERVED = "RESERVED",
1678
- }
1679
- export declare enum Commitment {
1680
- ONE_YEAR = "ONE_YEAR",
1681
- }
1682
- export declare enum RenewalType {
1683
- AUTO_RENEW = "AUTO_RENEW",
1684
- EXPIRE = "EXPIRE",
1685
- }
1686
- export declare enum ReservationPlanStatus {
1687
- ACTIVE = "ACTIVE",
1688
- EXPIRED = "EXPIRED",
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 enum QueueStatus {
1699
- ACTIVE = "ACTIVE",
1700
- PAUSED = "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 enum DescribeEndpointsMode {
1839
- DEFAULT = "DEFAULT",
1840
- GET_ONLY = "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;