@aws-sdk/client-mediaconvert 3.686.0 → 3.691.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-types/models/models_0.d.ts +623 -623
- package/dist-types/models/models_1.d.ts +573 -573
- package/dist-types/models/models_2.d.ts +128 -128
- package/dist-types/ts3.4/models/models_0.d.ts +644 -622
- package/dist-types/ts3.4/models/models_1.d.ts +579 -571
- package/dist-types/ts3.4/models/models_2.d.ts +128 -128
- package/package.json +7 -7
|
@@ -4,9 +4,9 @@ export declare const RequiredFlag: {
|
|
|
4
4
|
};
|
|
5
5
|
export type RequiredFlag = (typeof RequiredFlag)[keyof typeof RequiredFlag];
|
|
6
6
|
export interface AllowedRenditionSize {
|
|
7
|
-
Height?: number;
|
|
8
|
-
Required?: RequiredFlag;
|
|
9
|
-
Width?: number;
|
|
7
|
+
Height?: number | undefined;
|
|
8
|
+
Required?: RequiredFlag | undefined;
|
|
9
|
+
Width?: number | undefined;
|
|
10
10
|
}
|
|
11
11
|
export declare const AudioChannelTag: {
|
|
12
12
|
readonly C: "C";
|
|
@@ -41,8 +41,8 @@ export declare const AudioChannelTag: {
|
|
|
41
41
|
export type AudioChannelTag =
|
|
42
42
|
(typeof AudioChannelTag)[keyof typeof AudioChannelTag];
|
|
43
43
|
export interface AudioChannelTaggingSettings {
|
|
44
|
-
ChannelTag?: AudioChannelTag;
|
|
45
|
-
ChannelTags?: AudioChannelTag[];
|
|
44
|
+
ChannelTag?: AudioChannelTag | undefined;
|
|
45
|
+
ChannelTags?: AudioChannelTag[] | undefined;
|
|
46
46
|
}
|
|
47
47
|
export declare const AudioNormalizationAlgorithm: {
|
|
48
48
|
readonly ITU_BS_1770_1: "ITU_BS_1770_1";
|
|
@@ -71,13 +71,13 @@ export declare const AudioNormalizationPeakCalculation: {
|
|
|
71
71
|
export type AudioNormalizationPeakCalculation =
|
|
72
72
|
(typeof AudioNormalizationPeakCalculation)[keyof typeof AudioNormalizationPeakCalculation];
|
|
73
73
|
export interface AudioNormalizationSettings {
|
|
74
|
-
Algorithm?: AudioNormalizationAlgorithm;
|
|
75
|
-
AlgorithmControl?: AudioNormalizationAlgorithmControl;
|
|
76
|
-
CorrectionGateLevel?: number;
|
|
77
|
-
LoudnessLogging?: AudioNormalizationLoudnessLogging;
|
|
78
|
-
PeakCalculation?: AudioNormalizationPeakCalculation;
|
|
79
|
-
TargetLkfs?: number;
|
|
80
|
-
TruePeakLimiterThreshold?: number;
|
|
74
|
+
Algorithm?: AudioNormalizationAlgorithm | undefined;
|
|
75
|
+
AlgorithmControl?: AudioNormalizationAlgorithmControl | undefined;
|
|
76
|
+
CorrectionGateLevel?: number | undefined;
|
|
77
|
+
LoudnessLogging?: AudioNormalizationLoudnessLogging | undefined;
|
|
78
|
+
PeakCalculation?: AudioNormalizationPeakCalculation | undefined;
|
|
79
|
+
TargetLkfs?: number | undefined;
|
|
80
|
+
TruePeakLimiterThreshold?: number | undefined;
|
|
81
81
|
}
|
|
82
82
|
export declare const AudioTypeControl: {
|
|
83
83
|
readonly FOLLOW_INPUT: "FOLLOW_INPUT";
|
|
@@ -131,15 +131,17 @@ export declare const AacVbrQuality: {
|
|
|
131
131
|
};
|
|
132
132
|
export type AacVbrQuality = (typeof AacVbrQuality)[keyof typeof AacVbrQuality];
|
|
133
133
|
export interface AacSettings {
|
|
134
|
-
AudioDescriptionBroadcasterMix?:
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
134
|
+
AudioDescriptionBroadcasterMix?:
|
|
135
|
+
| AacAudioDescriptionBroadcasterMix
|
|
136
|
+
| undefined;
|
|
137
|
+
Bitrate?: number | undefined;
|
|
138
|
+
CodecProfile?: AacCodecProfile | undefined;
|
|
139
|
+
CodingMode?: AacCodingMode | undefined;
|
|
140
|
+
RateControlMode?: AacRateControlMode | undefined;
|
|
141
|
+
RawFormat?: AacRawFormat | undefined;
|
|
142
|
+
SampleRate?: number | undefined;
|
|
143
|
+
Specification?: AacSpecification | undefined;
|
|
144
|
+
VbrQuality?: AacVbrQuality | undefined;
|
|
143
145
|
}
|
|
144
146
|
export declare const Ac3BitstreamMode: {
|
|
145
147
|
readonly COMMENTARY: "COMMENTARY";
|
|
@@ -198,21 +200,23 @@ export declare const Ac3MetadataControl: {
|
|
|
198
200
|
export type Ac3MetadataControl =
|
|
199
201
|
(typeof Ac3MetadataControl)[keyof typeof Ac3MetadataControl];
|
|
200
202
|
export interface Ac3Settings {
|
|
201
|
-
Bitrate?: number;
|
|
202
|
-
BitstreamMode?: Ac3BitstreamMode;
|
|
203
|
-
CodingMode?: Ac3CodingMode;
|
|
204
|
-
Dialnorm?: number;
|
|
205
|
-
DynamicRangeCompressionLine?: Ac3DynamicRangeCompressionLine;
|
|
206
|
-
DynamicRangeCompressionProfile?:
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
203
|
+
Bitrate?: number | undefined;
|
|
204
|
+
BitstreamMode?: Ac3BitstreamMode | undefined;
|
|
205
|
+
CodingMode?: Ac3CodingMode | undefined;
|
|
206
|
+
Dialnorm?: number | undefined;
|
|
207
|
+
DynamicRangeCompressionLine?: Ac3DynamicRangeCompressionLine | undefined;
|
|
208
|
+
DynamicRangeCompressionProfile?:
|
|
209
|
+
| Ac3DynamicRangeCompressionProfile
|
|
210
|
+
| undefined;
|
|
211
|
+
DynamicRangeCompressionRf?: Ac3DynamicRangeCompressionRf | undefined;
|
|
212
|
+
LfeFilter?: Ac3LfeFilter | undefined;
|
|
213
|
+
MetadataControl?: Ac3MetadataControl | undefined;
|
|
214
|
+
SampleRate?: number | undefined;
|
|
211
215
|
}
|
|
212
216
|
export interface AiffSettings {
|
|
213
|
-
BitDepth?: number;
|
|
214
|
-
Channels?: number;
|
|
215
|
-
SampleRate?: number;
|
|
217
|
+
BitDepth?: number | undefined;
|
|
218
|
+
Channels?: number | undefined;
|
|
219
|
+
SampleRate?: number | undefined;
|
|
216
220
|
}
|
|
217
221
|
export declare const AudioCodec: {
|
|
218
222
|
readonly AAC: "AAC";
|
|
@@ -305,23 +309,25 @@ export declare const Eac3AtmosSurroundExMode: {
|
|
|
305
309
|
export type Eac3AtmosSurroundExMode =
|
|
306
310
|
(typeof Eac3AtmosSurroundExMode)[keyof typeof Eac3AtmosSurroundExMode];
|
|
307
311
|
export interface Eac3AtmosSettings {
|
|
308
|
-
Bitrate?: number;
|
|
309
|
-
BitstreamMode?: Eac3AtmosBitstreamMode;
|
|
310
|
-
CodingMode?: Eac3AtmosCodingMode;
|
|
311
|
-
DialogueIntelligence?: Eac3AtmosDialogueIntelligence;
|
|
312
|
-
DownmixControl?: Eac3AtmosDownmixControl;
|
|
313
|
-
DynamicRangeCompressionLine?:
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
312
|
+
Bitrate?: number | undefined;
|
|
313
|
+
BitstreamMode?: Eac3AtmosBitstreamMode | undefined;
|
|
314
|
+
CodingMode?: Eac3AtmosCodingMode | undefined;
|
|
315
|
+
DialogueIntelligence?: Eac3AtmosDialogueIntelligence | undefined;
|
|
316
|
+
DownmixControl?: Eac3AtmosDownmixControl | undefined;
|
|
317
|
+
DynamicRangeCompressionLine?:
|
|
318
|
+
| Eac3AtmosDynamicRangeCompressionLine
|
|
319
|
+
| undefined;
|
|
320
|
+
DynamicRangeCompressionRf?: Eac3AtmosDynamicRangeCompressionRf | undefined;
|
|
321
|
+
DynamicRangeControl?: Eac3AtmosDynamicRangeControl | undefined;
|
|
322
|
+
LoRoCenterMixLevel?: number | undefined;
|
|
323
|
+
LoRoSurroundMixLevel?: number | undefined;
|
|
324
|
+
LtRtCenterMixLevel?: number | undefined;
|
|
325
|
+
LtRtSurroundMixLevel?: number | undefined;
|
|
326
|
+
MeteringMode?: Eac3AtmosMeteringMode | undefined;
|
|
327
|
+
SampleRate?: number | undefined;
|
|
328
|
+
SpeechThreshold?: number | undefined;
|
|
329
|
+
StereoDownmix?: Eac3AtmosStereoDownmix | undefined;
|
|
330
|
+
SurroundExMode?: Eac3AtmosSurroundExMode | undefined;
|
|
325
331
|
}
|
|
326
332
|
export declare const Eac3AttenuationControl: {
|
|
327
333
|
readonly ATTENUATE_3_DB: "ATTENUATE_3_DB";
|
|
@@ -422,37 +428,37 @@ export declare const Eac3SurroundMode: {
|
|
|
422
428
|
export type Eac3SurroundMode =
|
|
423
429
|
(typeof Eac3SurroundMode)[keyof typeof Eac3SurroundMode];
|
|
424
430
|
export interface Eac3Settings {
|
|
425
|
-
AttenuationControl?: Eac3AttenuationControl;
|
|
426
|
-
Bitrate?: number;
|
|
427
|
-
BitstreamMode?: Eac3BitstreamMode;
|
|
428
|
-
CodingMode?: Eac3CodingMode;
|
|
429
|
-
DcFilter?: Eac3DcFilter;
|
|
430
|
-
Dialnorm?: number;
|
|
431
|
-
DynamicRangeCompressionLine?: Eac3DynamicRangeCompressionLine;
|
|
432
|
-
DynamicRangeCompressionRf?: Eac3DynamicRangeCompressionRf;
|
|
433
|
-
LfeControl?: Eac3LfeControl;
|
|
434
|
-
LfeFilter?: Eac3LfeFilter;
|
|
435
|
-
LoRoCenterMixLevel?: number;
|
|
436
|
-
LoRoSurroundMixLevel?: number;
|
|
437
|
-
LtRtCenterMixLevel?: number;
|
|
438
|
-
LtRtSurroundMixLevel?: number;
|
|
439
|
-
MetadataControl?: Eac3MetadataControl;
|
|
440
|
-
PassthroughControl?: Eac3PassthroughControl;
|
|
441
|
-
PhaseControl?: Eac3PhaseControl;
|
|
442
|
-
SampleRate?: number;
|
|
443
|
-
StereoDownmix?: Eac3StereoDownmix;
|
|
444
|
-
SurroundExMode?: Eac3SurroundExMode;
|
|
445
|
-
SurroundMode?: Eac3SurroundMode;
|
|
431
|
+
AttenuationControl?: Eac3AttenuationControl | undefined;
|
|
432
|
+
Bitrate?: number | undefined;
|
|
433
|
+
BitstreamMode?: Eac3BitstreamMode | undefined;
|
|
434
|
+
CodingMode?: Eac3CodingMode | undefined;
|
|
435
|
+
DcFilter?: Eac3DcFilter | undefined;
|
|
436
|
+
Dialnorm?: number | undefined;
|
|
437
|
+
DynamicRangeCompressionLine?: Eac3DynamicRangeCompressionLine | undefined;
|
|
438
|
+
DynamicRangeCompressionRf?: Eac3DynamicRangeCompressionRf | undefined;
|
|
439
|
+
LfeControl?: Eac3LfeControl | undefined;
|
|
440
|
+
LfeFilter?: Eac3LfeFilter | undefined;
|
|
441
|
+
LoRoCenterMixLevel?: number | undefined;
|
|
442
|
+
LoRoSurroundMixLevel?: number | undefined;
|
|
443
|
+
LtRtCenterMixLevel?: number | undefined;
|
|
444
|
+
LtRtSurroundMixLevel?: number | undefined;
|
|
445
|
+
MetadataControl?: Eac3MetadataControl | undefined;
|
|
446
|
+
PassthroughControl?: Eac3PassthroughControl | undefined;
|
|
447
|
+
PhaseControl?: Eac3PhaseControl | undefined;
|
|
448
|
+
SampleRate?: number | undefined;
|
|
449
|
+
StereoDownmix?: Eac3StereoDownmix | undefined;
|
|
450
|
+
SurroundExMode?: Eac3SurroundExMode | undefined;
|
|
451
|
+
SurroundMode?: Eac3SurroundMode | undefined;
|
|
446
452
|
}
|
|
447
453
|
export interface FlacSettings {
|
|
448
|
-
BitDepth?: number;
|
|
449
|
-
Channels?: number;
|
|
450
|
-
SampleRate?: number;
|
|
454
|
+
BitDepth?: number | undefined;
|
|
455
|
+
Channels?: number | undefined;
|
|
456
|
+
SampleRate?: number | undefined;
|
|
451
457
|
}
|
|
452
458
|
export interface Mp2Settings {
|
|
453
|
-
Bitrate?: number;
|
|
454
|
-
Channels?: number;
|
|
455
|
-
SampleRate?: number;
|
|
459
|
+
Bitrate?: number | undefined;
|
|
460
|
+
Channels?: number | undefined;
|
|
461
|
+
SampleRate?: number | undefined;
|
|
456
462
|
}
|
|
457
463
|
export declare const Mp3RateControlMode: {
|
|
458
464
|
readonly CBR: "CBR";
|
|
@@ -461,21 +467,21 @@ export declare const Mp3RateControlMode: {
|
|
|
461
467
|
export type Mp3RateControlMode =
|
|
462
468
|
(typeof Mp3RateControlMode)[keyof typeof Mp3RateControlMode];
|
|
463
469
|
export interface Mp3Settings {
|
|
464
|
-
Bitrate?: number;
|
|
465
|
-
Channels?: number;
|
|
466
|
-
RateControlMode?: Mp3RateControlMode;
|
|
467
|
-
SampleRate?: number;
|
|
468
|
-
VbrQuality?: number;
|
|
470
|
+
Bitrate?: number | undefined;
|
|
471
|
+
Channels?: number | undefined;
|
|
472
|
+
RateControlMode?: Mp3RateControlMode | undefined;
|
|
473
|
+
SampleRate?: number | undefined;
|
|
474
|
+
VbrQuality?: number | undefined;
|
|
469
475
|
}
|
|
470
476
|
export interface OpusSettings {
|
|
471
|
-
Bitrate?: number;
|
|
472
|
-
Channels?: number;
|
|
473
|
-
SampleRate?: number;
|
|
477
|
+
Bitrate?: number | undefined;
|
|
478
|
+
Channels?: number | undefined;
|
|
479
|
+
SampleRate?: number | undefined;
|
|
474
480
|
}
|
|
475
481
|
export interface VorbisSettings {
|
|
476
|
-
Channels?: number;
|
|
477
|
-
SampleRate?: number;
|
|
478
|
-
VbrQuality?: number;
|
|
482
|
+
Channels?: number | undefined;
|
|
483
|
+
SampleRate?: number | undefined;
|
|
484
|
+
VbrQuality?: number | undefined;
|
|
479
485
|
}
|
|
480
486
|
export declare const WavFormat: {
|
|
481
487
|
readonly RF64: "RF64";
|
|
@@ -483,24 +489,24 @@ export declare const WavFormat: {
|
|
|
483
489
|
};
|
|
484
490
|
export type WavFormat = (typeof WavFormat)[keyof typeof WavFormat];
|
|
485
491
|
export interface WavSettings {
|
|
486
|
-
BitDepth?: number;
|
|
487
|
-
Channels?: number;
|
|
488
|
-
Format?: WavFormat;
|
|
489
|
-
SampleRate?: number;
|
|
492
|
+
BitDepth?: number | undefined;
|
|
493
|
+
Channels?: number | undefined;
|
|
494
|
+
Format?: WavFormat | undefined;
|
|
495
|
+
SampleRate?: number | undefined;
|
|
490
496
|
}
|
|
491
497
|
export interface AudioCodecSettings {
|
|
492
|
-
AacSettings?: AacSettings;
|
|
493
|
-
Ac3Settings?: Ac3Settings;
|
|
494
|
-
AiffSettings?: AiffSettings;
|
|
495
|
-
Codec?: AudioCodec;
|
|
496
|
-
Eac3AtmosSettings?: Eac3AtmosSettings;
|
|
497
|
-
Eac3Settings?: Eac3Settings;
|
|
498
|
-
FlacSettings?: FlacSettings;
|
|
499
|
-
Mp2Settings?: Mp2Settings;
|
|
500
|
-
Mp3Settings?: Mp3Settings;
|
|
501
|
-
OpusSettings?: OpusSettings;
|
|
502
|
-
VorbisSettings?: VorbisSettings;
|
|
503
|
-
WavSettings?: WavSettings;
|
|
498
|
+
AacSettings?: AacSettings | undefined;
|
|
499
|
+
Ac3Settings?: Ac3Settings | undefined;
|
|
500
|
+
AiffSettings?: AiffSettings | undefined;
|
|
501
|
+
Codec?: AudioCodec | undefined;
|
|
502
|
+
Eac3AtmosSettings?: Eac3AtmosSettings | undefined;
|
|
503
|
+
Eac3Settings?: Eac3Settings | undefined;
|
|
504
|
+
FlacSettings?: FlacSettings | undefined;
|
|
505
|
+
Mp2Settings?: Mp2Settings | undefined;
|
|
506
|
+
Mp3Settings?: Mp3Settings | undefined;
|
|
507
|
+
OpusSettings?: OpusSettings | undefined;
|
|
508
|
+
VorbisSettings?: VorbisSettings | undefined;
|
|
509
|
+
WavSettings?: WavSettings | undefined;
|
|
504
510
|
}
|
|
505
511
|
export declare const LanguageCode: {
|
|
506
512
|
readonly AAR: "AAR";
|
|
@@ -704,43 +710,43 @@ export declare const AudioLanguageCodeControl: {
|
|
|
704
710
|
export type AudioLanguageCodeControl =
|
|
705
711
|
(typeof AudioLanguageCodeControl)[keyof typeof AudioLanguageCodeControl];
|
|
706
712
|
export interface OutputChannelMapping {
|
|
707
|
-
InputChannels?: number[];
|
|
708
|
-
InputChannelsFineTune?: number[];
|
|
713
|
+
InputChannels?: number[] | undefined;
|
|
714
|
+
InputChannelsFineTune?: number[] | undefined;
|
|
709
715
|
}
|
|
710
716
|
export interface ChannelMapping {
|
|
711
|
-
OutputChannels?: OutputChannelMapping[];
|
|
717
|
+
OutputChannels?: OutputChannelMapping[] | undefined;
|
|
712
718
|
}
|
|
713
719
|
export interface RemixSettings {
|
|
714
|
-
AudioDescriptionAudioChannel?: number;
|
|
715
|
-
AudioDescriptionDataChannel?: number;
|
|
716
|
-
ChannelMapping?: ChannelMapping;
|
|
717
|
-
ChannelsIn?: number;
|
|
718
|
-
ChannelsOut?: number;
|
|
720
|
+
AudioDescriptionAudioChannel?: number | undefined;
|
|
721
|
+
AudioDescriptionDataChannel?: number | undefined;
|
|
722
|
+
ChannelMapping?: ChannelMapping | undefined;
|
|
723
|
+
ChannelsIn?: number | undefined;
|
|
724
|
+
ChannelsOut?: number | undefined;
|
|
719
725
|
}
|
|
720
726
|
export interface AudioDescription {
|
|
721
|
-
AudioChannelTaggingSettings?: AudioChannelTaggingSettings;
|
|
722
|
-
AudioNormalizationSettings?: AudioNormalizationSettings;
|
|
723
|
-
AudioSourceName?: string;
|
|
724
|
-
AudioType?: number;
|
|
725
|
-
AudioTypeControl?: AudioTypeControl;
|
|
726
|
-
CodecSettings?: AudioCodecSettings;
|
|
727
|
-
CustomLanguageCode?: string;
|
|
728
|
-
LanguageCode?: LanguageCode;
|
|
729
|
-
LanguageCodeControl?: AudioLanguageCodeControl;
|
|
730
|
-
RemixSettings?: RemixSettings;
|
|
731
|
-
StreamName?: string;
|
|
727
|
+
AudioChannelTaggingSettings?: AudioChannelTaggingSettings | undefined;
|
|
728
|
+
AudioNormalizationSettings?: AudioNormalizationSettings | undefined;
|
|
729
|
+
AudioSourceName?: string | undefined;
|
|
730
|
+
AudioType?: number | undefined;
|
|
731
|
+
AudioTypeControl?: AudioTypeControl | undefined;
|
|
732
|
+
CodecSettings?: AudioCodecSettings | undefined;
|
|
733
|
+
CustomLanguageCode?: string | undefined;
|
|
734
|
+
LanguageCode?: LanguageCode | undefined;
|
|
735
|
+
LanguageCodeControl?: AudioLanguageCodeControl | undefined;
|
|
736
|
+
RemixSettings?: RemixSettings | undefined;
|
|
737
|
+
StreamName?: string | undefined;
|
|
732
738
|
}
|
|
733
739
|
export interface ForceIncludeRenditionSize {
|
|
734
|
-
Height?: number;
|
|
735
|
-
Width?: number;
|
|
740
|
+
Height?: number | undefined;
|
|
741
|
+
Width?: number | undefined;
|
|
736
742
|
}
|
|
737
743
|
export interface MinBottomRenditionSize {
|
|
738
|
-
Height?: number;
|
|
739
|
-
Width?: number;
|
|
744
|
+
Height?: number | undefined;
|
|
745
|
+
Width?: number | undefined;
|
|
740
746
|
}
|
|
741
747
|
export interface MinTopRenditionSize {
|
|
742
|
-
Height?: number;
|
|
743
|
-
Width?: number;
|
|
748
|
+
Height?: number | undefined;
|
|
749
|
+
Width?: number | undefined;
|
|
744
750
|
}
|
|
745
751
|
export declare const RuleType: {
|
|
746
752
|
readonly ALLOWED_RENDITIONS: "ALLOWED_RENDITIONS";
|
|
@@ -750,11 +756,11 @@ export declare const RuleType: {
|
|
|
750
756
|
};
|
|
751
757
|
export type RuleType = (typeof RuleType)[keyof typeof RuleType];
|
|
752
758
|
export interface AutomatedAbrRule {
|
|
753
|
-
AllowedRenditions?: AllowedRenditionSize[];
|
|
754
|
-
ForceIncludeRenditions?: ForceIncludeRenditionSize[];
|
|
755
|
-
MinBottomRenditionSize?: MinBottomRenditionSize;
|
|
756
|
-
MinTopRenditionSize?: MinTopRenditionSize;
|
|
757
|
-
Type?: RuleType;
|
|
759
|
+
AllowedRenditions?: AllowedRenditionSize[] | undefined;
|
|
760
|
+
ForceIncludeRenditions?: ForceIncludeRenditionSize[] | undefined;
|
|
761
|
+
MinBottomRenditionSize?: MinBottomRenditionSize | undefined;
|
|
762
|
+
MinTopRenditionSize?: MinTopRenditionSize | undefined;
|
|
763
|
+
Type?: RuleType | undefined;
|
|
758
764
|
}
|
|
759
765
|
export declare const BurninSubtitleAlignment: {
|
|
760
766
|
readonly AUTO: "AUTO";
|
|
@@ -837,31 +843,31 @@ export declare const BurninSubtitleTeletextSpacing: {
|
|
|
837
843
|
export type BurninSubtitleTeletextSpacing =
|
|
838
844
|
(typeof BurninSubtitleTeletextSpacing)[keyof typeof BurninSubtitleTeletextSpacing];
|
|
839
845
|
export interface BurninDestinationSettings {
|
|
840
|
-
Alignment?: BurninSubtitleAlignment;
|
|
841
|
-
ApplyFontColor?: BurninSubtitleApplyFontColor;
|
|
842
|
-
BackgroundColor?: BurninSubtitleBackgroundColor;
|
|
843
|
-
BackgroundOpacity?: number;
|
|
844
|
-
FallbackFont?: BurninSubtitleFallbackFont;
|
|
845
|
-
FontColor?: BurninSubtitleFontColor;
|
|
846
|
-
FontFileBold?: string;
|
|
847
|
-
FontFileBoldItalic?: string;
|
|
848
|
-
FontFileItalic?: string;
|
|
849
|
-
FontFileRegular?: string;
|
|
850
|
-
FontOpacity?: number;
|
|
851
|
-
FontResolution?: number;
|
|
852
|
-
FontScript?: FontScript;
|
|
853
|
-
FontSize?: number;
|
|
854
|
-
HexFontColor?: string;
|
|
855
|
-
OutlineColor?: BurninSubtitleOutlineColor;
|
|
856
|
-
OutlineSize?: number;
|
|
857
|
-
ShadowColor?: BurninSubtitleShadowColor;
|
|
858
|
-
ShadowOpacity?: number;
|
|
859
|
-
ShadowXOffset?: number;
|
|
860
|
-
ShadowYOffset?: number;
|
|
861
|
-
StylePassthrough?: BurnInSubtitleStylePassthrough;
|
|
862
|
-
TeletextSpacing?: BurninSubtitleTeletextSpacing;
|
|
863
|
-
XPosition?: number;
|
|
864
|
-
YPosition?: number;
|
|
846
|
+
Alignment?: BurninSubtitleAlignment | undefined;
|
|
847
|
+
ApplyFontColor?: BurninSubtitleApplyFontColor | undefined;
|
|
848
|
+
BackgroundColor?: BurninSubtitleBackgroundColor | undefined;
|
|
849
|
+
BackgroundOpacity?: number | undefined;
|
|
850
|
+
FallbackFont?: BurninSubtitleFallbackFont | undefined;
|
|
851
|
+
FontColor?: BurninSubtitleFontColor | undefined;
|
|
852
|
+
FontFileBold?: string | undefined;
|
|
853
|
+
FontFileBoldItalic?: string | undefined;
|
|
854
|
+
FontFileItalic?: string | undefined;
|
|
855
|
+
FontFileRegular?: string | undefined;
|
|
856
|
+
FontOpacity?: number | undefined;
|
|
857
|
+
FontResolution?: number | undefined;
|
|
858
|
+
FontScript?: FontScript | undefined;
|
|
859
|
+
FontSize?: number | undefined;
|
|
860
|
+
HexFontColor?: string | undefined;
|
|
861
|
+
OutlineColor?: BurninSubtitleOutlineColor | undefined;
|
|
862
|
+
OutlineSize?: number | undefined;
|
|
863
|
+
ShadowColor?: BurninSubtitleShadowColor | undefined;
|
|
864
|
+
ShadowOpacity?: number | undefined;
|
|
865
|
+
ShadowXOffset?: number | undefined;
|
|
866
|
+
ShadowYOffset?: number | undefined;
|
|
867
|
+
StylePassthrough?: BurnInSubtitleStylePassthrough | undefined;
|
|
868
|
+
TeletextSpacing?: BurninSubtitleTeletextSpacing | undefined;
|
|
869
|
+
XPosition?: number | undefined;
|
|
870
|
+
YPosition?: number | undefined;
|
|
865
871
|
}
|
|
866
872
|
export declare const CaptionDestinationType: {
|
|
867
873
|
readonly BURN_IN: "BURN_IN";
|
|
@@ -967,41 +973,41 @@ export declare const DvbSubtitleTeletextSpacing: {
|
|
|
967
973
|
export type DvbSubtitleTeletextSpacing =
|
|
968
974
|
(typeof DvbSubtitleTeletextSpacing)[keyof typeof DvbSubtitleTeletextSpacing];
|
|
969
975
|
export interface DvbSubDestinationSettings {
|
|
970
|
-
Alignment?: DvbSubtitleAlignment;
|
|
971
|
-
ApplyFontColor?: DvbSubtitleApplyFontColor;
|
|
972
|
-
BackgroundColor?: DvbSubtitleBackgroundColor;
|
|
973
|
-
BackgroundOpacity?: number;
|
|
974
|
-
DdsHandling?: DvbddsHandling;
|
|
975
|
-
DdsXCoordinate?: number;
|
|
976
|
-
DdsYCoordinate?: number;
|
|
977
|
-
FallbackFont?: DvbSubSubtitleFallbackFont;
|
|
978
|
-
FontColor?: DvbSubtitleFontColor;
|
|
979
|
-
FontFileBold?: string;
|
|
980
|
-
FontFileBoldItalic?: string;
|
|
981
|
-
FontFileItalic?: string;
|
|
982
|
-
FontFileRegular?: string;
|
|
983
|
-
FontOpacity?: number;
|
|
984
|
-
FontResolution?: number;
|
|
985
|
-
FontScript?: FontScript;
|
|
986
|
-
FontSize?: number;
|
|
987
|
-
Height?: number;
|
|
988
|
-
HexFontColor?: string;
|
|
989
|
-
OutlineColor?: DvbSubtitleOutlineColor;
|
|
990
|
-
OutlineSize?: number;
|
|
991
|
-
ShadowColor?: DvbSubtitleShadowColor;
|
|
992
|
-
ShadowOpacity?: number;
|
|
993
|
-
ShadowXOffset?: number;
|
|
994
|
-
ShadowYOffset?: number;
|
|
995
|
-
StylePassthrough?: DvbSubtitleStylePassthrough;
|
|
996
|
-
SubtitlingType?: DvbSubtitlingType;
|
|
997
|
-
TeletextSpacing?: DvbSubtitleTeletextSpacing;
|
|
998
|
-
Width?: number;
|
|
999
|
-
XPosition?: number;
|
|
1000
|
-
YPosition?: number;
|
|
976
|
+
Alignment?: DvbSubtitleAlignment | undefined;
|
|
977
|
+
ApplyFontColor?: DvbSubtitleApplyFontColor | undefined;
|
|
978
|
+
BackgroundColor?: DvbSubtitleBackgroundColor | undefined;
|
|
979
|
+
BackgroundOpacity?: number | undefined;
|
|
980
|
+
DdsHandling?: DvbddsHandling | undefined;
|
|
981
|
+
DdsXCoordinate?: number | undefined;
|
|
982
|
+
DdsYCoordinate?: number | undefined;
|
|
983
|
+
FallbackFont?: DvbSubSubtitleFallbackFont | undefined;
|
|
984
|
+
FontColor?: DvbSubtitleFontColor | undefined;
|
|
985
|
+
FontFileBold?: string | undefined;
|
|
986
|
+
FontFileBoldItalic?: string | undefined;
|
|
987
|
+
FontFileItalic?: string | undefined;
|
|
988
|
+
FontFileRegular?: string | undefined;
|
|
989
|
+
FontOpacity?: number | undefined;
|
|
990
|
+
FontResolution?: number | undefined;
|
|
991
|
+
FontScript?: FontScript | undefined;
|
|
992
|
+
FontSize?: number | undefined;
|
|
993
|
+
Height?: number | undefined;
|
|
994
|
+
HexFontColor?: string | undefined;
|
|
995
|
+
OutlineColor?: DvbSubtitleOutlineColor | undefined;
|
|
996
|
+
OutlineSize?: number | undefined;
|
|
997
|
+
ShadowColor?: DvbSubtitleShadowColor | undefined;
|
|
998
|
+
ShadowOpacity?: number | undefined;
|
|
999
|
+
ShadowXOffset?: number | undefined;
|
|
1000
|
+
ShadowYOffset?: number | undefined;
|
|
1001
|
+
StylePassthrough?: DvbSubtitleStylePassthrough | undefined;
|
|
1002
|
+
SubtitlingType?: DvbSubtitlingType | undefined;
|
|
1003
|
+
TeletextSpacing?: DvbSubtitleTeletextSpacing | undefined;
|
|
1004
|
+
Width?: number | undefined;
|
|
1005
|
+
XPosition?: number | undefined;
|
|
1006
|
+
YPosition?: number | undefined;
|
|
1001
1007
|
}
|
|
1002
1008
|
export interface EmbeddedDestinationSettings {
|
|
1003
|
-
Destination608ChannelNumber?: number;
|
|
1004
|
-
Destination708ServiceNumber?: number;
|
|
1009
|
+
Destination608ChannelNumber?: number | undefined;
|
|
1010
|
+
Destination708ServiceNumber?: number | undefined;
|
|
1005
1011
|
}
|
|
1006
1012
|
export declare const ImscAccessibilitySubs: {
|
|
1007
1013
|
readonly DISABLED: "DISABLED";
|
|
@@ -1016,8 +1022,8 @@ export declare const ImscStylePassthrough: {
|
|
|
1016
1022
|
export type ImscStylePassthrough =
|
|
1017
1023
|
(typeof ImscStylePassthrough)[keyof typeof ImscStylePassthrough];
|
|
1018
1024
|
export interface ImscDestinationSettings {
|
|
1019
|
-
Accessibility?: ImscAccessibilitySubs;
|
|
1020
|
-
StylePassthrough?: ImscStylePassthrough;
|
|
1025
|
+
Accessibility?: ImscAccessibilitySubs | undefined;
|
|
1026
|
+
StylePassthrough?: ImscStylePassthrough | undefined;
|
|
1021
1027
|
}
|
|
1022
1028
|
export declare const SccDestinationFramerate: {
|
|
1023
1029
|
readonly FRAMERATE_23_97: "FRAMERATE_23_97";
|
|
@@ -1029,7 +1035,7 @@ export declare const SccDestinationFramerate: {
|
|
|
1029
1035
|
export type SccDestinationFramerate =
|
|
1030
1036
|
(typeof SccDestinationFramerate)[keyof typeof SccDestinationFramerate];
|
|
1031
1037
|
export interface SccDestinationSettings {
|
|
1032
|
-
Framerate?: SccDestinationFramerate;
|
|
1038
|
+
Framerate?: SccDestinationFramerate | undefined;
|
|
1033
1039
|
}
|
|
1034
1040
|
export declare const SrtStylePassthrough: {
|
|
1035
1041
|
readonly DISABLED: "DISABLED";
|
|
@@ -1038,7 +1044,7 @@ export declare const SrtStylePassthrough: {
|
|
|
1038
1044
|
export type SrtStylePassthrough =
|
|
1039
1045
|
(typeof SrtStylePassthrough)[keyof typeof SrtStylePassthrough];
|
|
1040
1046
|
export interface SrtDestinationSettings {
|
|
1041
|
-
StylePassthrough?: SrtStylePassthrough;
|
|
1047
|
+
StylePassthrough?: SrtStylePassthrough | undefined;
|
|
1042
1048
|
}
|
|
1043
1049
|
export declare const TeletextPageType: {
|
|
1044
1050
|
readonly PAGE_TYPE_ADDL_INFO: "PAGE_TYPE_ADDL_INFO";
|
|
@@ -1050,8 +1056,8 @@ export declare const TeletextPageType: {
|
|
|
1050
1056
|
export type TeletextPageType =
|
|
1051
1057
|
(typeof TeletextPageType)[keyof typeof TeletextPageType];
|
|
1052
1058
|
export interface TeletextDestinationSettings {
|
|
1053
|
-
PageNumber?: string;
|
|
1054
|
-
PageTypes?: TeletextPageType[];
|
|
1059
|
+
PageNumber?: string | undefined;
|
|
1060
|
+
PageTypes?: TeletextPageType[] | undefined;
|
|
1055
1061
|
}
|
|
1056
1062
|
export declare const TtmlStylePassthrough: {
|
|
1057
1063
|
readonly DISABLED: "DISABLED";
|
|
@@ -1060,7 +1066,7 @@ export declare const TtmlStylePassthrough: {
|
|
|
1060
1066
|
export type TtmlStylePassthrough =
|
|
1061
1067
|
(typeof TtmlStylePassthrough)[keyof typeof TtmlStylePassthrough];
|
|
1062
1068
|
export interface TtmlDestinationSettings {
|
|
1063
|
-
StylePassthrough?: TtmlStylePassthrough;
|
|
1069
|
+
StylePassthrough?: TtmlStylePassthrough | undefined;
|
|
1064
1070
|
}
|
|
1065
1071
|
export declare const WebvttAccessibilitySubs: {
|
|
1066
1072
|
readonly DISABLED: "DISABLED";
|
|
@@ -1076,37 +1082,37 @@ export declare const WebvttStylePassthrough: {
|
|
|
1076
1082
|
export type WebvttStylePassthrough =
|
|
1077
1083
|
(typeof WebvttStylePassthrough)[keyof typeof WebvttStylePassthrough];
|
|
1078
1084
|
export interface WebvttDestinationSettings {
|
|
1079
|
-
Accessibility?: WebvttAccessibilitySubs;
|
|
1080
|
-
StylePassthrough?: WebvttStylePassthrough;
|
|
1085
|
+
Accessibility?: WebvttAccessibilitySubs | undefined;
|
|
1086
|
+
StylePassthrough?: WebvttStylePassthrough | undefined;
|
|
1081
1087
|
}
|
|
1082
1088
|
export interface CaptionDestinationSettings {
|
|
1083
|
-
BurninDestinationSettings?: BurninDestinationSettings;
|
|
1084
|
-
DestinationType?: CaptionDestinationType;
|
|
1085
|
-
DvbSubDestinationSettings?: DvbSubDestinationSettings;
|
|
1086
|
-
EmbeddedDestinationSettings?: EmbeddedDestinationSettings;
|
|
1087
|
-
ImscDestinationSettings?: ImscDestinationSettings;
|
|
1088
|
-
SccDestinationSettings?: SccDestinationSettings;
|
|
1089
|
-
SrtDestinationSettings?: SrtDestinationSettings;
|
|
1090
|
-
TeletextDestinationSettings?: TeletextDestinationSettings;
|
|
1091
|
-
TtmlDestinationSettings?: TtmlDestinationSettings;
|
|
1092
|
-
WebvttDestinationSettings?: WebvttDestinationSettings;
|
|
1089
|
+
BurninDestinationSettings?: BurninDestinationSettings | undefined;
|
|
1090
|
+
DestinationType?: CaptionDestinationType | undefined;
|
|
1091
|
+
DvbSubDestinationSettings?: DvbSubDestinationSettings | undefined;
|
|
1092
|
+
EmbeddedDestinationSettings?: EmbeddedDestinationSettings | undefined;
|
|
1093
|
+
ImscDestinationSettings?: ImscDestinationSettings | undefined;
|
|
1094
|
+
SccDestinationSettings?: SccDestinationSettings | undefined;
|
|
1095
|
+
SrtDestinationSettings?: SrtDestinationSettings | undefined;
|
|
1096
|
+
TeletextDestinationSettings?: TeletextDestinationSettings | undefined;
|
|
1097
|
+
TtmlDestinationSettings?: TtmlDestinationSettings | undefined;
|
|
1098
|
+
WebvttDestinationSettings?: WebvttDestinationSettings | undefined;
|
|
1093
1099
|
}
|
|
1094
1100
|
export interface CaptionDescription {
|
|
1095
|
-
CaptionSelectorName?: string;
|
|
1096
|
-
CustomLanguageCode?: string;
|
|
1097
|
-
DestinationSettings?: CaptionDestinationSettings;
|
|
1098
|
-
LanguageCode?: LanguageCode;
|
|
1099
|
-
LanguageDescription?: string;
|
|
1101
|
+
CaptionSelectorName?: string | undefined;
|
|
1102
|
+
CustomLanguageCode?: string | undefined;
|
|
1103
|
+
DestinationSettings?: CaptionDestinationSettings | undefined;
|
|
1104
|
+
LanguageCode?: LanguageCode | undefined;
|
|
1105
|
+
LanguageDescription?: string | undefined;
|
|
1100
1106
|
}
|
|
1101
1107
|
export interface CaptionDescriptionPreset {
|
|
1102
|
-
CustomLanguageCode?: string;
|
|
1103
|
-
DestinationSettings?: CaptionDestinationSettings;
|
|
1104
|
-
LanguageCode?: LanguageCode;
|
|
1105
|
-
LanguageDescription?: string;
|
|
1108
|
+
CustomLanguageCode?: string | undefined;
|
|
1109
|
+
DestinationSettings?: CaptionDestinationSettings | undefined;
|
|
1110
|
+
LanguageCode?: LanguageCode | undefined;
|
|
1111
|
+
LanguageDescription?: string | undefined;
|
|
1106
1112
|
}
|
|
1107
1113
|
export interface CmafAdditionalManifest {
|
|
1108
|
-
ManifestNameModifier?: string;
|
|
1109
|
-
SelectedOutputs?: string[];
|
|
1114
|
+
ManifestNameModifier?: string | undefined;
|
|
1115
|
+
SelectedOutputs?: string[] | undefined;
|
|
1110
1116
|
}
|
|
1111
1117
|
export declare const ColorSpace: {
|
|
1112
1118
|
readonly FOLLOW: "FOLLOW";
|
|
@@ -1120,22 +1126,22 @@ export declare const ColorSpace: {
|
|
|
1120
1126
|
};
|
|
1121
1127
|
export type ColorSpace = (typeof ColorSpace)[keyof typeof ColorSpace];
|
|
1122
1128
|
export interface ColorConversion3DLUTSetting {
|
|
1123
|
-
FileInput?: string;
|
|
1124
|
-
InputColorSpace?: ColorSpace;
|
|
1125
|
-
InputMasteringLuminance?: number;
|
|
1126
|
-
OutputColorSpace?: ColorSpace;
|
|
1127
|
-
OutputMasteringLuminance?: number;
|
|
1129
|
+
FileInput?: string | undefined;
|
|
1130
|
+
InputColorSpace?: ColorSpace | undefined;
|
|
1131
|
+
InputMasteringLuminance?: number | undefined;
|
|
1132
|
+
OutputColorSpace?: ColorSpace | undefined;
|
|
1133
|
+
OutputMasteringLuminance?: number | undefined;
|
|
1128
1134
|
}
|
|
1129
1135
|
export interface DashAdditionalManifest {
|
|
1130
|
-
ManifestNameModifier?: string;
|
|
1131
|
-
SelectedOutputs?: string[];
|
|
1136
|
+
ManifestNameModifier?: string | undefined;
|
|
1137
|
+
SelectedOutputs?: string[] | undefined;
|
|
1132
1138
|
}
|
|
1133
1139
|
export interface Endpoint {
|
|
1134
|
-
Url?: string;
|
|
1140
|
+
Url?: string | undefined;
|
|
1135
1141
|
}
|
|
1136
1142
|
export interface HlsAdditionalManifest {
|
|
1137
|
-
ManifestNameModifier?: string;
|
|
1138
|
-
SelectedOutputs?: string[];
|
|
1143
|
+
ManifestNameModifier?: string | undefined;
|
|
1144
|
+
SelectedOutputs?: string[] | undefined;
|
|
1139
1145
|
}
|
|
1140
1146
|
export declare const HlsAdMarkers: {
|
|
1141
1147
|
readonly ELEMENTAL: "ELEMENTAL";
|
|
@@ -1143,19 +1149,19 @@ export declare const HlsAdMarkers: {
|
|
|
1143
1149
|
};
|
|
1144
1150
|
export type HlsAdMarkers = (typeof HlsAdMarkers)[keyof typeof HlsAdMarkers];
|
|
1145
1151
|
export interface HlsCaptionLanguageMapping {
|
|
1146
|
-
CaptionChannel?: number;
|
|
1147
|
-
CustomLanguageCode?: string;
|
|
1148
|
-
LanguageCode?: LanguageCode;
|
|
1149
|
-
LanguageDescription?: string;
|
|
1152
|
+
CaptionChannel?: number | undefined;
|
|
1153
|
+
CustomLanguageCode?: string | undefined;
|
|
1154
|
+
LanguageCode?: LanguageCode | undefined;
|
|
1155
|
+
LanguageDescription?: string | undefined;
|
|
1150
1156
|
}
|
|
1151
1157
|
export interface HopDestination {
|
|
1152
|
-
Priority?: number;
|
|
1153
|
-
Queue?: string;
|
|
1154
|
-
WaitMinutes?: number;
|
|
1158
|
+
Priority?: number | undefined;
|
|
1159
|
+
Queue?: string | undefined;
|
|
1160
|
+
WaitMinutes?: number | undefined;
|
|
1155
1161
|
}
|
|
1156
1162
|
export interface Id3Insertion {
|
|
1157
|
-
Id3?: string;
|
|
1158
|
-
Timecode?: string;
|
|
1163
|
+
Id3?: string | undefined;
|
|
1164
|
+
Timecode?: string | undefined;
|
|
1159
1165
|
}
|
|
1160
1166
|
export declare const AdvancedInputFilter: {
|
|
1161
1167
|
readonly DISABLED: "DISABLED";
|
|
@@ -1177,11 +1183,11 @@ export declare const AdvancedInputFilterSharpen: {
|
|
|
1177
1183
|
export type AdvancedInputFilterSharpen =
|
|
1178
1184
|
(typeof AdvancedInputFilterSharpen)[keyof typeof AdvancedInputFilterSharpen];
|
|
1179
1185
|
export interface AdvancedInputFilterSettings {
|
|
1180
|
-
AddTexture?: AdvancedInputFilterAddTexture;
|
|
1181
|
-
Sharpening?: AdvancedInputFilterSharpen;
|
|
1186
|
+
AddTexture?: AdvancedInputFilterAddTexture | undefined;
|
|
1187
|
+
Sharpening?: AdvancedInputFilterSharpen | undefined;
|
|
1182
1188
|
}
|
|
1183
1189
|
export interface AudioSelectorGroup {
|
|
1184
|
-
AudioSelectorNames?: string[];
|
|
1190
|
+
AudioSelectorNames?: string[] | undefined;
|
|
1185
1191
|
}
|
|
1186
1192
|
export declare const AudioDurationCorrection: {
|
|
1187
1193
|
readonly AUTO: "AUTO";
|
|
@@ -1199,9 +1205,9 @@ export declare const AudioDefaultSelection: {
|
|
|
1199
1205
|
export type AudioDefaultSelection =
|
|
1200
1206
|
(typeof AudioDefaultSelection)[keyof typeof AudioDefaultSelection];
|
|
1201
1207
|
export interface HlsRenditionGroupSettings {
|
|
1202
|
-
RenditionGroupId?: string;
|
|
1203
|
-
RenditionLanguageCode?: LanguageCode;
|
|
1204
|
-
RenditionName?: string;
|
|
1208
|
+
RenditionGroupId?: string | undefined;
|
|
1209
|
+
RenditionLanguageCode?: LanguageCode | undefined;
|
|
1210
|
+
RenditionName?: string | undefined;
|
|
1205
1211
|
}
|
|
1206
1212
|
export declare const AudioSelectorType: {
|
|
1207
1213
|
readonly HLS_RENDITION_GROUP: "HLS_RENDITION_GROUP";
|
|
@@ -1212,18 +1218,18 @@ export declare const AudioSelectorType: {
|
|
|
1212
1218
|
export type AudioSelectorType =
|
|
1213
1219
|
(typeof AudioSelectorType)[keyof typeof AudioSelectorType];
|
|
1214
1220
|
export interface AudioSelector {
|
|
1215
|
-
AudioDurationCorrection?: AudioDurationCorrection;
|
|
1216
|
-
CustomLanguageCode?: string;
|
|
1217
|
-
DefaultSelection?: AudioDefaultSelection;
|
|
1218
|
-
ExternalAudioFileInput?: string;
|
|
1219
|
-
HlsRenditionGroupSettings?: HlsRenditionGroupSettings;
|
|
1220
|
-
LanguageCode?: LanguageCode;
|
|
1221
|
-
Offset?: number;
|
|
1222
|
-
Pids?: number[];
|
|
1223
|
-
ProgramSelection?: number;
|
|
1224
|
-
RemixSettings?: RemixSettings;
|
|
1225
|
-
SelectorType?: AudioSelectorType;
|
|
1226
|
-
Tracks?: number[];
|
|
1221
|
+
AudioDurationCorrection?: AudioDurationCorrection | undefined;
|
|
1222
|
+
CustomLanguageCode?: string | undefined;
|
|
1223
|
+
DefaultSelection?: AudioDefaultSelection | undefined;
|
|
1224
|
+
ExternalAudioFileInput?: string | undefined;
|
|
1225
|
+
HlsRenditionGroupSettings?: HlsRenditionGroupSettings | undefined;
|
|
1226
|
+
LanguageCode?: LanguageCode | undefined;
|
|
1227
|
+
Offset?: number | undefined;
|
|
1228
|
+
Pids?: number[] | undefined;
|
|
1229
|
+
ProgramSelection?: number | undefined;
|
|
1230
|
+
RemixSettings?: RemixSettings | undefined;
|
|
1231
|
+
SelectorType?: AudioSelectorType | undefined;
|
|
1232
|
+
Tracks?: number[] | undefined;
|
|
1227
1233
|
}
|
|
1228
1234
|
export declare const AncillaryConvert608To708: {
|
|
1229
1235
|
readonly DISABLED: "DISABLED";
|
|
@@ -1238,12 +1244,12 @@ export declare const AncillaryTerminateCaptions: {
|
|
|
1238
1244
|
export type AncillaryTerminateCaptions =
|
|
1239
1245
|
(typeof AncillaryTerminateCaptions)[keyof typeof AncillaryTerminateCaptions];
|
|
1240
1246
|
export interface AncillarySourceSettings {
|
|
1241
|
-
Convert608To708?: AncillaryConvert608To708;
|
|
1242
|
-
SourceAncillaryChannelNumber?: number;
|
|
1243
|
-
TerminateCaptions?: AncillaryTerminateCaptions;
|
|
1247
|
+
Convert608To708?: AncillaryConvert608To708 | undefined;
|
|
1248
|
+
SourceAncillaryChannelNumber?: number | undefined;
|
|
1249
|
+
TerminateCaptions?: AncillaryTerminateCaptions | undefined;
|
|
1244
1250
|
}
|
|
1245
1251
|
export interface DvbSubSourceSettings {
|
|
1246
|
-
Pid?: number;
|
|
1252
|
+
Pid?: number | undefined;
|
|
1247
1253
|
}
|
|
1248
1254
|
export declare const EmbeddedConvert608To708: {
|
|
1249
1255
|
readonly DISABLED: "DISABLED";
|
|
@@ -1258,10 +1264,10 @@ export declare const EmbeddedTerminateCaptions: {
|
|
|
1258
1264
|
export type EmbeddedTerminateCaptions =
|
|
1259
1265
|
(typeof EmbeddedTerminateCaptions)[keyof typeof EmbeddedTerminateCaptions];
|
|
1260
1266
|
export interface EmbeddedSourceSettings {
|
|
1261
|
-
Convert608To708?: EmbeddedConvert608To708;
|
|
1262
|
-
Source608ChannelNumber?: number;
|
|
1263
|
-
Source608TrackNumber?: number;
|
|
1264
|
-
TerminateCaptions?: EmbeddedTerminateCaptions;
|
|
1267
|
+
Convert608To708?: EmbeddedConvert608To708 | undefined;
|
|
1268
|
+
Source608ChannelNumber?: number | undefined;
|
|
1269
|
+
Source608TrackNumber?: number | undefined;
|
|
1270
|
+
TerminateCaptions?: EmbeddedTerminateCaptions | undefined;
|
|
1265
1271
|
}
|
|
1266
1272
|
export declare const CaptionSourceByteRateLimit: {
|
|
1267
1273
|
readonly DISABLED: "DISABLED";
|
|
@@ -1282,8 +1288,8 @@ export declare const CaptionSourceConvertPaintOnToPopOn: {
|
|
|
1282
1288
|
export type CaptionSourceConvertPaintOnToPopOn =
|
|
1283
1289
|
(typeof CaptionSourceConvertPaintOnToPopOn)[keyof typeof CaptionSourceConvertPaintOnToPopOn];
|
|
1284
1290
|
export interface CaptionSourceFramerate {
|
|
1285
|
-
FramerateDenominator?: number;
|
|
1286
|
-
FramerateNumerator?: number;
|
|
1291
|
+
FramerateDenominator?: number | undefined;
|
|
1292
|
+
FramerateNumerator?: number | undefined;
|
|
1287
1293
|
}
|
|
1288
1294
|
export declare const FileSourceTimeDeltaUnits: {
|
|
1289
1295
|
readonly MILLISECONDS: "MILLISECONDS";
|
|
@@ -1292,13 +1298,13 @@ export declare const FileSourceTimeDeltaUnits: {
|
|
|
1292
1298
|
export type FileSourceTimeDeltaUnits =
|
|
1293
1299
|
(typeof FileSourceTimeDeltaUnits)[keyof typeof FileSourceTimeDeltaUnits];
|
|
1294
1300
|
export interface FileSourceSettings {
|
|
1295
|
-
ByteRateLimit?: CaptionSourceByteRateLimit;
|
|
1296
|
-
Convert608To708?: FileSourceConvert608To708;
|
|
1297
|
-
ConvertPaintToPop?: CaptionSourceConvertPaintOnToPopOn;
|
|
1298
|
-
Framerate?: CaptionSourceFramerate;
|
|
1299
|
-
SourceFile?: string;
|
|
1300
|
-
TimeDelta?: number;
|
|
1301
|
-
TimeDeltaUnits?: FileSourceTimeDeltaUnits;
|
|
1301
|
+
ByteRateLimit?: CaptionSourceByteRateLimit | undefined;
|
|
1302
|
+
Convert608To708?: FileSourceConvert608To708 | undefined;
|
|
1303
|
+
ConvertPaintToPop?: CaptionSourceConvertPaintOnToPopOn | undefined;
|
|
1304
|
+
Framerate?: CaptionSourceFramerate | undefined;
|
|
1305
|
+
SourceFile?: string | undefined;
|
|
1306
|
+
TimeDelta?: number | undefined;
|
|
1307
|
+
TimeDeltaUnits?: FileSourceTimeDeltaUnits | undefined;
|
|
1302
1308
|
}
|
|
1303
1309
|
export declare const CaptionSourceType: {
|
|
1304
1310
|
readonly ANCILLARY: "ANCILLARY";
|
|
@@ -1319,36 +1325,36 @@ export declare const CaptionSourceType: {
|
|
|
1319
1325
|
export type CaptionSourceType =
|
|
1320
1326
|
(typeof CaptionSourceType)[keyof typeof CaptionSourceType];
|
|
1321
1327
|
export interface TeletextSourceSettings {
|
|
1322
|
-
PageNumber?: string;
|
|
1328
|
+
PageNumber?: string | undefined;
|
|
1323
1329
|
}
|
|
1324
1330
|
export interface TrackSourceSettings {
|
|
1325
|
-
TrackNumber?: number;
|
|
1331
|
+
TrackNumber?: number | undefined;
|
|
1326
1332
|
}
|
|
1327
1333
|
export interface WebvttHlsSourceSettings {
|
|
1328
|
-
RenditionGroupId?: string;
|
|
1329
|
-
RenditionLanguageCode?: LanguageCode;
|
|
1330
|
-
RenditionName?: string;
|
|
1334
|
+
RenditionGroupId?: string | undefined;
|
|
1335
|
+
RenditionLanguageCode?: LanguageCode | undefined;
|
|
1336
|
+
RenditionName?: string | undefined;
|
|
1331
1337
|
}
|
|
1332
1338
|
export interface CaptionSourceSettings {
|
|
1333
|
-
AncillarySourceSettings?: AncillarySourceSettings;
|
|
1334
|
-
DvbSubSourceSettings?: DvbSubSourceSettings;
|
|
1335
|
-
EmbeddedSourceSettings?: EmbeddedSourceSettings;
|
|
1336
|
-
FileSourceSettings?: FileSourceSettings;
|
|
1337
|
-
SourceType?: CaptionSourceType;
|
|
1338
|
-
TeletextSourceSettings?: TeletextSourceSettings;
|
|
1339
|
-
TrackSourceSettings?: TrackSourceSettings;
|
|
1340
|
-
WebvttHlsSourceSettings?: WebvttHlsSourceSettings;
|
|
1339
|
+
AncillarySourceSettings?: AncillarySourceSettings | undefined;
|
|
1340
|
+
DvbSubSourceSettings?: DvbSubSourceSettings | undefined;
|
|
1341
|
+
EmbeddedSourceSettings?: EmbeddedSourceSettings | undefined;
|
|
1342
|
+
FileSourceSettings?: FileSourceSettings | undefined;
|
|
1343
|
+
SourceType?: CaptionSourceType | undefined;
|
|
1344
|
+
TeletextSourceSettings?: TeletextSourceSettings | undefined;
|
|
1345
|
+
TrackSourceSettings?: TrackSourceSettings | undefined;
|
|
1346
|
+
WebvttHlsSourceSettings?: WebvttHlsSourceSettings | undefined;
|
|
1341
1347
|
}
|
|
1342
1348
|
export interface CaptionSelector {
|
|
1343
|
-
CustomLanguageCode?: string;
|
|
1344
|
-
LanguageCode?: LanguageCode;
|
|
1345
|
-
SourceSettings?: CaptionSourceSettings;
|
|
1349
|
+
CustomLanguageCode?: string | undefined;
|
|
1350
|
+
LanguageCode?: LanguageCode | undefined;
|
|
1351
|
+
SourceSettings?: CaptionSourceSettings | undefined;
|
|
1346
1352
|
}
|
|
1347
1353
|
export interface Rectangle {
|
|
1348
|
-
Height?: number;
|
|
1349
|
-
Width?: number;
|
|
1350
|
-
X?: number;
|
|
1351
|
-
Y?: number;
|
|
1354
|
+
Height?: number | undefined;
|
|
1355
|
+
Width?: number | undefined;
|
|
1356
|
+
X?: number | undefined;
|
|
1357
|
+
Y?: number | undefined;
|
|
1352
1358
|
}
|
|
1353
1359
|
export declare const InputDeblockFilter: {
|
|
1354
1360
|
readonly DISABLED: "DISABLED";
|
|
@@ -1364,10 +1370,10 @@ export declare const DecryptionMode: {
|
|
|
1364
1370
|
export type DecryptionMode =
|
|
1365
1371
|
(typeof DecryptionMode)[keyof typeof DecryptionMode];
|
|
1366
1372
|
export interface InputDecryptionSettings {
|
|
1367
|
-
DecryptionMode?: DecryptionMode;
|
|
1368
|
-
EncryptedDecryptionKey?: string;
|
|
1369
|
-
InitializationVector?: string;
|
|
1370
|
-
KmsKeyRegion?: string;
|
|
1373
|
+
DecryptionMode?: DecryptionMode | undefined;
|
|
1374
|
+
EncryptedDecryptionKey?: string | undefined;
|
|
1375
|
+
InitializationVector?: string | undefined;
|
|
1376
|
+
KmsKeyRegion?: string | undefined;
|
|
1371
1377
|
}
|
|
1372
1378
|
export declare const InputDenoiseFilter: {
|
|
1373
1379
|
readonly DISABLED: "DISABLED";
|
|
@@ -1383,25 +1389,25 @@ export declare const InputFilterEnable: {
|
|
|
1383
1389
|
export type InputFilterEnable =
|
|
1384
1390
|
(typeof InputFilterEnable)[keyof typeof InputFilterEnable];
|
|
1385
1391
|
export interface InsertableImage {
|
|
1386
|
-
Duration?: number;
|
|
1387
|
-
FadeIn?: number;
|
|
1388
|
-
FadeOut?: number;
|
|
1389
|
-
Height?: number;
|
|
1390
|
-
ImageInserterInput?: string;
|
|
1391
|
-
ImageX?: number;
|
|
1392
|
-
ImageY?: number;
|
|
1393
|
-
Layer?: number;
|
|
1394
|
-
Opacity?: number;
|
|
1395
|
-
StartTime?: string;
|
|
1396
|
-
Width?: number;
|
|
1392
|
+
Duration?: number | undefined;
|
|
1393
|
+
FadeIn?: number | undefined;
|
|
1394
|
+
FadeOut?: number | undefined;
|
|
1395
|
+
Height?: number | undefined;
|
|
1396
|
+
ImageInserterInput?: string | undefined;
|
|
1397
|
+
ImageX?: number | undefined;
|
|
1398
|
+
ImageY?: number | undefined;
|
|
1399
|
+
Layer?: number | undefined;
|
|
1400
|
+
Opacity?: number | undefined;
|
|
1401
|
+
StartTime?: string | undefined;
|
|
1402
|
+
Width?: number | undefined;
|
|
1397
1403
|
}
|
|
1398
1404
|
export interface ImageInserter {
|
|
1399
|
-
InsertableImages?: InsertableImage[];
|
|
1400
|
-
SdrReferenceWhiteLevel?: number;
|
|
1405
|
+
InsertableImages?: InsertableImage[] | undefined;
|
|
1406
|
+
SdrReferenceWhiteLevel?: number | undefined;
|
|
1401
1407
|
}
|
|
1402
1408
|
export interface InputClipping {
|
|
1403
|
-
EndTimecode?: string;
|
|
1404
|
-
StartTimecode?: string;
|
|
1409
|
+
EndTimecode?: string | undefined;
|
|
1410
|
+
StartTimecode?: string | undefined;
|
|
1405
1411
|
}
|
|
1406
1412
|
export declare const InputScanType: {
|
|
1407
1413
|
readonly AUTO: "AUTO";
|
|
@@ -1422,11 +1428,11 @@ export declare const InputTimecodeSource: {
|
|
|
1422
1428
|
export type InputTimecodeSource =
|
|
1423
1429
|
(typeof InputTimecodeSource)[keyof typeof InputTimecodeSource];
|
|
1424
1430
|
export interface InputVideoGenerator {
|
|
1425
|
-
Channels?: number;
|
|
1426
|
-
Duration?: number;
|
|
1427
|
-
FramerateDenominator?: number;
|
|
1428
|
-
FramerateNumerator?: number;
|
|
1429
|
-
SampleRate?: number;
|
|
1431
|
+
Channels?: number | undefined;
|
|
1432
|
+
Duration?: number | undefined;
|
|
1433
|
+
FramerateDenominator?: number | undefined;
|
|
1434
|
+
FramerateNumerator?: number | undefined;
|
|
1435
|
+
SampleRate?: number | undefined;
|
|
1430
1436
|
}
|
|
1431
1437
|
export declare const VideoOverlayUnit: {
|
|
1432
1438
|
readonly PERCENTAGE: "PERCENTAGE";
|
|
@@ -1435,21 +1441,21 @@ export declare const VideoOverlayUnit: {
|
|
|
1435
1441
|
export type VideoOverlayUnit =
|
|
1436
1442
|
(typeof VideoOverlayUnit)[keyof typeof VideoOverlayUnit];
|
|
1437
1443
|
export interface VideoOverlayPosition {
|
|
1438
|
-
Height?: number;
|
|
1439
|
-
Unit?: VideoOverlayUnit;
|
|
1440
|
-
Width?: number;
|
|
1441
|
-
XPosition?: number;
|
|
1442
|
-
YPosition?: number;
|
|
1444
|
+
Height?: number | undefined;
|
|
1445
|
+
Unit?: VideoOverlayUnit | undefined;
|
|
1446
|
+
Width?: number | undefined;
|
|
1447
|
+
XPosition?: number | undefined;
|
|
1448
|
+
YPosition?: number | undefined;
|
|
1443
1449
|
}
|
|
1444
1450
|
export interface VideoOverlayInputClipping {
|
|
1445
|
-
EndTimecode?: string;
|
|
1446
|
-
StartTimecode?: string;
|
|
1451
|
+
EndTimecode?: string | undefined;
|
|
1452
|
+
StartTimecode?: string | undefined;
|
|
1447
1453
|
}
|
|
1448
1454
|
export interface VideoOverlayInput {
|
|
1449
|
-
FileInput?: string;
|
|
1450
|
-
InputClippings?: VideoOverlayInputClipping[];
|
|
1451
|
-
TimecodeSource?: InputTimecodeSource;
|
|
1452
|
-
TimecodeStart?: string;
|
|
1455
|
+
FileInput?: string | undefined;
|
|
1456
|
+
InputClippings?: VideoOverlayInputClipping[] | undefined;
|
|
1457
|
+
TimecodeSource?: InputTimecodeSource | undefined;
|
|
1458
|
+
TimecodeStart?: string | undefined;
|
|
1453
1459
|
}
|
|
1454
1460
|
export declare const VideoOverlayPlayBackMode: {
|
|
1455
1461
|
readonly ONCE: "ONCE";
|
|
@@ -1458,17 +1464,17 @@ export declare const VideoOverlayPlayBackMode: {
|
|
|
1458
1464
|
export type VideoOverlayPlayBackMode =
|
|
1459
1465
|
(typeof VideoOverlayPlayBackMode)[keyof typeof VideoOverlayPlayBackMode];
|
|
1460
1466
|
export interface VideoOverlayTransition {
|
|
1461
|
-
EndPosition?: VideoOverlayPosition;
|
|
1462
|
-
EndTimecode?: string;
|
|
1463
|
-
StartTimecode?: string;
|
|
1467
|
+
EndPosition?: VideoOverlayPosition | undefined;
|
|
1468
|
+
EndTimecode?: string | undefined;
|
|
1469
|
+
StartTimecode?: string | undefined;
|
|
1464
1470
|
}
|
|
1465
1471
|
export interface VideoOverlay {
|
|
1466
|
-
EndTimecode?: string;
|
|
1467
|
-
InitialPosition?: VideoOverlayPosition;
|
|
1468
|
-
Input?: VideoOverlayInput;
|
|
1469
|
-
Playback?: VideoOverlayPlayBackMode;
|
|
1470
|
-
StartTimecode?: string;
|
|
1471
|
-
Transitions?: VideoOverlayTransition[];
|
|
1472
|
+
EndTimecode?: string | undefined;
|
|
1473
|
+
InitialPosition?: VideoOverlayPosition | undefined;
|
|
1474
|
+
Input?: VideoOverlayInput | undefined;
|
|
1475
|
+
Playback?: VideoOverlayPlayBackMode | undefined;
|
|
1476
|
+
StartTimecode?: string | undefined;
|
|
1477
|
+
Transitions?: VideoOverlayTransition[] | undefined;
|
|
1472
1478
|
}
|
|
1473
1479
|
export declare const AlphaBehavior: {
|
|
1474
1480
|
readonly DISCARD: "DISCARD";
|
|
@@ -1488,18 +1494,18 @@ export declare const EmbeddedTimecodeOverride: {
|
|
|
1488
1494
|
export type EmbeddedTimecodeOverride =
|
|
1489
1495
|
(typeof EmbeddedTimecodeOverride)[keyof typeof EmbeddedTimecodeOverride];
|
|
1490
1496
|
export interface Hdr10Metadata {
|
|
1491
|
-
BluePrimaryX?: number;
|
|
1492
|
-
BluePrimaryY?: number;
|
|
1493
|
-
GreenPrimaryX?: number;
|
|
1494
|
-
GreenPrimaryY?: number;
|
|
1495
|
-
MaxContentLightLevel?: number;
|
|
1496
|
-
MaxFrameAverageLightLevel?: number;
|
|
1497
|
-
MaxLuminance?: number;
|
|
1498
|
-
MinLuminance?: number;
|
|
1499
|
-
RedPrimaryX?: number;
|
|
1500
|
-
RedPrimaryY?: number;
|
|
1501
|
-
WhitePointX?: number;
|
|
1502
|
-
WhitePointY?: number;
|
|
1497
|
+
BluePrimaryX?: number | undefined;
|
|
1498
|
+
BluePrimaryY?: number | undefined;
|
|
1499
|
+
GreenPrimaryX?: number | undefined;
|
|
1500
|
+
GreenPrimaryY?: number | undefined;
|
|
1501
|
+
MaxContentLightLevel?: number | undefined;
|
|
1502
|
+
MaxFrameAverageLightLevel?: number | undefined;
|
|
1503
|
+
MaxLuminance?: number | undefined;
|
|
1504
|
+
MinLuminance?: number | undefined;
|
|
1505
|
+
RedPrimaryX?: number | undefined;
|
|
1506
|
+
RedPrimaryY?: number | undefined;
|
|
1507
|
+
WhitePointX?: number | undefined;
|
|
1508
|
+
WhitePointY?: number | undefined;
|
|
1503
1509
|
}
|
|
1504
1510
|
export declare const PadVideo: {
|
|
1505
1511
|
readonly BLACK: "BLACK";
|
|
@@ -1522,67 +1528,67 @@ export declare const InputSampleRange: {
|
|
|
1522
1528
|
export type InputSampleRange =
|
|
1523
1529
|
(typeof InputSampleRange)[keyof typeof InputSampleRange];
|
|
1524
1530
|
export interface VideoSelector {
|
|
1525
|
-
AlphaBehavior?: AlphaBehavior;
|
|
1526
|
-
ColorSpace?: ColorSpace;
|
|
1527
|
-
ColorSpaceUsage?: ColorSpaceUsage;
|
|
1528
|
-
EmbeddedTimecodeOverride?: EmbeddedTimecodeOverride;
|
|
1529
|
-
Hdr10Metadata?: Hdr10Metadata;
|
|
1530
|
-
MaxLuminance?: number;
|
|
1531
|
-
PadVideo?: PadVideo;
|
|
1532
|
-
Pid?: number;
|
|
1533
|
-
ProgramNumber?: number;
|
|
1534
|
-
Rotate?: InputRotate;
|
|
1535
|
-
SampleRange?: InputSampleRange;
|
|
1531
|
+
AlphaBehavior?: AlphaBehavior | undefined;
|
|
1532
|
+
ColorSpace?: ColorSpace | undefined;
|
|
1533
|
+
ColorSpaceUsage?: ColorSpaceUsage | undefined;
|
|
1534
|
+
EmbeddedTimecodeOverride?: EmbeddedTimecodeOverride | undefined;
|
|
1535
|
+
Hdr10Metadata?: Hdr10Metadata | undefined;
|
|
1536
|
+
MaxLuminance?: number | undefined;
|
|
1537
|
+
PadVideo?: PadVideo | undefined;
|
|
1538
|
+
Pid?: number | undefined;
|
|
1539
|
+
ProgramNumber?: number | undefined;
|
|
1540
|
+
Rotate?: InputRotate | undefined;
|
|
1541
|
+
SampleRange?: InputSampleRange | undefined;
|
|
1536
1542
|
}
|
|
1537
1543
|
export interface Input {
|
|
1538
|
-
AdvancedInputFilter?: AdvancedInputFilter;
|
|
1539
|
-
AdvancedInputFilterSettings?: AdvancedInputFilterSettings;
|
|
1540
|
-
AudioSelectorGroups?: Record<string, AudioSelectorGroup
|
|
1541
|
-
AudioSelectors?: Record<string, AudioSelector
|
|
1542
|
-
CaptionSelectors?: Record<string, CaptionSelector
|
|
1543
|
-
Crop?: Rectangle;
|
|
1544
|
-
DeblockFilter?: InputDeblockFilter;
|
|
1545
|
-
DecryptionSettings?: InputDecryptionSettings;
|
|
1546
|
-
DenoiseFilter?: InputDenoiseFilter;
|
|
1547
|
-
DolbyVisionMetadataXml?: string;
|
|
1548
|
-
FileInput?: string;
|
|
1549
|
-
FilterEnable?: InputFilterEnable;
|
|
1550
|
-
FilterStrength?: number;
|
|
1551
|
-
ImageInserter?: ImageInserter;
|
|
1552
|
-
InputClippings?: InputClipping[];
|
|
1553
|
-
InputScanType?: InputScanType;
|
|
1554
|
-
Position?: Rectangle;
|
|
1555
|
-
ProgramNumber?: number;
|
|
1556
|
-
PsiControl?: InputPsiControl;
|
|
1557
|
-
SupplementalImps?: string[];
|
|
1558
|
-
TimecodeSource?: InputTimecodeSource;
|
|
1559
|
-
TimecodeStart?: string;
|
|
1560
|
-
VideoGenerator?: InputVideoGenerator;
|
|
1561
|
-
VideoOverlays?: VideoOverlay[];
|
|
1562
|
-
VideoSelector?: VideoSelector;
|
|
1544
|
+
AdvancedInputFilter?: AdvancedInputFilter | undefined;
|
|
1545
|
+
AdvancedInputFilterSettings?: AdvancedInputFilterSettings | undefined;
|
|
1546
|
+
AudioSelectorGroups?: Record<string, AudioSelectorGroup> | undefined;
|
|
1547
|
+
AudioSelectors?: Record<string, AudioSelector> | undefined;
|
|
1548
|
+
CaptionSelectors?: Record<string, CaptionSelector> | undefined;
|
|
1549
|
+
Crop?: Rectangle | undefined;
|
|
1550
|
+
DeblockFilter?: InputDeblockFilter | undefined;
|
|
1551
|
+
DecryptionSettings?: InputDecryptionSettings | undefined;
|
|
1552
|
+
DenoiseFilter?: InputDenoiseFilter | undefined;
|
|
1553
|
+
DolbyVisionMetadataXml?: string | undefined;
|
|
1554
|
+
FileInput?: string | undefined;
|
|
1555
|
+
FilterEnable?: InputFilterEnable | undefined;
|
|
1556
|
+
FilterStrength?: number | undefined;
|
|
1557
|
+
ImageInserter?: ImageInserter | undefined;
|
|
1558
|
+
InputClippings?: InputClipping[] | undefined;
|
|
1559
|
+
InputScanType?: InputScanType | undefined;
|
|
1560
|
+
Position?: Rectangle | undefined;
|
|
1561
|
+
ProgramNumber?: number | undefined;
|
|
1562
|
+
PsiControl?: InputPsiControl | undefined;
|
|
1563
|
+
SupplementalImps?: string[] | undefined;
|
|
1564
|
+
TimecodeSource?: InputTimecodeSource | undefined;
|
|
1565
|
+
TimecodeStart?: string | undefined;
|
|
1566
|
+
VideoGenerator?: InputVideoGenerator | undefined;
|
|
1567
|
+
VideoOverlays?: VideoOverlay[] | undefined;
|
|
1568
|
+
VideoSelector?: VideoSelector | undefined;
|
|
1563
1569
|
}
|
|
1564
1570
|
export interface InputTemplate {
|
|
1565
|
-
AdvancedInputFilter?: AdvancedInputFilter;
|
|
1566
|
-
AdvancedInputFilterSettings?: AdvancedInputFilterSettings;
|
|
1567
|
-
AudioSelectorGroups?: Record<string, AudioSelectorGroup
|
|
1568
|
-
AudioSelectors?: Record<string, AudioSelector
|
|
1569
|
-
CaptionSelectors?: Record<string, CaptionSelector
|
|
1570
|
-
Crop?: Rectangle;
|
|
1571
|
-
DeblockFilter?: InputDeblockFilter;
|
|
1572
|
-
DenoiseFilter?: InputDenoiseFilter;
|
|
1573
|
-
DolbyVisionMetadataXml?: string;
|
|
1574
|
-
FilterEnable?: InputFilterEnable;
|
|
1575
|
-
FilterStrength?: number;
|
|
1576
|
-
ImageInserter?: ImageInserter;
|
|
1577
|
-
InputClippings?: InputClipping[];
|
|
1578
|
-
InputScanType?: InputScanType;
|
|
1579
|
-
Position?: Rectangle;
|
|
1580
|
-
ProgramNumber?: number;
|
|
1581
|
-
PsiControl?: InputPsiControl;
|
|
1582
|
-
TimecodeSource?: InputTimecodeSource;
|
|
1583
|
-
TimecodeStart?: string;
|
|
1584
|
-
VideoOverlays?: VideoOverlay[];
|
|
1585
|
-
VideoSelector?: VideoSelector;
|
|
1571
|
+
AdvancedInputFilter?: AdvancedInputFilter | undefined;
|
|
1572
|
+
AdvancedInputFilterSettings?: AdvancedInputFilterSettings | undefined;
|
|
1573
|
+
AudioSelectorGroups?: Record<string, AudioSelectorGroup> | undefined;
|
|
1574
|
+
AudioSelectors?: Record<string, AudioSelector> | undefined;
|
|
1575
|
+
CaptionSelectors?: Record<string, CaptionSelector> | undefined;
|
|
1576
|
+
Crop?: Rectangle | undefined;
|
|
1577
|
+
DeblockFilter?: InputDeblockFilter | undefined;
|
|
1578
|
+
DenoiseFilter?: InputDenoiseFilter | undefined;
|
|
1579
|
+
DolbyVisionMetadataXml?: string | undefined;
|
|
1580
|
+
FilterEnable?: InputFilterEnable | undefined;
|
|
1581
|
+
FilterStrength?: number | undefined;
|
|
1582
|
+
ImageInserter?: ImageInserter | undefined;
|
|
1583
|
+
InputClippings?: InputClipping[] | undefined;
|
|
1584
|
+
InputScanType?: InputScanType | undefined;
|
|
1585
|
+
Position?: Rectangle | undefined;
|
|
1586
|
+
ProgramNumber?: number | undefined;
|
|
1587
|
+
PsiControl?: InputPsiControl | undefined;
|
|
1588
|
+
TimecodeSource?: InputTimecodeSource | undefined;
|
|
1589
|
+
TimecodeStart?: string | undefined;
|
|
1590
|
+
VideoOverlays?: VideoOverlay[] | undefined;
|
|
1591
|
+
VideoSelector?: VideoSelector | undefined;
|
|
1586
1592
|
}
|
|
1587
1593
|
export declare const AccelerationMode: {
|
|
1588
1594
|
readonly DISABLED: "DISABLED";
|
|
@@ -1617,38 +1623,40 @@ export declare const JobPhase: {
|
|
|
1617
1623
|
};
|
|
1618
1624
|
export type JobPhase = (typeof JobPhase)[keyof typeof JobPhase];
|
|
1619
1625
|
export interface JobMessages {
|
|
1620
|
-
Info?: string[];
|
|
1621
|
-
Warning?: string[];
|
|
1626
|
+
Info?: string[] | undefined;
|
|
1627
|
+
Warning?: string[] | undefined;
|
|
1622
1628
|
}
|
|
1623
1629
|
export interface VideoDetail {
|
|
1624
|
-
HeightInPx?: number;
|
|
1625
|
-
WidthInPx?: number;
|
|
1630
|
+
HeightInPx?: number | undefined;
|
|
1631
|
+
WidthInPx?: number | undefined;
|
|
1626
1632
|
}
|
|
1627
1633
|
export interface OutputDetail {
|
|
1628
|
-
DurationInMs?: number;
|
|
1629
|
-
VideoDetails?: VideoDetail;
|
|
1634
|
+
DurationInMs?: number | undefined;
|
|
1635
|
+
VideoDetails?: VideoDetail | undefined;
|
|
1630
1636
|
}
|
|
1631
1637
|
export interface OutputGroupDetail {
|
|
1632
|
-
OutputDetails?: OutputDetail[];
|
|
1638
|
+
OutputDetails?: OutputDetail[] | undefined;
|
|
1633
1639
|
}
|
|
1634
1640
|
export interface QueueTransition {
|
|
1635
|
-
DestinationQueue?: string;
|
|
1636
|
-
SourceQueue?: string;
|
|
1637
|
-
Timestamp?: Date;
|
|
1641
|
+
DestinationQueue?: string | undefined;
|
|
1642
|
+
SourceQueue?: string | undefined;
|
|
1643
|
+
Timestamp?: Date | undefined;
|
|
1638
1644
|
}
|
|
1639
1645
|
export interface AvailBlanking {
|
|
1640
|
-
AvailBlankingImage?: string;
|
|
1646
|
+
AvailBlankingImage?: string | undefined;
|
|
1641
1647
|
}
|
|
1642
1648
|
export interface EsamManifestConfirmConditionNotification {
|
|
1643
|
-
MccXml?: string;
|
|
1649
|
+
MccXml?: string | undefined;
|
|
1644
1650
|
}
|
|
1645
1651
|
export interface EsamSignalProcessingNotification {
|
|
1646
|
-
SccXml?: string;
|
|
1652
|
+
SccXml?: string | undefined;
|
|
1647
1653
|
}
|
|
1648
1654
|
export interface EsamSettings {
|
|
1649
|
-
ManifestConfirmConditionNotification?:
|
|
1650
|
-
|
|
1651
|
-
|
|
1655
|
+
ManifestConfirmConditionNotification?:
|
|
1656
|
+
| EsamManifestConfirmConditionNotification
|
|
1657
|
+
| undefined;
|
|
1658
|
+
ResponseSignalPreroll?: number | undefined;
|
|
1659
|
+
SignalProcessingNotification?: EsamSignalProcessingNotification | undefined;
|
|
1652
1660
|
}
|
|
1653
1661
|
export declare const CopyProtectionAction: {
|
|
1654
1662
|
readonly PASSTHROUGH: "PASSTHROUGH";
|
|
@@ -1662,27 +1670,27 @@ export declare const VchipAction: {
|
|
|
1662
1670
|
};
|
|
1663
1671
|
export type VchipAction = (typeof VchipAction)[keyof typeof VchipAction];
|
|
1664
1672
|
export interface ExtendedDataServices {
|
|
1665
|
-
CopyProtectionAction?: CopyProtectionAction;
|
|
1666
|
-
VchipAction?: VchipAction;
|
|
1673
|
+
CopyProtectionAction?: CopyProtectionAction | undefined;
|
|
1674
|
+
VchipAction?: VchipAction | undefined;
|
|
1667
1675
|
}
|
|
1668
1676
|
export interface KantarWatermarkSettings {
|
|
1669
|
-
ChannelName?: string;
|
|
1670
|
-
ContentReference?: string;
|
|
1671
|
-
CredentialsSecretName?: string;
|
|
1672
|
-
FileOffset?: number;
|
|
1673
|
-
KantarLicenseId?: number;
|
|
1674
|
-
KantarServerUrl?: string;
|
|
1675
|
-
LogDestination?: string;
|
|
1676
|
-
Metadata3?: string;
|
|
1677
|
-
Metadata4?: string;
|
|
1678
|
-
Metadata5?: string;
|
|
1679
|
-
Metadata6?: string;
|
|
1680
|
-
Metadata7?: string;
|
|
1681
|
-
Metadata8?: string;
|
|
1677
|
+
ChannelName?: string | undefined;
|
|
1678
|
+
ContentReference?: string | undefined;
|
|
1679
|
+
CredentialsSecretName?: string | undefined;
|
|
1680
|
+
FileOffset?: number | undefined;
|
|
1681
|
+
KantarLicenseId?: number | undefined;
|
|
1682
|
+
KantarServerUrl?: string | undefined;
|
|
1683
|
+
LogDestination?: string | undefined;
|
|
1684
|
+
Metadata3?: string | undefined;
|
|
1685
|
+
Metadata4?: string | undefined;
|
|
1686
|
+
Metadata5?: string | undefined;
|
|
1687
|
+
Metadata6?: string | undefined;
|
|
1688
|
+
Metadata7?: string | undefined;
|
|
1689
|
+
Metadata8?: string | undefined;
|
|
1682
1690
|
}
|
|
1683
1691
|
export interface MotionImageInsertionFramerate {
|
|
1684
|
-
FramerateDenominator?: number;
|
|
1685
|
-
FramerateNumerator?: number;
|
|
1692
|
+
FramerateDenominator?: number | undefined;
|
|
1693
|
+
FramerateNumerator?: number | undefined;
|
|
1686
1694
|
}
|
|
1687
1695
|
export declare const MotionImageInsertionMode: {
|
|
1688
1696
|
readonly MOV: "MOV";
|
|
@@ -1691,8 +1699,8 @@ export declare const MotionImageInsertionMode: {
|
|
|
1691
1699
|
export type MotionImageInsertionMode =
|
|
1692
1700
|
(typeof MotionImageInsertionMode)[keyof typeof MotionImageInsertionMode];
|
|
1693
1701
|
export interface MotionImageInsertionOffset {
|
|
1694
|
-
ImageX?: number;
|
|
1695
|
-
ImageY?: number;
|
|
1702
|
+
ImageX?: number | undefined;
|
|
1703
|
+
ImageY?: number | undefined;
|
|
1696
1704
|
}
|
|
1697
1705
|
export declare const MotionImagePlayback: {
|
|
1698
1706
|
readonly ONCE: "ONCE";
|
|
@@ -1701,16 +1709,16 @@ export declare const MotionImagePlayback: {
|
|
|
1701
1709
|
export type MotionImagePlayback =
|
|
1702
1710
|
(typeof MotionImagePlayback)[keyof typeof MotionImagePlayback];
|
|
1703
1711
|
export interface MotionImageInserter {
|
|
1704
|
-
Framerate?: MotionImageInsertionFramerate;
|
|
1705
|
-
Input?: string;
|
|
1706
|
-
InsertionMode?: MotionImageInsertionMode;
|
|
1707
|
-
Offset?: MotionImageInsertionOffset;
|
|
1708
|
-
Playback?: MotionImagePlayback;
|
|
1709
|
-
StartTime?: string;
|
|
1712
|
+
Framerate?: MotionImageInsertionFramerate | undefined;
|
|
1713
|
+
Input?: string | undefined;
|
|
1714
|
+
InsertionMode?: MotionImageInsertionMode | undefined;
|
|
1715
|
+
Offset?: MotionImageInsertionOffset | undefined;
|
|
1716
|
+
Playback?: MotionImagePlayback | undefined;
|
|
1717
|
+
StartTime?: string | undefined;
|
|
1710
1718
|
}
|
|
1711
1719
|
export interface NielsenConfiguration {
|
|
1712
|
-
BreakoutCode?: number;
|
|
1713
|
-
DistributorId?: string;
|
|
1720
|
+
BreakoutCode?: number | undefined;
|
|
1721
|
+
DistributorId?: string | undefined;
|
|
1714
1722
|
}
|
|
1715
1723
|
export declare const NielsenActiveWatermarkProcessType: {
|
|
1716
1724
|
readonly CBET: "CBET";
|
|
@@ -1732,26 +1740,26 @@ export declare const NielsenUniqueTicPerAudioTrackType: {
|
|
|
1732
1740
|
export type NielsenUniqueTicPerAudioTrackType =
|
|
1733
1741
|
(typeof NielsenUniqueTicPerAudioTrackType)[keyof typeof NielsenUniqueTicPerAudioTrackType];
|
|
1734
1742
|
export interface NielsenNonLinearWatermarkSettings {
|
|
1735
|
-
ActiveWatermarkProcess?: NielsenActiveWatermarkProcessType;
|
|
1736
|
-
AdiFilename?: string;
|
|
1737
|
-
AssetId?: string;
|
|
1738
|
-
AssetName?: string;
|
|
1739
|
-
CbetSourceId?: string;
|
|
1740
|
-
EpisodeId?: string;
|
|
1741
|
-
MetadataDestination?: string;
|
|
1742
|
-
SourceId?: number;
|
|
1743
|
-
SourceWatermarkStatus?: NielsenSourceWatermarkStatusType;
|
|
1744
|
-
TicServerUrl?: string;
|
|
1745
|
-
UniqueTicPerAudioTrack?: NielsenUniqueTicPerAudioTrackType;
|
|
1743
|
+
ActiveWatermarkProcess?: NielsenActiveWatermarkProcessType | undefined;
|
|
1744
|
+
AdiFilename?: string | undefined;
|
|
1745
|
+
AssetId?: string | undefined;
|
|
1746
|
+
AssetName?: string | undefined;
|
|
1747
|
+
CbetSourceId?: string | undefined;
|
|
1748
|
+
EpisodeId?: string | undefined;
|
|
1749
|
+
MetadataDestination?: string | undefined;
|
|
1750
|
+
SourceId?: number | undefined;
|
|
1751
|
+
SourceWatermarkStatus?: NielsenSourceWatermarkStatusType | undefined;
|
|
1752
|
+
TicServerUrl?: string | undefined;
|
|
1753
|
+
UniqueTicPerAudioTrack?: NielsenUniqueTicPerAudioTrackType | undefined;
|
|
1746
1754
|
}
|
|
1747
1755
|
export interface AutomatedAbrSettings {
|
|
1748
|
-
MaxAbrBitrate?: number;
|
|
1749
|
-
MaxRenditions?: number;
|
|
1750
|
-
MinAbrBitrate?: number;
|
|
1751
|
-
Rules?: AutomatedAbrRule[];
|
|
1756
|
+
MaxAbrBitrate?: number | undefined;
|
|
1757
|
+
MaxRenditions?: number | undefined;
|
|
1758
|
+
MinAbrBitrate?: number | undefined;
|
|
1759
|
+
Rules?: AutomatedAbrRule[] | undefined;
|
|
1752
1760
|
}
|
|
1753
1761
|
export interface AutomatedEncodingSettings {
|
|
1754
|
-
AbrSettings?: AutomatedAbrSettings;
|
|
1762
|
+
AbrSettings?: AutomatedAbrSettings | undefined;
|
|
1755
1763
|
}
|
|
1756
1764
|
export declare const CmafClientCache: {
|
|
1757
1765
|
readonly DISABLED: "DISABLED";
|
|
@@ -1781,7 +1789,7 @@ export declare const S3ObjectCannedAcl: {
|
|
|
1781
1789
|
export type S3ObjectCannedAcl =
|
|
1782
1790
|
(typeof S3ObjectCannedAcl)[keyof typeof S3ObjectCannedAcl];
|
|
1783
1791
|
export interface S3DestinationAccessControl {
|
|
1784
|
-
CannedAcl?: S3ObjectCannedAcl;
|
|
1792
|
+
CannedAcl?: S3ObjectCannedAcl | undefined;
|
|
1785
1793
|
}
|
|
1786
1794
|
export declare const S3ServerSideEncryptionType: {
|
|
1787
1795
|
readonly SERVER_SIDE_ENCRYPTION_KMS: "SERVER_SIDE_ENCRYPTION_KMS";
|
|
@@ -1790,9 +1798,9 @@ export declare const S3ServerSideEncryptionType: {
|
|
|
1790
1798
|
export type S3ServerSideEncryptionType =
|
|
1791
1799
|
(typeof S3ServerSideEncryptionType)[keyof typeof S3ServerSideEncryptionType];
|
|
1792
1800
|
export interface S3EncryptionSettings {
|
|
1793
|
-
EncryptionType?: S3ServerSideEncryptionType;
|
|
1794
|
-
KmsEncryptionContext?: string;
|
|
1795
|
-
KmsKeyArn?: string;
|
|
1801
|
+
EncryptionType?: S3ServerSideEncryptionType | undefined;
|
|
1802
|
+
KmsEncryptionContext?: string | undefined;
|
|
1803
|
+
KmsKeyArn?: string | undefined;
|
|
1796
1804
|
}
|
|
1797
1805
|
export declare const S3StorageClass: {
|
|
1798
1806
|
readonly DEEP_ARCHIVE: "DEEP_ARCHIVE";
|
|
@@ -1806,12 +1814,12 @@ export declare const S3StorageClass: {
|
|
|
1806
1814
|
export type S3StorageClass =
|
|
1807
1815
|
(typeof S3StorageClass)[keyof typeof S3StorageClass];
|
|
1808
1816
|
export interface S3DestinationSettings {
|
|
1809
|
-
AccessControl?: S3DestinationAccessControl;
|
|
1810
|
-
Encryption?: S3EncryptionSettings;
|
|
1811
|
-
StorageClass?: S3StorageClass;
|
|
1817
|
+
AccessControl?: S3DestinationAccessControl | undefined;
|
|
1818
|
+
Encryption?: S3EncryptionSettings | undefined;
|
|
1819
|
+
StorageClass?: S3StorageClass | undefined;
|
|
1812
1820
|
}
|
|
1813
1821
|
export interface DestinationSettings {
|
|
1814
|
-
S3Settings?: S3DestinationSettings;
|
|
1822
|
+
S3Settings?: S3DestinationSettings | undefined;
|
|
1815
1823
|
}
|
|
1816
1824
|
export declare const CmafEncryptionType: {
|
|
1817
1825
|
readonly AES_CTR: "AES_CTR";
|
|
@@ -1849,22 +1857,22 @@ export declare const PresetSpeke20Video: {
|
|
|
1849
1857
|
export type PresetSpeke20Video =
|
|
1850
1858
|
(typeof PresetSpeke20Video)[keyof typeof PresetSpeke20Video];
|
|
1851
1859
|
export interface EncryptionContractConfiguration {
|
|
1852
|
-
SpekeAudioPreset?: PresetSpeke20Audio;
|
|
1853
|
-
SpekeVideoPreset?: PresetSpeke20Video;
|
|
1860
|
+
SpekeAudioPreset?: PresetSpeke20Audio | undefined;
|
|
1861
|
+
SpekeVideoPreset?: PresetSpeke20Video | undefined;
|
|
1854
1862
|
}
|
|
1855
1863
|
export interface SpekeKeyProviderCmaf {
|
|
1856
|
-
CertificateArn?: string;
|
|
1857
|
-
DashSignaledSystemIds?: string[];
|
|
1858
|
-
EncryptionContractConfiguration?: EncryptionContractConfiguration;
|
|
1859
|
-
HlsSignaledSystemIds?: string[];
|
|
1860
|
-
ResourceId?: string;
|
|
1861
|
-
Url?: string;
|
|
1864
|
+
CertificateArn?: string | undefined;
|
|
1865
|
+
DashSignaledSystemIds?: string[] | undefined;
|
|
1866
|
+
EncryptionContractConfiguration?: EncryptionContractConfiguration | undefined;
|
|
1867
|
+
HlsSignaledSystemIds?: string[] | undefined;
|
|
1868
|
+
ResourceId?: string | undefined;
|
|
1869
|
+
Url?: string | undefined;
|
|
1862
1870
|
}
|
|
1863
1871
|
export interface StaticKeyProvider {
|
|
1864
|
-
KeyFormat?: string;
|
|
1865
|
-
KeyFormatVersions?: string;
|
|
1866
|
-
StaticKeyValue?: string;
|
|
1867
|
-
Url?: string;
|
|
1872
|
+
KeyFormat?: string | undefined;
|
|
1873
|
+
KeyFormatVersions?: string | undefined;
|
|
1874
|
+
StaticKeyValue?: string | undefined;
|
|
1875
|
+
Url?: string | undefined;
|
|
1868
1876
|
}
|
|
1869
1877
|
export declare const CmafKeyProviderType: {
|
|
1870
1878
|
readonly SPEKE: "SPEKE";
|
|
@@ -1873,12 +1881,14 @@ export declare const CmafKeyProviderType: {
|
|
|
1873
1881
|
export type CmafKeyProviderType =
|
|
1874
1882
|
(typeof CmafKeyProviderType)[keyof typeof CmafKeyProviderType];
|
|
1875
1883
|
export interface CmafEncryptionSettings {
|
|
1876
|
-
ConstantInitializationVector?: string;
|
|
1877
|
-
EncryptionMethod?: CmafEncryptionType;
|
|
1878
|
-
InitializationVectorInManifest?:
|
|
1879
|
-
|
|
1880
|
-
|
|
1881
|
-
|
|
1884
|
+
ConstantInitializationVector?: string | undefined;
|
|
1885
|
+
EncryptionMethod?: CmafEncryptionType | undefined;
|
|
1886
|
+
InitializationVectorInManifest?:
|
|
1887
|
+
| CmafInitializationVectorInManifest
|
|
1888
|
+
| undefined;
|
|
1889
|
+
SpekeKeyProvider?: SpekeKeyProviderCmaf | undefined;
|
|
1890
|
+
StaticKeyProvider?: StaticKeyProvider | undefined;
|
|
1891
|
+
Type?: CmafKeyProviderType | undefined;
|
|
1882
1892
|
}
|
|
1883
1893
|
export declare const CmafImageBasedTrickPlay: {
|
|
1884
1894
|
readonly ADVANCED: "ADVANCED";
|
|
@@ -1895,12 +1905,12 @@ export declare const CmafIntervalCadence: {
|
|
|
1895
1905
|
export type CmafIntervalCadence =
|
|
1896
1906
|
(typeof CmafIntervalCadence)[keyof typeof CmafIntervalCadence];
|
|
1897
1907
|
export interface CmafImageBasedTrickPlaySettings {
|
|
1898
|
-
IntervalCadence?: CmafIntervalCadence;
|
|
1899
|
-
ThumbnailHeight?: number;
|
|
1900
|
-
ThumbnailInterval?: number;
|
|
1901
|
-
ThumbnailWidth?: number;
|
|
1902
|
-
TileHeight?: number;
|
|
1903
|
-
TileWidth?: number;
|
|
1908
|
+
IntervalCadence?: CmafIntervalCadence | undefined;
|
|
1909
|
+
ThumbnailHeight?: number | undefined;
|
|
1910
|
+
ThumbnailInterval?: number | undefined;
|
|
1911
|
+
ThumbnailWidth?: number | undefined;
|
|
1912
|
+
TileHeight?: number | undefined;
|
|
1913
|
+
TileWidth?: number | undefined;
|
|
1904
1914
|
}
|
|
1905
1915
|
export declare const CmafManifestCompression: {
|
|
1906
1916
|
readonly GZIP: "GZIP";
|
|
@@ -1981,34 +1991,38 @@ export declare const CmafWriteSegmentTimelineInRepresentation: {
|
|
|
1981
1991
|
export type CmafWriteSegmentTimelineInRepresentation =
|
|
1982
1992
|
(typeof CmafWriteSegmentTimelineInRepresentation)[keyof typeof CmafWriteSegmentTimelineInRepresentation];
|
|
1983
1993
|
export interface CmafGroupSettings {
|
|
1984
|
-
AdditionalManifests?: CmafAdditionalManifest[];
|
|
1985
|
-
BaseUrl?: string;
|
|
1986
|
-
ClientCache?: CmafClientCache;
|
|
1987
|
-
CodecSpecification?: CmafCodecSpecification;
|
|
1988
|
-
DashIFrameTrickPlayNameModifier?: string;
|
|
1989
|
-
DashManifestStyle?: DashManifestStyle;
|
|
1990
|
-
Destination?: string;
|
|
1991
|
-
DestinationSettings?: DestinationSettings;
|
|
1992
|
-
Encryption?: CmafEncryptionSettings;
|
|
1993
|
-
FragmentLength?: number;
|
|
1994
|
-
ImageBasedTrickPlay?: CmafImageBasedTrickPlay;
|
|
1995
|
-
ImageBasedTrickPlaySettings?: CmafImageBasedTrickPlaySettings;
|
|
1996
|
-
ManifestCompression?: CmafManifestCompression;
|
|
1997
|
-
ManifestDurationFormat?: CmafManifestDurationFormat;
|
|
1998
|
-
MinBufferTime?: number;
|
|
1999
|
-
MinFinalSegmentLength?: number;
|
|
2000
|
-
MpdManifestBandwidthType?: CmafMpdManifestBandwidthType;
|
|
2001
|
-
MpdProfile?: CmafMpdProfile;
|
|
2002
|
-
PtsOffsetHandlingForBFrames?: CmafPtsOffsetHandlingForBFrames;
|
|
2003
|
-
SegmentControl?: CmafSegmentControl;
|
|
2004
|
-
SegmentLength?: number;
|
|
2005
|
-
SegmentLengthControl?: CmafSegmentLengthControl;
|
|
2006
|
-
StreamInfResolution?: CmafStreamInfResolution;
|
|
2007
|
-
TargetDurationCompatibilityMode?:
|
|
2008
|
-
|
|
2009
|
-
|
|
2010
|
-
|
|
2011
|
-
|
|
1994
|
+
AdditionalManifests?: CmafAdditionalManifest[] | undefined;
|
|
1995
|
+
BaseUrl?: string | undefined;
|
|
1996
|
+
ClientCache?: CmafClientCache | undefined;
|
|
1997
|
+
CodecSpecification?: CmafCodecSpecification | undefined;
|
|
1998
|
+
DashIFrameTrickPlayNameModifier?: string | undefined;
|
|
1999
|
+
DashManifestStyle?: DashManifestStyle | undefined;
|
|
2000
|
+
Destination?: string | undefined;
|
|
2001
|
+
DestinationSettings?: DestinationSettings | undefined;
|
|
2002
|
+
Encryption?: CmafEncryptionSettings | undefined;
|
|
2003
|
+
FragmentLength?: number | undefined;
|
|
2004
|
+
ImageBasedTrickPlay?: CmafImageBasedTrickPlay | undefined;
|
|
2005
|
+
ImageBasedTrickPlaySettings?: CmafImageBasedTrickPlaySettings | undefined;
|
|
2006
|
+
ManifestCompression?: CmafManifestCompression | undefined;
|
|
2007
|
+
ManifestDurationFormat?: CmafManifestDurationFormat | undefined;
|
|
2008
|
+
MinBufferTime?: number | undefined;
|
|
2009
|
+
MinFinalSegmentLength?: number | undefined;
|
|
2010
|
+
MpdManifestBandwidthType?: CmafMpdManifestBandwidthType | undefined;
|
|
2011
|
+
MpdProfile?: CmafMpdProfile | undefined;
|
|
2012
|
+
PtsOffsetHandlingForBFrames?: CmafPtsOffsetHandlingForBFrames | undefined;
|
|
2013
|
+
SegmentControl?: CmafSegmentControl | undefined;
|
|
2014
|
+
SegmentLength?: number | undefined;
|
|
2015
|
+
SegmentLengthControl?: CmafSegmentLengthControl | undefined;
|
|
2016
|
+
StreamInfResolution?: CmafStreamInfResolution | undefined;
|
|
2017
|
+
TargetDurationCompatibilityMode?:
|
|
2018
|
+
| CmafTargetDurationCompatibilityMode
|
|
2019
|
+
| undefined;
|
|
2020
|
+
VideoCompositionOffsets?: CmafVideoCompositionOffsets | undefined;
|
|
2021
|
+
WriteDashManifest?: CmafWriteDASHManifest | undefined;
|
|
2022
|
+
WriteHlsManifest?: CmafWriteHLSManifest | undefined;
|
|
2023
|
+
WriteSegmentTimelineInRepresentation?:
|
|
2024
|
+
| CmafWriteSegmentTimelineInRepresentation
|
|
2025
|
+
| undefined;
|
|
2012
2026
|
}
|
|
2013
2027
|
export declare const DashIsoGroupAudioChannelConfigSchemeIdUri: {
|
|
2014
2028
|
readonly DOLBY_CHANNEL_CONFIGURATION: "DOLBY_CHANNEL_CONFIGURATION";
|
|
@@ -2023,15 +2037,15 @@ export declare const DashIsoPlaybackDeviceCompatibility: {
|
|
|
2023
2037
|
export type DashIsoPlaybackDeviceCompatibility =
|
|
2024
2038
|
(typeof DashIsoPlaybackDeviceCompatibility)[keyof typeof DashIsoPlaybackDeviceCompatibility];
|
|
2025
2039
|
export interface SpekeKeyProvider {
|
|
2026
|
-
CertificateArn?: string;
|
|
2027
|
-
EncryptionContractConfiguration?: EncryptionContractConfiguration;
|
|
2028
|
-
ResourceId?: string;
|
|
2029
|
-
SystemIds?: string[];
|
|
2030
|
-
Url?: string;
|
|
2040
|
+
CertificateArn?: string | undefined;
|
|
2041
|
+
EncryptionContractConfiguration?: EncryptionContractConfiguration | undefined;
|
|
2042
|
+
ResourceId?: string | undefined;
|
|
2043
|
+
SystemIds?: string[] | undefined;
|
|
2044
|
+
Url?: string | undefined;
|
|
2031
2045
|
}
|
|
2032
2046
|
export interface DashIsoEncryptionSettings {
|
|
2033
|
-
PlaybackDeviceCompatibility?: DashIsoPlaybackDeviceCompatibility;
|
|
2034
|
-
SpekeKeyProvider?: SpekeKeyProvider;
|
|
2047
|
+
PlaybackDeviceCompatibility?: DashIsoPlaybackDeviceCompatibility | undefined;
|
|
2048
|
+
SpekeKeyProvider?: SpekeKeyProvider | undefined;
|
|
2035
2049
|
}
|
|
2036
2050
|
export declare const DashIsoHbbtvCompliance: {
|
|
2037
2051
|
readonly HBBTV_1_5: "HBBTV_1_5";
|
|
@@ -2054,12 +2068,12 @@ export declare const DashIsoIntervalCadence: {
|
|
|
2054
2068
|
export type DashIsoIntervalCadence =
|
|
2055
2069
|
(typeof DashIsoIntervalCadence)[keyof typeof DashIsoIntervalCadence];
|
|
2056
2070
|
export interface DashIsoImageBasedTrickPlaySettings {
|
|
2057
|
-
IntervalCadence?: DashIsoIntervalCadence;
|
|
2058
|
-
ThumbnailHeight?: number;
|
|
2059
|
-
ThumbnailInterval?: number;
|
|
2060
|
-
ThumbnailWidth?: number;
|
|
2061
|
-
TileHeight?: number;
|
|
2062
|
-
TileWidth?: number;
|
|
2071
|
+
IntervalCadence?: DashIsoIntervalCadence | undefined;
|
|
2072
|
+
ThumbnailHeight?: number | undefined;
|
|
2073
|
+
ThumbnailInterval?: number | undefined;
|
|
2074
|
+
ThumbnailWidth?: number | undefined;
|
|
2075
|
+
TileHeight?: number | undefined;
|
|
2076
|
+
TileWidth?: number | undefined;
|
|
2063
2077
|
}
|
|
2064
2078
|
export declare const DashIsoMpdManifestBandwidthType: {
|
|
2065
2079
|
readonly AVERAGE: "AVERAGE";
|
|
@@ -2104,32 +2118,36 @@ export declare const DashIsoWriteSegmentTimelineInRepresentation: {
|
|
|
2104
2118
|
export type DashIsoWriteSegmentTimelineInRepresentation =
|
|
2105
2119
|
(typeof DashIsoWriteSegmentTimelineInRepresentation)[keyof typeof DashIsoWriteSegmentTimelineInRepresentation];
|
|
2106
2120
|
export interface DashIsoGroupSettings {
|
|
2107
|
-
AdditionalManifests?: DashAdditionalManifest[];
|
|
2108
|
-
AudioChannelConfigSchemeIdUri?:
|
|
2109
|
-
|
|
2110
|
-
|
|
2111
|
-
|
|
2112
|
-
|
|
2113
|
-
|
|
2114
|
-
|
|
2115
|
-
|
|
2116
|
-
|
|
2117
|
-
|
|
2118
|
-
|
|
2119
|
-
|
|
2120
|
-
|
|
2121
|
-
|
|
2122
|
-
|
|
2123
|
-
|
|
2124
|
-
|
|
2125
|
-
|
|
2126
|
-
|
|
2127
|
-
|
|
2128
|
-
|
|
2121
|
+
AdditionalManifests?: DashAdditionalManifest[] | undefined;
|
|
2122
|
+
AudioChannelConfigSchemeIdUri?:
|
|
2123
|
+
| DashIsoGroupAudioChannelConfigSchemeIdUri
|
|
2124
|
+
| undefined;
|
|
2125
|
+
BaseUrl?: string | undefined;
|
|
2126
|
+
DashIFrameTrickPlayNameModifier?: string | undefined;
|
|
2127
|
+
DashManifestStyle?: DashManifestStyle | undefined;
|
|
2128
|
+
Destination?: string | undefined;
|
|
2129
|
+
DestinationSettings?: DestinationSettings | undefined;
|
|
2130
|
+
Encryption?: DashIsoEncryptionSettings | undefined;
|
|
2131
|
+
FragmentLength?: number | undefined;
|
|
2132
|
+
HbbtvCompliance?: DashIsoHbbtvCompliance | undefined;
|
|
2133
|
+
ImageBasedTrickPlay?: DashIsoImageBasedTrickPlay | undefined;
|
|
2134
|
+
ImageBasedTrickPlaySettings?: DashIsoImageBasedTrickPlaySettings | undefined;
|
|
2135
|
+
MinBufferTime?: number | undefined;
|
|
2136
|
+
MinFinalSegmentLength?: number | undefined;
|
|
2137
|
+
MpdManifestBandwidthType?: DashIsoMpdManifestBandwidthType | undefined;
|
|
2138
|
+
MpdProfile?: DashIsoMpdProfile | undefined;
|
|
2139
|
+
PtsOffsetHandlingForBFrames?: DashIsoPtsOffsetHandlingForBFrames | undefined;
|
|
2140
|
+
SegmentControl?: DashIsoSegmentControl | undefined;
|
|
2141
|
+
SegmentLength?: number | undefined;
|
|
2142
|
+
SegmentLengthControl?: DashIsoSegmentLengthControl | undefined;
|
|
2143
|
+
VideoCompositionOffsets?: DashIsoVideoCompositionOffsets | undefined;
|
|
2144
|
+
WriteSegmentTimelineInRepresentation?:
|
|
2145
|
+
| DashIsoWriteSegmentTimelineInRepresentation
|
|
2146
|
+
| undefined;
|
|
2129
2147
|
}
|
|
2130
2148
|
export interface FileGroupSettings {
|
|
2131
|
-
Destination?: string;
|
|
2132
|
-
DestinationSettings?: DestinationSettings;
|
|
2149
|
+
Destination?: string | undefined;
|
|
2150
|
+
DestinationSettings?: DestinationSettings | undefined;
|
|
2133
2151
|
}
|
|
2134
2152
|
export declare const HlsAudioOnlyHeader: {
|
|
2135
2153
|
readonly EXCLUDE: "EXCLUDE";
|
|
@@ -2193,13 +2211,15 @@ export declare const HlsKeyProviderType: {
|
|
|
2193
2211
|
export type HlsKeyProviderType =
|
|
2194
2212
|
(typeof HlsKeyProviderType)[keyof typeof HlsKeyProviderType];
|
|
2195
2213
|
export interface HlsEncryptionSettings {
|
|
2196
|
-
ConstantInitializationVector?: string;
|
|
2197
|
-
EncryptionMethod?: HlsEncryptionType;
|
|
2198
|
-
InitializationVectorInManifest?:
|
|
2199
|
-
|
|
2200
|
-
|
|
2201
|
-
|
|
2202
|
-
|
|
2214
|
+
ConstantInitializationVector?: string | undefined;
|
|
2215
|
+
EncryptionMethod?: HlsEncryptionType | undefined;
|
|
2216
|
+
InitializationVectorInManifest?:
|
|
2217
|
+
| HlsInitializationVectorInManifest
|
|
2218
|
+
| undefined;
|
|
2219
|
+
OfflineEncrypted?: HlsOfflineEncrypted | undefined;
|
|
2220
|
+
SpekeKeyProvider?: SpekeKeyProvider | undefined;
|
|
2221
|
+
StaticKeyProvider?: StaticKeyProvider | undefined;
|
|
2222
|
+
Type?: HlsKeyProviderType | undefined;
|
|
2203
2223
|
}
|
|
2204
2224
|
export declare const HlsImageBasedTrickPlay: {
|
|
2205
2225
|
readonly ADVANCED: "ADVANCED";
|
|
@@ -2216,12 +2236,12 @@ export declare const HlsIntervalCadence: {
|
|
|
2216
2236
|
export type HlsIntervalCadence =
|
|
2217
2237
|
(typeof HlsIntervalCadence)[keyof typeof HlsIntervalCadence];
|
|
2218
2238
|
export interface HlsImageBasedTrickPlaySettings {
|
|
2219
|
-
IntervalCadence?: HlsIntervalCadence;
|
|
2220
|
-
ThumbnailHeight?: number;
|
|
2221
|
-
ThumbnailInterval?: number;
|
|
2222
|
-
ThumbnailWidth?: number;
|
|
2223
|
-
TileHeight?: number;
|
|
2224
|
-
TileWidth?: number;
|
|
2239
|
+
IntervalCadence?: HlsIntervalCadence | undefined;
|
|
2240
|
+
ThumbnailHeight?: number | undefined;
|
|
2241
|
+
ThumbnailInterval?: number | undefined;
|
|
2242
|
+
ThumbnailWidth?: number | undefined;
|
|
2243
|
+
TileHeight?: number | undefined;
|
|
2244
|
+
TileWidth?: number | undefined;
|
|
2225
2245
|
}
|
|
2226
2246
|
export declare const HlsManifestCompression: {
|
|
2227
2247
|
readonly GZIP: "GZIP";
|
|
@@ -2285,42 +2305,44 @@ export declare const HlsTimedMetadataId3Frame: {
|
|
|
2285
2305
|
export type HlsTimedMetadataId3Frame =
|
|
2286
2306
|
(typeof HlsTimedMetadataId3Frame)[keyof typeof HlsTimedMetadataId3Frame];
|
|
2287
2307
|
export interface HlsGroupSettings {
|
|
2288
|
-
AdMarkers?: HlsAdMarkers[];
|
|
2289
|
-
AdditionalManifests?: HlsAdditionalManifest[];
|
|
2290
|
-
AudioOnlyHeader?: HlsAudioOnlyHeader;
|
|
2291
|
-
BaseUrl?: string;
|
|
2292
|
-
CaptionLanguageMappings?: HlsCaptionLanguageMapping[];
|
|
2293
|
-
CaptionLanguageSetting?: HlsCaptionLanguageSetting;
|
|
2294
|
-
CaptionSegmentLengthControl?: HlsCaptionSegmentLengthControl;
|
|
2295
|
-
ClientCache?: HlsClientCache;
|
|
2296
|
-
CodecSpecification?: HlsCodecSpecification;
|
|
2297
|
-
Destination?: string;
|
|
2298
|
-
DestinationSettings?: DestinationSettings;
|
|
2299
|
-
DirectoryStructure?: HlsDirectoryStructure;
|
|
2300
|
-
Encryption?: HlsEncryptionSettings;
|
|
2301
|
-
ImageBasedTrickPlay?: HlsImageBasedTrickPlay;
|
|
2302
|
-
ImageBasedTrickPlaySettings?: HlsImageBasedTrickPlaySettings;
|
|
2303
|
-
ManifestCompression?: HlsManifestCompression;
|
|
2304
|
-
ManifestDurationFormat?: HlsManifestDurationFormat;
|
|
2305
|
-
MinFinalSegmentLength?: number;
|
|
2306
|
-
MinSegmentLength?: number;
|
|
2307
|
-
OutputSelection?: HlsOutputSelection;
|
|
2308
|
-
ProgramDateTime?: HlsProgramDateTime;
|
|
2309
|
-
ProgramDateTimePeriod?: number;
|
|
2310
|
-
ProgressiveWriteHlsManifest?: HlsProgressiveWriteHlsManifest;
|
|
2311
|
-
SegmentControl?: HlsSegmentControl;
|
|
2312
|
-
SegmentLength?: number;
|
|
2313
|
-
SegmentLengthControl?: HlsSegmentLengthControl;
|
|
2314
|
-
SegmentsPerSubdirectory?: number;
|
|
2315
|
-
StreamInfResolution?: HlsStreamInfResolution;
|
|
2316
|
-
TargetDurationCompatibilityMode?:
|
|
2317
|
-
|
|
2318
|
-
|
|
2319
|
-
|
|
2308
|
+
AdMarkers?: HlsAdMarkers[] | undefined;
|
|
2309
|
+
AdditionalManifests?: HlsAdditionalManifest[] | undefined;
|
|
2310
|
+
AudioOnlyHeader?: HlsAudioOnlyHeader | undefined;
|
|
2311
|
+
BaseUrl?: string | undefined;
|
|
2312
|
+
CaptionLanguageMappings?: HlsCaptionLanguageMapping[] | undefined;
|
|
2313
|
+
CaptionLanguageSetting?: HlsCaptionLanguageSetting | undefined;
|
|
2314
|
+
CaptionSegmentLengthControl?: HlsCaptionSegmentLengthControl | undefined;
|
|
2315
|
+
ClientCache?: HlsClientCache | undefined;
|
|
2316
|
+
CodecSpecification?: HlsCodecSpecification | undefined;
|
|
2317
|
+
Destination?: string | undefined;
|
|
2318
|
+
DestinationSettings?: DestinationSettings | undefined;
|
|
2319
|
+
DirectoryStructure?: HlsDirectoryStructure | undefined;
|
|
2320
|
+
Encryption?: HlsEncryptionSettings | undefined;
|
|
2321
|
+
ImageBasedTrickPlay?: HlsImageBasedTrickPlay | undefined;
|
|
2322
|
+
ImageBasedTrickPlaySettings?: HlsImageBasedTrickPlaySettings | undefined;
|
|
2323
|
+
ManifestCompression?: HlsManifestCompression | undefined;
|
|
2324
|
+
ManifestDurationFormat?: HlsManifestDurationFormat | undefined;
|
|
2325
|
+
MinFinalSegmentLength?: number | undefined;
|
|
2326
|
+
MinSegmentLength?: number | undefined;
|
|
2327
|
+
OutputSelection?: HlsOutputSelection | undefined;
|
|
2328
|
+
ProgramDateTime?: HlsProgramDateTime | undefined;
|
|
2329
|
+
ProgramDateTimePeriod?: number | undefined;
|
|
2330
|
+
ProgressiveWriteHlsManifest?: HlsProgressiveWriteHlsManifest | undefined;
|
|
2331
|
+
SegmentControl?: HlsSegmentControl | undefined;
|
|
2332
|
+
SegmentLength?: number | undefined;
|
|
2333
|
+
SegmentLengthControl?: HlsSegmentLengthControl | undefined;
|
|
2334
|
+
SegmentsPerSubdirectory?: number | undefined;
|
|
2335
|
+
StreamInfResolution?: HlsStreamInfResolution | undefined;
|
|
2336
|
+
TargetDurationCompatibilityMode?:
|
|
2337
|
+
| HlsTargetDurationCompatibilityMode
|
|
2338
|
+
| undefined;
|
|
2339
|
+
TimedMetadataId3Frame?: HlsTimedMetadataId3Frame | undefined;
|
|
2340
|
+
TimedMetadataId3Period?: number | undefined;
|
|
2341
|
+
TimestampDeltaMilliseconds?: number | undefined;
|
|
2320
2342
|
}
|
|
2321
2343
|
export interface MsSmoothAdditionalManifest {
|
|
2322
|
-
ManifestNameModifier?: string;
|
|
2323
|
-
SelectedOutputs?: string[];
|
|
2344
|
+
ManifestNameModifier?: string | undefined;
|
|
2345
|
+
SelectedOutputs?: string[] | undefined;
|
|
2324
2346
|
}
|
|
2325
2347
|
export declare const MsSmoothAudioDeduplication: {
|
|
2326
2348
|
readonly COMBINE_DUPLICATE_STREAMS: "COMBINE_DUPLICATE_STREAMS";
|
|
@@ -2329,7 +2351,7 @@ export declare const MsSmoothAudioDeduplication: {
|
|
|
2329
2351
|
export type MsSmoothAudioDeduplication =
|
|
2330
2352
|
(typeof MsSmoothAudioDeduplication)[keyof typeof MsSmoothAudioDeduplication];
|
|
2331
2353
|
export interface MsSmoothEncryptionSettings {
|
|
2332
|
-
SpekeKeyProvider?: SpekeKeyProvider;
|
|
2354
|
+
SpekeKeyProvider?: SpekeKeyProvider | undefined;
|
|
2333
2355
|
}
|
|
2334
2356
|
export declare const MsSmoothFragmentLengthControl: {
|
|
2335
2357
|
readonly EXACT: "EXACT";
|
|
@@ -2344,14 +2366,14 @@ export declare const MsSmoothManifestEncoding: {
|
|
|
2344
2366
|
export type MsSmoothManifestEncoding =
|
|
2345
2367
|
(typeof MsSmoothManifestEncoding)[keyof typeof MsSmoothManifestEncoding];
|
|
2346
2368
|
export interface MsSmoothGroupSettings {
|
|
2347
|
-
AdditionalManifests?: MsSmoothAdditionalManifest[];
|
|
2348
|
-
AudioDeduplication?: MsSmoothAudioDeduplication;
|
|
2349
|
-
Destination?: string;
|
|
2350
|
-
DestinationSettings?: DestinationSettings;
|
|
2351
|
-
Encryption?: MsSmoothEncryptionSettings;
|
|
2352
|
-
FragmentLength?: number;
|
|
2353
|
-
FragmentLengthControl?: MsSmoothFragmentLengthControl;
|
|
2354
|
-
ManifestEncoding?: MsSmoothManifestEncoding;
|
|
2369
|
+
AdditionalManifests?: MsSmoothAdditionalManifest[] | undefined;
|
|
2370
|
+
AudioDeduplication?: MsSmoothAudioDeduplication | undefined;
|
|
2371
|
+
Destination?: string | undefined;
|
|
2372
|
+
DestinationSettings?: DestinationSettings | undefined;
|
|
2373
|
+
Encryption?: MsSmoothEncryptionSettings | undefined;
|
|
2374
|
+
FragmentLength?: number | undefined;
|
|
2375
|
+
FragmentLengthControl?: MsSmoothFragmentLengthControl | undefined;
|
|
2376
|
+
ManifestEncoding?: MsSmoothManifestEncoding | undefined;
|
|
2355
2377
|
}
|
|
2356
2378
|
export declare const OutputGroupType: {
|
|
2357
2379
|
readonly CMAF_GROUP_SETTINGS: "CMAF_GROUP_SETTINGS";
|