@aws-sdk/client-mediaconvert 3.301.0 → 3.303.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/models/models_0.js +1160 -1353
- package/dist-cjs/models/models_1.js +1011 -1216
- package/dist-cjs/models/models_2.js +22 -27
- package/dist-es/models/models_0.js +1160 -1353
- package/dist-es/models/models_1.js +1011 -1216
- package/dist-es/models/models_2.js +22 -27
- package/dist-types/models/models_0.d.ts +2131 -1166
- package/dist-types/models/models_1.d.ts +2036 -1011
- package/dist-types/models/models_2.d.ts +47 -22
- package/dist-types/ts3.4/models/models_0.d.ts +1524 -1160
- package/dist-types/ts3.4/models/models_1.d.ts +1381 -1011
- package/dist-types/ts3.4/models/models_2.d.ts +28 -22
- package/package.json +34 -34
|
@@ -1,50 +1,61 @@
|
|
|
1
|
-
export declare
|
|
2
|
-
DISABLED
|
|
3
|
-
ENABLED
|
|
4
|
-
}
|
|
1
|
+
export declare const RequiredFlag: {
|
|
2
|
+
readonly DISABLED: "DISABLED";
|
|
3
|
+
readonly ENABLED: "ENABLED";
|
|
4
|
+
};
|
|
5
|
+
export type RequiredFlag = (typeof RequiredFlag)[keyof typeof RequiredFlag];
|
|
5
6
|
export interface AllowedRenditionSize {
|
|
6
7
|
Height?: number;
|
|
7
8
|
Required?: RequiredFlag | string;
|
|
8
9
|
Width?: number;
|
|
9
10
|
}
|
|
10
|
-
export declare
|
|
11
|
-
C
|
|
12
|
-
CS
|
|
13
|
-
L
|
|
14
|
-
LC
|
|
15
|
-
LFE
|
|
16
|
-
LS
|
|
17
|
-
LSD
|
|
18
|
-
R
|
|
19
|
-
RC
|
|
20
|
-
RS
|
|
21
|
-
RSD
|
|
22
|
-
TCS
|
|
23
|
-
VHC
|
|
24
|
-
VHL
|
|
25
|
-
VHR
|
|
26
|
-
}
|
|
11
|
+
export declare const AudioChannelTag: {
|
|
12
|
+
readonly C: "C";
|
|
13
|
+
readonly CS: "CS";
|
|
14
|
+
readonly L: "L";
|
|
15
|
+
readonly LC: "LC";
|
|
16
|
+
readonly LFE: "LFE";
|
|
17
|
+
readonly LS: "LS";
|
|
18
|
+
readonly LSD: "LSD";
|
|
19
|
+
readonly R: "R";
|
|
20
|
+
readonly RC: "RC";
|
|
21
|
+
readonly RS: "RS";
|
|
22
|
+
readonly RSD: "RSD";
|
|
23
|
+
readonly TCS: "TCS";
|
|
24
|
+
readonly VHC: "VHC";
|
|
25
|
+
readonly VHL: "VHL";
|
|
26
|
+
readonly VHR: "VHR";
|
|
27
|
+
};
|
|
28
|
+
export type AudioChannelTag =
|
|
29
|
+
(typeof AudioChannelTag)[keyof typeof AudioChannelTag];
|
|
27
30
|
export interface AudioChannelTaggingSettings {
|
|
28
31
|
ChannelTag?: AudioChannelTag | string;
|
|
29
32
|
}
|
|
30
|
-
export declare
|
|
31
|
-
ITU_BS_1770_1
|
|
32
|
-
ITU_BS_1770_2
|
|
33
|
-
ITU_BS_1770_3
|
|
34
|
-
ITU_BS_1770_4
|
|
35
|
-
}
|
|
36
|
-
export
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
export declare
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
}
|
|
33
|
+
export declare const AudioNormalizationAlgorithm: {
|
|
34
|
+
readonly ITU_BS_1770_1: "ITU_BS_1770_1";
|
|
35
|
+
readonly ITU_BS_1770_2: "ITU_BS_1770_2";
|
|
36
|
+
readonly ITU_BS_1770_3: "ITU_BS_1770_3";
|
|
37
|
+
readonly ITU_BS_1770_4: "ITU_BS_1770_4";
|
|
38
|
+
};
|
|
39
|
+
export type AudioNormalizationAlgorithm =
|
|
40
|
+
(typeof AudioNormalizationAlgorithm)[keyof typeof AudioNormalizationAlgorithm];
|
|
41
|
+
export declare const AudioNormalizationAlgorithmControl: {
|
|
42
|
+
readonly CORRECT_AUDIO: "CORRECT_AUDIO";
|
|
43
|
+
readonly MEASURE_ONLY: "MEASURE_ONLY";
|
|
44
|
+
};
|
|
45
|
+
export type AudioNormalizationAlgorithmControl =
|
|
46
|
+
(typeof AudioNormalizationAlgorithmControl)[keyof typeof AudioNormalizationAlgorithmControl];
|
|
47
|
+
export declare const AudioNormalizationLoudnessLogging: {
|
|
48
|
+
readonly DONT_LOG: "DONT_LOG";
|
|
49
|
+
readonly LOG: "LOG";
|
|
50
|
+
};
|
|
51
|
+
export type AudioNormalizationLoudnessLogging =
|
|
52
|
+
(typeof AudioNormalizationLoudnessLogging)[keyof typeof AudioNormalizationLoudnessLogging];
|
|
53
|
+
export declare const AudioNormalizationPeakCalculation: {
|
|
54
|
+
readonly NONE: "NONE";
|
|
55
|
+
readonly TRUE_PEAK: "TRUE_PEAK";
|
|
56
|
+
};
|
|
57
|
+
export type AudioNormalizationPeakCalculation =
|
|
58
|
+
(typeof AudioNormalizationPeakCalculation)[keyof typeof AudioNormalizationPeakCalculation];
|
|
48
59
|
export interface AudioNormalizationSettings {
|
|
49
60
|
Algorithm?: AudioNormalizationAlgorithm | string;
|
|
50
61
|
AlgorithmControl?: AudioNormalizationAlgorithmControl | string;
|
|
@@ -54,44 +65,57 @@ export interface AudioNormalizationSettings {
|
|
|
54
65
|
TargetLkfs?: number;
|
|
55
66
|
TruePeakLimiterThreshold?: number;
|
|
56
67
|
}
|
|
57
|
-
export declare
|
|
58
|
-
FOLLOW_INPUT
|
|
59
|
-
USE_CONFIGURED
|
|
60
|
-
}
|
|
61
|
-
export
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
68
|
+
export declare const AudioTypeControl: {
|
|
69
|
+
readonly FOLLOW_INPUT: "FOLLOW_INPUT";
|
|
70
|
+
readonly USE_CONFIGURED: "USE_CONFIGURED";
|
|
71
|
+
};
|
|
72
|
+
export type AudioTypeControl =
|
|
73
|
+
(typeof AudioTypeControl)[keyof typeof AudioTypeControl];
|
|
74
|
+
export declare const AacAudioDescriptionBroadcasterMix: {
|
|
75
|
+
readonly BROADCASTER_MIXED_AD: "BROADCASTER_MIXED_AD";
|
|
76
|
+
readonly NORMAL: "NORMAL";
|
|
77
|
+
};
|
|
78
|
+
export type AacAudioDescriptionBroadcasterMix =
|
|
79
|
+
(typeof AacAudioDescriptionBroadcasterMix)[keyof typeof AacAudioDescriptionBroadcasterMix];
|
|
80
|
+
export declare const AacCodecProfile: {
|
|
81
|
+
readonly HEV1: "HEV1";
|
|
82
|
+
readonly HEV2: "HEV2";
|
|
83
|
+
readonly LC: "LC";
|
|
84
|
+
};
|
|
85
|
+
export type AacCodecProfile =
|
|
86
|
+
(typeof AacCodecProfile)[keyof typeof AacCodecProfile];
|
|
87
|
+
export declare const AacCodingMode: {
|
|
88
|
+
readonly AD_RECEIVER_MIX: "AD_RECEIVER_MIX";
|
|
89
|
+
readonly CODING_MODE_1_0: "CODING_MODE_1_0";
|
|
90
|
+
readonly CODING_MODE_1_1: "CODING_MODE_1_1";
|
|
91
|
+
readonly CODING_MODE_2_0: "CODING_MODE_2_0";
|
|
92
|
+
readonly CODING_MODE_5_1: "CODING_MODE_5_1";
|
|
93
|
+
};
|
|
94
|
+
export type AacCodingMode = (typeof AacCodingMode)[keyof typeof AacCodingMode];
|
|
95
|
+
export declare const AacRateControlMode: {
|
|
96
|
+
readonly CBR: "CBR";
|
|
97
|
+
readonly VBR: "VBR";
|
|
98
|
+
};
|
|
99
|
+
export type AacRateControlMode =
|
|
100
|
+
(typeof AacRateControlMode)[keyof typeof AacRateControlMode];
|
|
101
|
+
export declare const AacRawFormat: {
|
|
102
|
+
readonly LATM_LOAS: "LATM_LOAS";
|
|
103
|
+
readonly NONE: "NONE";
|
|
104
|
+
};
|
|
105
|
+
export type AacRawFormat = (typeof AacRawFormat)[keyof typeof AacRawFormat];
|
|
106
|
+
export declare const AacSpecification: {
|
|
107
|
+
readonly MPEG2: "MPEG2";
|
|
108
|
+
readonly MPEG4: "MPEG4";
|
|
109
|
+
};
|
|
110
|
+
export type AacSpecification =
|
|
111
|
+
(typeof AacSpecification)[keyof typeof AacSpecification];
|
|
112
|
+
export declare const AacVbrQuality: {
|
|
113
|
+
readonly HIGH: "HIGH";
|
|
114
|
+
readonly LOW: "LOW";
|
|
115
|
+
readonly MEDIUM_HIGH: "MEDIUM_HIGH";
|
|
116
|
+
readonly MEDIUM_LOW: "MEDIUM_LOW";
|
|
117
|
+
};
|
|
118
|
+
export type AacVbrQuality = (typeof AacVbrQuality)[keyof typeof AacVbrQuality];
|
|
95
119
|
export interface AacSettings {
|
|
96
120
|
AudioDescriptionBroadcasterMix?: AacAudioDescriptionBroadcasterMix | string;
|
|
97
121
|
Bitrate?: number;
|
|
@@ -103,50 +127,62 @@ export interface AacSettings {
|
|
|
103
127
|
Specification?: AacSpecification | string;
|
|
104
128
|
VbrQuality?: AacVbrQuality | string;
|
|
105
129
|
}
|
|
106
|
-
export declare
|
|
107
|
-
COMMENTARY
|
|
108
|
-
COMPLETE_MAIN
|
|
109
|
-
DIALOGUE
|
|
110
|
-
EMERGENCY
|
|
111
|
-
HEARING_IMPAIRED
|
|
112
|
-
MUSIC_AND_EFFECTS
|
|
113
|
-
VISUALLY_IMPAIRED
|
|
114
|
-
VOICE_OVER
|
|
115
|
-
}
|
|
116
|
-
export
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
FILM_STANDARD
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
130
|
+
export declare const Ac3BitstreamMode: {
|
|
131
|
+
readonly COMMENTARY: "COMMENTARY";
|
|
132
|
+
readonly COMPLETE_MAIN: "COMPLETE_MAIN";
|
|
133
|
+
readonly DIALOGUE: "DIALOGUE";
|
|
134
|
+
readonly EMERGENCY: "EMERGENCY";
|
|
135
|
+
readonly HEARING_IMPAIRED: "HEARING_IMPAIRED";
|
|
136
|
+
readonly MUSIC_AND_EFFECTS: "MUSIC_AND_EFFECTS";
|
|
137
|
+
readonly VISUALLY_IMPAIRED: "VISUALLY_IMPAIRED";
|
|
138
|
+
readonly VOICE_OVER: "VOICE_OVER";
|
|
139
|
+
};
|
|
140
|
+
export type Ac3BitstreamMode =
|
|
141
|
+
(typeof Ac3BitstreamMode)[keyof typeof Ac3BitstreamMode];
|
|
142
|
+
export declare const Ac3CodingMode: {
|
|
143
|
+
readonly CODING_MODE_1_0: "CODING_MODE_1_0";
|
|
144
|
+
readonly CODING_MODE_1_1: "CODING_MODE_1_1";
|
|
145
|
+
readonly CODING_MODE_2_0: "CODING_MODE_2_0";
|
|
146
|
+
readonly CODING_MODE_3_2_LFE: "CODING_MODE_3_2_LFE";
|
|
147
|
+
};
|
|
148
|
+
export type Ac3CodingMode = (typeof Ac3CodingMode)[keyof typeof Ac3CodingMode];
|
|
149
|
+
export declare const Ac3DynamicRangeCompressionLine: {
|
|
150
|
+
readonly FILM_LIGHT: "FILM_LIGHT";
|
|
151
|
+
readonly FILM_STANDARD: "FILM_STANDARD";
|
|
152
|
+
readonly MUSIC_LIGHT: "MUSIC_LIGHT";
|
|
153
|
+
readonly MUSIC_STANDARD: "MUSIC_STANDARD";
|
|
154
|
+
readonly NONE: "NONE";
|
|
155
|
+
readonly SPEECH: "SPEECH";
|
|
156
|
+
};
|
|
157
|
+
export type Ac3DynamicRangeCompressionLine =
|
|
158
|
+
(typeof Ac3DynamicRangeCompressionLine)[keyof typeof Ac3DynamicRangeCompressionLine];
|
|
159
|
+
export declare const Ac3DynamicRangeCompressionProfile: {
|
|
160
|
+
readonly FILM_STANDARD: "FILM_STANDARD";
|
|
161
|
+
readonly NONE: "NONE";
|
|
162
|
+
};
|
|
163
|
+
export type Ac3DynamicRangeCompressionProfile =
|
|
164
|
+
(typeof Ac3DynamicRangeCompressionProfile)[keyof typeof Ac3DynamicRangeCompressionProfile];
|
|
165
|
+
export declare const Ac3DynamicRangeCompressionRf: {
|
|
166
|
+
readonly FILM_LIGHT: "FILM_LIGHT";
|
|
167
|
+
readonly FILM_STANDARD: "FILM_STANDARD";
|
|
168
|
+
readonly MUSIC_LIGHT: "MUSIC_LIGHT";
|
|
169
|
+
readonly MUSIC_STANDARD: "MUSIC_STANDARD";
|
|
170
|
+
readonly NONE: "NONE";
|
|
171
|
+
readonly SPEECH: "SPEECH";
|
|
172
|
+
};
|
|
173
|
+
export type Ac3DynamicRangeCompressionRf =
|
|
174
|
+
(typeof Ac3DynamicRangeCompressionRf)[keyof typeof Ac3DynamicRangeCompressionRf];
|
|
175
|
+
export declare const Ac3LfeFilter: {
|
|
176
|
+
readonly DISABLED: "DISABLED";
|
|
177
|
+
readonly ENABLED: "ENABLED";
|
|
178
|
+
};
|
|
179
|
+
export type Ac3LfeFilter = (typeof Ac3LfeFilter)[keyof typeof Ac3LfeFilter];
|
|
180
|
+
export declare const Ac3MetadataControl: {
|
|
181
|
+
readonly FOLLOW_INPUT: "FOLLOW_INPUT";
|
|
182
|
+
readonly USE_CONFIGURED: "USE_CONFIGURED";
|
|
183
|
+
};
|
|
184
|
+
export type Ac3MetadataControl =
|
|
185
|
+
(typeof Ac3MetadataControl)[keyof typeof Ac3MetadataControl];
|
|
150
186
|
export interface Ac3Settings {
|
|
151
187
|
Bitrate?: number;
|
|
152
188
|
BitstreamMode?: Ac3BitstreamMode | string;
|
|
@@ -164,74 +200,95 @@ export interface AiffSettings {
|
|
|
164
200
|
Channels?: number;
|
|
165
201
|
SampleRate?: number;
|
|
166
202
|
}
|
|
167
|
-
export declare
|
|
168
|
-
AAC
|
|
169
|
-
AC3
|
|
170
|
-
AIFF
|
|
171
|
-
EAC3
|
|
172
|
-
EAC3_ATMOS
|
|
173
|
-
MP2
|
|
174
|
-
MP3
|
|
175
|
-
OPUS
|
|
176
|
-
PASSTHROUGH
|
|
177
|
-
VORBIS
|
|
178
|
-
WAV
|
|
179
|
-
}
|
|
180
|
-
export
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
}
|
|
224
|
-
export
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
}
|
|
230
|
-
export
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
203
|
+
export declare const AudioCodec: {
|
|
204
|
+
readonly AAC: "AAC";
|
|
205
|
+
readonly AC3: "AC3";
|
|
206
|
+
readonly AIFF: "AIFF";
|
|
207
|
+
readonly EAC3: "EAC3";
|
|
208
|
+
readonly EAC3_ATMOS: "EAC3_ATMOS";
|
|
209
|
+
readonly MP2: "MP2";
|
|
210
|
+
readonly MP3: "MP3";
|
|
211
|
+
readonly OPUS: "OPUS";
|
|
212
|
+
readonly PASSTHROUGH: "PASSTHROUGH";
|
|
213
|
+
readonly VORBIS: "VORBIS";
|
|
214
|
+
readonly WAV: "WAV";
|
|
215
|
+
};
|
|
216
|
+
export type AudioCodec = (typeof AudioCodec)[keyof typeof AudioCodec];
|
|
217
|
+
export declare const Eac3AtmosBitstreamMode: {
|
|
218
|
+
readonly COMPLETE_MAIN: "COMPLETE_MAIN";
|
|
219
|
+
};
|
|
220
|
+
export type Eac3AtmosBitstreamMode =
|
|
221
|
+
(typeof Eac3AtmosBitstreamMode)[keyof typeof Eac3AtmosBitstreamMode];
|
|
222
|
+
export declare const Eac3AtmosCodingMode: {
|
|
223
|
+
readonly CODING_MODE_5_1_4: "CODING_MODE_5_1_4";
|
|
224
|
+
readonly CODING_MODE_7_1_4: "CODING_MODE_7_1_4";
|
|
225
|
+
readonly CODING_MODE_9_1_6: "CODING_MODE_9_1_6";
|
|
226
|
+
readonly CODING_MODE_AUTO: "CODING_MODE_AUTO";
|
|
227
|
+
};
|
|
228
|
+
export type Eac3AtmosCodingMode =
|
|
229
|
+
(typeof Eac3AtmosCodingMode)[keyof typeof Eac3AtmosCodingMode];
|
|
230
|
+
export declare const Eac3AtmosDialogueIntelligence: {
|
|
231
|
+
readonly DISABLED: "DISABLED";
|
|
232
|
+
readonly ENABLED: "ENABLED";
|
|
233
|
+
};
|
|
234
|
+
export type Eac3AtmosDialogueIntelligence =
|
|
235
|
+
(typeof Eac3AtmosDialogueIntelligence)[keyof typeof Eac3AtmosDialogueIntelligence];
|
|
236
|
+
export declare const Eac3AtmosDownmixControl: {
|
|
237
|
+
readonly INITIALIZE_FROM_SOURCE: "INITIALIZE_FROM_SOURCE";
|
|
238
|
+
readonly SPECIFIED: "SPECIFIED";
|
|
239
|
+
};
|
|
240
|
+
export type Eac3AtmosDownmixControl =
|
|
241
|
+
(typeof Eac3AtmosDownmixControl)[keyof typeof Eac3AtmosDownmixControl];
|
|
242
|
+
export declare const Eac3AtmosDynamicRangeCompressionLine: {
|
|
243
|
+
readonly FILM_LIGHT: "FILM_LIGHT";
|
|
244
|
+
readonly FILM_STANDARD: "FILM_STANDARD";
|
|
245
|
+
readonly MUSIC_LIGHT: "MUSIC_LIGHT";
|
|
246
|
+
readonly MUSIC_STANDARD: "MUSIC_STANDARD";
|
|
247
|
+
readonly NONE: "NONE";
|
|
248
|
+
readonly SPEECH: "SPEECH";
|
|
249
|
+
};
|
|
250
|
+
export type Eac3AtmosDynamicRangeCompressionLine =
|
|
251
|
+
(typeof Eac3AtmosDynamicRangeCompressionLine)[keyof typeof Eac3AtmosDynamicRangeCompressionLine];
|
|
252
|
+
export declare const Eac3AtmosDynamicRangeCompressionRf: {
|
|
253
|
+
readonly FILM_LIGHT: "FILM_LIGHT";
|
|
254
|
+
readonly FILM_STANDARD: "FILM_STANDARD";
|
|
255
|
+
readonly MUSIC_LIGHT: "MUSIC_LIGHT";
|
|
256
|
+
readonly MUSIC_STANDARD: "MUSIC_STANDARD";
|
|
257
|
+
readonly NONE: "NONE";
|
|
258
|
+
readonly SPEECH: "SPEECH";
|
|
259
|
+
};
|
|
260
|
+
export type Eac3AtmosDynamicRangeCompressionRf =
|
|
261
|
+
(typeof Eac3AtmosDynamicRangeCompressionRf)[keyof typeof Eac3AtmosDynamicRangeCompressionRf];
|
|
262
|
+
export declare const Eac3AtmosDynamicRangeControl: {
|
|
263
|
+
readonly INITIALIZE_FROM_SOURCE: "INITIALIZE_FROM_SOURCE";
|
|
264
|
+
readonly SPECIFIED: "SPECIFIED";
|
|
265
|
+
};
|
|
266
|
+
export type Eac3AtmosDynamicRangeControl =
|
|
267
|
+
(typeof Eac3AtmosDynamicRangeControl)[keyof typeof Eac3AtmosDynamicRangeControl];
|
|
268
|
+
export declare const Eac3AtmosMeteringMode: {
|
|
269
|
+
readonly ITU_BS_1770_1: "ITU_BS_1770_1";
|
|
270
|
+
readonly ITU_BS_1770_2: "ITU_BS_1770_2";
|
|
271
|
+
readonly ITU_BS_1770_3: "ITU_BS_1770_3";
|
|
272
|
+
readonly ITU_BS_1770_4: "ITU_BS_1770_4";
|
|
273
|
+
readonly LEQ_A: "LEQ_A";
|
|
274
|
+
};
|
|
275
|
+
export type Eac3AtmosMeteringMode =
|
|
276
|
+
(typeof Eac3AtmosMeteringMode)[keyof typeof Eac3AtmosMeteringMode];
|
|
277
|
+
export declare const Eac3AtmosStereoDownmix: {
|
|
278
|
+
readonly DPL2: "DPL2";
|
|
279
|
+
readonly NOT_INDICATED: "NOT_INDICATED";
|
|
280
|
+
readonly STEREO: "STEREO";
|
|
281
|
+
readonly SURROUND: "SURROUND";
|
|
282
|
+
};
|
|
283
|
+
export type Eac3AtmosStereoDownmix =
|
|
284
|
+
(typeof Eac3AtmosStereoDownmix)[keyof typeof Eac3AtmosStereoDownmix];
|
|
285
|
+
export declare const Eac3AtmosSurroundExMode: {
|
|
286
|
+
readonly DISABLED: "DISABLED";
|
|
287
|
+
readonly ENABLED: "ENABLED";
|
|
288
|
+
readonly NOT_INDICATED: "NOT_INDICATED";
|
|
289
|
+
};
|
|
290
|
+
export type Eac3AtmosSurroundExMode =
|
|
291
|
+
(typeof Eac3AtmosSurroundExMode)[keyof typeof Eac3AtmosSurroundExMode];
|
|
235
292
|
export interface Eac3AtmosSettings {
|
|
236
293
|
Bitrate?: number;
|
|
237
294
|
BitstreamMode?: Eac3AtmosBitstreamMode | string;
|
|
@@ -251,78 +308,104 @@ export interface Eac3AtmosSettings {
|
|
|
251
308
|
StereoDownmix?: Eac3AtmosStereoDownmix | string;
|
|
252
309
|
SurroundExMode?: Eac3AtmosSurroundExMode | string;
|
|
253
310
|
}
|
|
254
|
-
export declare
|
|
255
|
-
ATTENUATE_3_DB
|
|
256
|
-
NONE
|
|
257
|
-
}
|
|
258
|
-
export
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
}
|
|
274
|
-
export
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
}
|
|
316
|
-
export
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
311
|
+
export declare const Eac3AttenuationControl: {
|
|
312
|
+
readonly ATTENUATE_3_DB: "ATTENUATE_3_DB";
|
|
313
|
+
readonly NONE: "NONE";
|
|
314
|
+
};
|
|
315
|
+
export type Eac3AttenuationControl =
|
|
316
|
+
(typeof Eac3AttenuationControl)[keyof typeof Eac3AttenuationControl];
|
|
317
|
+
export declare const Eac3BitstreamMode: {
|
|
318
|
+
readonly COMMENTARY: "COMMENTARY";
|
|
319
|
+
readonly COMPLETE_MAIN: "COMPLETE_MAIN";
|
|
320
|
+
readonly EMERGENCY: "EMERGENCY";
|
|
321
|
+
readonly HEARING_IMPAIRED: "HEARING_IMPAIRED";
|
|
322
|
+
readonly VISUALLY_IMPAIRED: "VISUALLY_IMPAIRED";
|
|
323
|
+
};
|
|
324
|
+
export type Eac3BitstreamMode =
|
|
325
|
+
(typeof Eac3BitstreamMode)[keyof typeof Eac3BitstreamMode];
|
|
326
|
+
export declare const Eac3CodingMode: {
|
|
327
|
+
readonly CODING_MODE_1_0: "CODING_MODE_1_0";
|
|
328
|
+
readonly CODING_MODE_2_0: "CODING_MODE_2_0";
|
|
329
|
+
readonly CODING_MODE_3_2: "CODING_MODE_3_2";
|
|
330
|
+
};
|
|
331
|
+
export type Eac3CodingMode =
|
|
332
|
+
(typeof Eac3CodingMode)[keyof typeof Eac3CodingMode];
|
|
333
|
+
export declare const Eac3DcFilter: {
|
|
334
|
+
readonly DISABLED: "DISABLED";
|
|
335
|
+
readonly ENABLED: "ENABLED";
|
|
336
|
+
};
|
|
337
|
+
export type Eac3DcFilter = (typeof Eac3DcFilter)[keyof typeof Eac3DcFilter];
|
|
338
|
+
export declare const Eac3DynamicRangeCompressionLine: {
|
|
339
|
+
readonly FILM_LIGHT: "FILM_LIGHT";
|
|
340
|
+
readonly FILM_STANDARD: "FILM_STANDARD";
|
|
341
|
+
readonly MUSIC_LIGHT: "MUSIC_LIGHT";
|
|
342
|
+
readonly MUSIC_STANDARD: "MUSIC_STANDARD";
|
|
343
|
+
readonly NONE: "NONE";
|
|
344
|
+
readonly SPEECH: "SPEECH";
|
|
345
|
+
};
|
|
346
|
+
export type Eac3DynamicRangeCompressionLine =
|
|
347
|
+
(typeof Eac3DynamicRangeCompressionLine)[keyof typeof Eac3DynamicRangeCompressionLine];
|
|
348
|
+
export declare const Eac3DynamicRangeCompressionRf: {
|
|
349
|
+
readonly FILM_LIGHT: "FILM_LIGHT";
|
|
350
|
+
readonly FILM_STANDARD: "FILM_STANDARD";
|
|
351
|
+
readonly MUSIC_LIGHT: "MUSIC_LIGHT";
|
|
352
|
+
readonly MUSIC_STANDARD: "MUSIC_STANDARD";
|
|
353
|
+
readonly NONE: "NONE";
|
|
354
|
+
readonly SPEECH: "SPEECH";
|
|
355
|
+
};
|
|
356
|
+
export type Eac3DynamicRangeCompressionRf =
|
|
357
|
+
(typeof Eac3DynamicRangeCompressionRf)[keyof typeof Eac3DynamicRangeCompressionRf];
|
|
358
|
+
export declare const Eac3LfeControl: {
|
|
359
|
+
readonly LFE: "LFE";
|
|
360
|
+
readonly NO_LFE: "NO_LFE";
|
|
361
|
+
};
|
|
362
|
+
export type Eac3LfeControl =
|
|
363
|
+
(typeof Eac3LfeControl)[keyof typeof Eac3LfeControl];
|
|
364
|
+
export declare const Eac3LfeFilter: {
|
|
365
|
+
readonly DISABLED: "DISABLED";
|
|
366
|
+
readonly ENABLED: "ENABLED";
|
|
367
|
+
};
|
|
368
|
+
export type Eac3LfeFilter = (typeof Eac3LfeFilter)[keyof typeof Eac3LfeFilter];
|
|
369
|
+
export declare const Eac3MetadataControl: {
|
|
370
|
+
readonly FOLLOW_INPUT: "FOLLOW_INPUT";
|
|
371
|
+
readonly USE_CONFIGURED: "USE_CONFIGURED";
|
|
372
|
+
};
|
|
373
|
+
export type Eac3MetadataControl =
|
|
374
|
+
(typeof Eac3MetadataControl)[keyof typeof Eac3MetadataControl];
|
|
375
|
+
export declare const Eac3PassthroughControl: {
|
|
376
|
+
readonly NO_PASSTHROUGH: "NO_PASSTHROUGH";
|
|
377
|
+
readonly WHEN_POSSIBLE: "WHEN_POSSIBLE";
|
|
378
|
+
};
|
|
379
|
+
export type Eac3PassthroughControl =
|
|
380
|
+
(typeof Eac3PassthroughControl)[keyof typeof Eac3PassthroughControl];
|
|
381
|
+
export declare const Eac3PhaseControl: {
|
|
382
|
+
readonly NO_SHIFT: "NO_SHIFT";
|
|
383
|
+
readonly SHIFT_90_DEGREES: "SHIFT_90_DEGREES";
|
|
384
|
+
};
|
|
385
|
+
export type Eac3PhaseControl =
|
|
386
|
+
(typeof Eac3PhaseControl)[keyof typeof Eac3PhaseControl];
|
|
387
|
+
export declare const Eac3StereoDownmix: {
|
|
388
|
+
readonly DPL2: "DPL2";
|
|
389
|
+
readonly LO_RO: "LO_RO";
|
|
390
|
+
readonly LT_RT: "LT_RT";
|
|
391
|
+
readonly NOT_INDICATED: "NOT_INDICATED";
|
|
392
|
+
};
|
|
393
|
+
export type Eac3StereoDownmix =
|
|
394
|
+
(typeof Eac3StereoDownmix)[keyof typeof Eac3StereoDownmix];
|
|
395
|
+
export declare const Eac3SurroundExMode: {
|
|
396
|
+
readonly DISABLED: "DISABLED";
|
|
397
|
+
readonly ENABLED: "ENABLED";
|
|
398
|
+
readonly NOT_INDICATED: "NOT_INDICATED";
|
|
399
|
+
};
|
|
400
|
+
export type Eac3SurroundExMode =
|
|
401
|
+
(typeof Eac3SurroundExMode)[keyof typeof Eac3SurroundExMode];
|
|
402
|
+
export declare const Eac3SurroundMode: {
|
|
403
|
+
readonly DISABLED: "DISABLED";
|
|
404
|
+
readonly ENABLED: "ENABLED";
|
|
405
|
+
readonly NOT_INDICATED: "NOT_INDICATED";
|
|
406
|
+
};
|
|
407
|
+
export type Eac3SurroundMode =
|
|
408
|
+
(typeof Eac3SurroundMode)[keyof typeof Eac3SurroundMode];
|
|
326
409
|
export interface Eac3Settings {
|
|
327
410
|
AttenuationControl?: Eac3AttenuationControl | string;
|
|
328
411
|
Bitrate?: number;
|
|
@@ -351,10 +434,12 @@ export interface Mp2Settings {
|
|
|
351
434
|
Channels?: number;
|
|
352
435
|
SampleRate?: number;
|
|
353
436
|
}
|
|
354
|
-
export declare
|
|
355
|
-
CBR
|
|
356
|
-
VBR
|
|
357
|
-
}
|
|
437
|
+
export declare const Mp3RateControlMode: {
|
|
438
|
+
readonly CBR: "CBR";
|
|
439
|
+
readonly VBR: "VBR";
|
|
440
|
+
};
|
|
441
|
+
export type Mp3RateControlMode =
|
|
442
|
+
(typeof Mp3RateControlMode)[keyof typeof Mp3RateControlMode];
|
|
358
443
|
export interface Mp3Settings {
|
|
359
444
|
Bitrate?: number;
|
|
360
445
|
Channels?: number;
|
|
@@ -372,10 +457,11 @@ export interface VorbisSettings {
|
|
|
372
457
|
SampleRate?: number;
|
|
373
458
|
VbrQuality?: number;
|
|
374
459
|
}
|
|
375
|
-
export declare
|
|
376
|
-
RF64
|
|
377
|
-
RIFF
|
|
378
|
-
}
|
|
460
|
+
export declare const WavFormat: {
|
|
461
|
+
readonly RF64: "RF64";
|
|
462
|
+
readonly RIFF: "RIFF";
|
|
463
|
+
};
|
|
464
|
+
export type WavFormat = (typeof WavFormat)[keyof typeof WavFormat];
|
|
379
465
|
export interface WavSettings {
|
|
380
466
|
BitDepth?: number;
|
|
381
467
|
Channels?: number;
|
|
@@ -395,204 +481,207 @@ export interface AudioCodecSettings {
|
|
|
395
481
|
VorbisSettings?: VorbisSettings;
|
|
396
482
|
WavSettings?: WavSettings;
|
|
397
483
|
}
|
|
398
|
-
export declare
|
|
399
|
-
AAR
|
|
400
|
-
ABK
|
|
401
|
-
AFR
|
|
402
|
-
AKA
|
|
403
|
-
AMH
|
|
404
|
-
ARA
|
|
405
|
-
ARG
|
|
406
|
-
ASM
|
|
407
|
-
AVA
|
|
408
|
-
AVE
|
|
409
|
-
AYM
|
|
410
|
-
AZE
|
|
411
|
-
BAK
|
|
412
|
-
BAM
|
|
413
|
-
BEL
|
|
414
|
-
BEN
|
|
415
|
-
BIH
|
|
416
|
-
BIS
|
|
417
|
-
BOD
|
|
418
|
-
BOS
|
|
419
|
-
BRE
|
|
420
|
-
BUL
|
|
421
|
-
CAT
|
|
422
|
-
CES
|
|
423
|
-
CHA
|
|
424
|
-
CHE
|
|
425
|
-
CHU
|
|
426
|
-
CHV
|
|
427
|
-
COR
|
|
428
|
-
COS
|
|
429
|
-
CRE
|
|
430
|
-
CYM
|
|
431
|
-
DAN
|
|
432
|
-
DEU
|
|
433
|
-
DIV
|
|
434
|
-
DZO
|
|
435
|
-
ELL
|
|
436
|
-
ENG
|
|
437
|
-
ENM
|
|
438
|
-
EPO
|
|
439
|
-
EST
|
|
440
|
-
EUS
|
|
441
|
-
EWE
|
|
442
|
-
FAO
|
|
443
|
-
FAS
|
|
444
|
-
FIJ
|
|
445
|
-
FIN
|
|
446
|
-
FRA
|
|
447
|
-
FRM
|
|
448
|
-
FRY
|
|
449
|
-
FUL
|
|
450
|
-
GER
|
|
451
|
-
GLA
|
|
452
|
-
GLE
|
|
453
|
-
GLG
|
|
454
|
-
GLV
|
|
455
|
-
GRN
|
|
456
|
-
GUJ
|
|
457
|
-
HAT
|
|
458
|
-
HAU
|
|
459
|
-
HEB
|
|
460
|
-
HER
|
|
461
|
-
HIN
|
|
462
|
-
HMO
|
|
463
|
-
HRV
|
|
464
|
-
HUN
|
|
465
|
-
HYE
|
|
466
|
-
IBO
|
|
467
|
-
IDO
|
|
468
|
-
III
|
|
469
|
-
IKU
|
|
470
|
-
ILE
|
|
471
|
-
INA
|
|
472
|
-
IND
|
|
473
|
-
IPK
|
|
474
|
-
ISL
|
|
475
|
-
ITA
|
|
476
|
-
JAV
|
|
477
|
-
JPN
|
|
478
|
-
KAL
|
|
479
|
-
KAN
|
|
480
|
-
KAS
|
|
481
|
-
KAT
|
|
482
|
-
KAU
|
|
483
|
-
KAZ
|
|
484
|
-
KHM
|
|
485
|
-
KIK
|
|
486
|
-
KIN
|
|
487
|
-
KIR
|
|
488
|
-
KOM
|
|
489
|
-
KON
|
|
490
|
-
KOR
|
|
491
|
-
KUA
|
|
492
|
-
KUR
|
|
493
|
-
LAO
|
|
494
|
-
LAT
|
|
495
|
-
LAV
|
|
496
|
-
LIM
|
|
497
|
-
LIN
|
|
498
|
-
LIT
|
|
499
|
-
LTZ
|
|
500
|
-
LUB
|
|
501
|
-
LUG
|
|
502
|
-
MAH
|
|
503
|
-
MAL
|
|
504
|
-
MAR
|
|
505
|
-
MKD
|
|
506
|
-
MLG
|
|
507
|
-
MLT
|
|
508
|
-
MON
|
|
509
|
-
MRI
|
|
510
|
-
MSA
|
|
511
|
-
MYA
|
|
512
|
-
NAU
|
|
513
|
-
NAV
|
|
514
|
-
NBL
|
|
515
|
-
NDE
|
|
516
|
-
NDO
|
|
517
|
-
NEP
|
|
518
|
-
NLD
|
|
519
|
-
NNO
|
|
520
|
-
NOB
|
|
521
|
-
NOR
|
|
522
|
-
NYA
|
|
523
|
-
OCI
|
|
524
|
-
OJI
|
|
525
|
-
ORI
|
|
526
|
-
ORJ
|
|
527
|
-
ORM
|
|
528
|
-
OSS
|
|
529
|
-
PAN
|
|
530
|
-
PLI
|
|
531
|
-
POL
|
|
532
|
-
POR
|
|
533
|
-
PUS
|
|
534
|
-
QAA
|
|
535
|
-
QPC
|
|
536
|
-
QUE
|
|
537
|
-
ROH
|
|
538
|
-
RON
|
|
539
|
-
RUN
|
|
540
|
-
RUS
|
|
541
|
-
SAG
|
|
542
|
-
SAN
|
|
543
|
-
SIN
|
|
544
|
-
SLK
|
|
545
|
-
SLV
|
|
546
|
-
SME
|
|
547
|
-
SMO
|
|
548
|
-
SNA
|
|
549
|
-
SND
|
|
550
|
-
SOM
|
|
551
|
-
SOT
|
|
552
|
-
SPA
|
|
553
|
-
SQI
|
|
554
|
-
SRB
|
|
555
|
-
SRD
|
|
556
|
-
SRP
|
|
557
|
-
SSW
|
|
558
|
-
SUN
|
|
559
|
-
SWA
|
|
560
|
-
SWE
|
|
561
|
-
TAH
|
|
562
|
-
TAM
|
|
563
|
-
TAT
|
|
564
|
-
TEL
|
|
565
|
-
TGK
|
|
566
|
-
TGL
|
|
567
|
-
THA
|
|
568
|
-
TIR
|
|
569
|
-
TNG
|
|
570
|
-
TON
|
|
571
|
-
TSN
|
|
572
|
-
TSO
|
|
573
|
-
TUK
|
|
574
|
-
TUR
|
|
575
|
-
TWI
|
|
576
|
-
UIG
|
|
577
|
-
UKR
|
|
578
|
-
URD
|
|
579
|
-
UZB
|
|
580
|
-
VEN
|
|
581
|
-
VIE
|
|
582
|
-
VOL
|
|
583
|
-
WLN
|
|
584
|
-
WOL
|
|
585
|
-
XHO
|
|
586
|
-
YID
|
|
587
|
-
YOR
|
|
588
|
-
ZHA
|
|
589
|
-
ZHO
|
|
590
|
-
ZUL
|
|
591
|
-
}
|
|
592
|
-
export
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
484
|
+
export declare const LanguageCode: {
|
|
485
|
+
readonly AAR: "AAR";
|
|
486
|
+
readonly ABK: "ABK";
|
|
487
|
+
readonly AFR: "AFR";
|
|
488
|
+
readonly AKA: "AKA";
|
|
489
|
+
readonly AMH: "AMH";
|
|
490
|
+
readonly ARA: "ARA";
|
|
491
|
+
readonly ARG: "ARG";
|
|
492
|
+
readonly ASM: "ASM";
|
|
493
|
+
readonly AVA: "AVA";
|
|
494
|
+
readonly AVE: "AVE";
|
|
495
|
+
readonly AYM: "AYM";
|
|
496
|
+
readonly AZE: "AZE";
|
|
497
|
+
readonly BAK: "BAK";
|
|
498
|
+
readonly BAM: "BAM";
|
|
499
|
+
readonly BEL: "BEL";
|
|
500
|
+
readonly BEN: "BEN";
|
|
501
|
+
readonly BIH: "BIH";
|
|
502
|
+
readonly BIS: "BIS";
|
|
503
|
+
readonly BOD: "BOD";
|
|
504
|
+
readonly BOS: "BOS";
|
|
505
|
+
readonly BRE: "BRE";
|
|
506
|
+
readonly BUL: "BUL";
|
|
507
|
+
readonly CAT: "CAT";
|
|
508
|
+
readonly CES: "CES";
|
|
509
|
+
readonly CHA: "CHA";
|
|
510
|
+
readonly CHE: "CHE";
|
|
511
|
+
readonly CHU: "CHU";
|
|
512
|
+
readonly CHV: "CHV";
|
|
513
|
+
readonly COR: "COR";
|
|
514
|
+
readonly COS: "COS";
|
|
515
|
+
readonly CRE: "CRE";
|
|
516
|
+
readonly CYM: "CYM";
|
|
517
|
+
readonly DAN: "DAN";
|
|
518
|
+
readonly DEU: "DEU";
|
|
519
|
+
readonly DIV: "DIV";
|
|
520
|
+
readonly DZO: "DZO";
|
|
521
|
+
readonly ELL: "ELL";
|
|
522
|
+
readonly ENG: "ENG";
|
|
523
|
+
readonly ENM: "ENM";
|
|
524
|
+
readonly EPO: "EPO";
|
|
525
|
+
readonly EST: "EST";
|
|
526
|
+
readonly EUS: "EUS";
|
|
527
|
+
readonly EWE: "EWE";
|
|
528
|
+
readonly FAO: "FAO";
|
|
529
|
+
readonly FAS: "FAS";
|
|
530
|
+
readonly FIJ: "FIJ";
|
|
531
|
+
readonly FIN: "FIN";
|
|
532
|
+
readonly FRA: "FRA";
|
|
533
|
+
readonly FRM: "FRM";
|
|
534
|
+
readonly FRY: "FRY";
|
|
535
|
+
readonly FUL: "FUL";
|
|
536
|
+
readonly GER: "GER";
|
|
537
|
+
readonly GLA: "GLA";
|
|
538
|
+
readonly GLE: "GLE";
|
|
539
|
+
readonly GLG: "GLG";
|
|
540
|
+
readonly GLV: "GLV";
|
|
541
|
+
readonly GRN: "GRN";
|
|
542
|
+
readonly GUJ: "GUJ";
|
|
543
|
+
readonly HAT: "HAT";
|
|
544
|
+
readonly HAU: "HAU";
|
|
545
|
+
readonly HEB: "HEB";
|
|
546
|
+
readonly HER: "HER";
|
|
547
|
+
readonly HIN: "HIN";
|
|
548
|
+
readonly HMO: "HMO";
|
|
549
|
+
readonly HRV: "HRV";
|
|
550
|
+
readonly HUN: "HUN";
|
|
551
|
+
readonly HYE: "HYE";
|
|
552
|
+
readonly IBO: "IBO";
|
|
553
|
+
readonly IDO: "IDO";
|
|
554
|
+
readonly III: "III";
|
|
555
|
+
readonly IKU: "IKU";
|
|
556
|
+
readonly ILE: "ILE";
|
|
557
|
+
readonly INA: "INA";
|
|
558
|
+
readonly IND: "IND";
|
|
559
|
+
readonly IPK: "IPK";
|
|
560
|
+
readonly ISL: "ISL";
|
|
561
|
+
readonly ITA: "ITA";
|
|
562
|
+
readonly JAV: "JAV";
|
|
563
|
+
readonly JPN: "JPN";
|
|
564
|
+
readonly KAL: "KAL";
|
|
565
|
+
readonly KAN: "KAN";
|
|
566
|
+
readonly KAS: "KAS";
|
|
567
|
+
readonly KAT: "KAT";
|
|
568
|
+
readonly KAU: "KAU";
|
|
569
|
+
readonly KAZ: "KAZ";
|
|
570
|
+
readonly KHM: "KHM";
|
|
571
|
+
readonly KIK: "KIK";
|
|
572
|
+
readonly KIN: "KIN";
|
|
573
|
+
readonly KIR: "KIR";
|
|
574
|
+
readonly KOM: "KOM";
|
|
575
|
+
readonly KON: "KON";
|
|
576
|
+
readonly KOR: "KOR";
|
|
577
|
+
readonly KUA: "KUA";
|
|
578
|
+
readonly KUR: "KUR";
|
|
579
|
+
readonly LAO: "LAO";
|
|
580
|
+
readonly LAT: "LAT";
|
|
581
|
+
readonly LAV: "LAV";
|
|
582
|
+
readonly LIM: "LIM";
|
|
583
|
+
readonly LIN: "LIN";
|
|
584
|
+
readonly LIT: "LIT";
|
|
585
|
+
readonly LTZ: "LTZ";
|
|
586
|
+
readonly LUB: "LUB";
|
|
587
|
+
readonly LUG: "LUG";
|
|
588
|
+
readonly MAH: "MAH";
|
|
589
|
+
readonly MAL: "MAL";
|
|
590
|
+
readonly MAR: "MAR";
|
|
591
|
+
readonly MKD: "MKD";
|
|
592
|
+
readonly MLG: "MLG";
|
|
593
|
+
readonly MLT: "MLT";
|
|
594
|
+
readonly MON: "MON";
|
|
595
|
+
readonly MRI: "MRI";
|
|
596
|
+
readonly MSA: "MSA";
|
|
597
|
+
readonly MYA: "MYA";
|
|
598
|
+
readonly NAU: "NAU";
|
|
599
|
+
readonly NAV: "NAV";
|
|
600
|
+
readonly NBL: "NBL";
|
|
601
|
+
readonly NDE: "NDE";
|
|
602
|
+
readonly NDO: "NDO";
|
|
603
|
+
readonly NEP: "NEP";
|
|
604
|
+
readonly NLD: "NLD";
|
|
605
|
+
readonly NNO: "NNO";
|
|
606
|
+
readonly NOB: "NOB";
|
|
607
|
+
readonly NOR: "NOR";
|
|
608
|
+
readonly NYA: "NYA";
|
|
609
|
+
readonly OCI: "OCI";
|
|
610
|
+
readonly OJI: "OJI";
|
|
611
|
+
readonly ORI: "ORI";
|
|
612
|
+
readonly ORJ: "ORJ";
|
|
613
|
+
readonly ORM: "ORM";
|
|
614
|
+
readonly OSS: "OSS";
|
|
615
|
+
readonly PAN: "PAN";
|
|
616
|
+
readonly PLI: "PLI";
|
|
617
|
+
readonly POL: "POL";
|
|
618
|
+
readonly POR: "POR";
|
|
619
|
+
readonly PUS: "PUS";
|
|
620
|
+
readonly QAA: "QAA";
|
|
621
|
+
readonly QPC: "QPC";
|
|
622
|
+
readonly QUE: "QUE";
|
|
623
|
+
readonly ROH: "ROH";
|
|
624
|
+
readonly RON: "RON";
|
|
625
|
+
readonly RUN: "RUN";
|
|
626
|
+
readonly RUS: "RUS";
|
|
627
|
+
readonly SAG: "SAG";
|
|
628
|
+
readonly SAN: "SAN";
|
|
629
|
+
readonly SIN: "SIN";
|
|
630
|
+
readonly SLK: "SLK";
|
|
631
|
+
readonly SLV: "SLV";
|
|
632
|
+
readonly SME: "SME";
|
|
633
|
+
readonly SMO: "SMO";
|
|
634
|
+
readonly SNA: "SNA";
|
|
635
|
+
readonly SND: "SND";
|
|
636
|
+
readonly SOM: "SOM";
|
|
637
|
+
readonly SOT: "SOT";
|
|
638
|
+
readonly SPA: "SPA";
|
|
639
|
+
readonly SQI: "SQI";
|
|
640
|
+
readonly SRB: "SRB";
|
|
641
|
+
readonly SRD: "SRD";
|
|
642
|
+
readonly SRP: "SRP";
|
|
643
|
+
readonly SSW: "SSW";
|
|
644
|
+
readonly SUN: "SUN";
|
|
645
|
+
readonly SWA: "SWA";
|
|
646
|
+
readonly SWE: "SWE";
|
|
647
|
+
readonly TAH: "TAH";
|
|
648
|
+
readonly TAM: "TAM";
|
|
649
|
+
readonly TAT: "TAT";
|
|
650
|
+
readonly TEL: "TEL";
|
|
651
|
+
readonly TGK: "TGK";
|
|
652
|
+
readonly TGL: "TGL";
|
|
653
|
+
readonly THA: "THA";
|
|
654
|
+
readonly TIR: "TIR";
|
|
655
|
+
readonly TNG: "TNG";
|
|
656
|
+
readonly TON: "TON";
|
|
657
|
+
readonly TSN: "TSN";
|
|
658
|
+
readonly TSO: "TSO";
|
|
659
|
+
readonly TUK: "TUK";
|
|
660
|
+
readonly TUR: "TUR";
|
|
661
|
+
readonly TWI: "TWI";
|
|
662
|
+
readonly UIG: "UIG";
|
|
663
|
+
readonly UKR: "UKR";
|
|
664
|
+
readonly URD: "URD";
|
|
665
|
+
readonly UZB: "UZB";
|
|
666
|
+
readonly VEN: "VEN";
|
|
667
|
+
readonly VIE: "VIE";
|
|
668
|
+
readonly VOL: "VOL";
|
|
669
|
+
readonly WLN: "WLN";
|
|
670
|
+
readonly WOL: "WOL";
|
|
671
|
+
readonly XHO: "XHO";
|
|
672
|
+
readonly YID: "YID";
|
|
673
|
+
readonly YOR: "YOR";
|
|
674
|
+
readonly ZHA: "ZHA";
|
|
675
|
+
readonly ZHO: "ZHO";
|
|
676
|
+
readonly ZUL: "ZUL";
|
|
677
|
+
};
|
|
678
|
+
export type LanguageCode = (typeof LanguageCode)[keyof typeof LanguageCode];
|
|
679
|
+
export declare const AudioLanguageCodeControl: {
|
|
680
|
+
readonly FOLLOW_INPUT: "FOLLOW_INPUT";
|
|
681
|
+
readonly USE_CONFIGURED: "USE_CONFIGURED";
|
|
682
|
+
};
|
|
683
|
+
export type AudioLanguageCodeControl =
|
|
684
|
+
(typeof AudioLanguageCodeControl)[keyof typeof AudioLanguageCodeControl];
|
|
596
685
|
export interface OutputChannelMapping {
|
|
597
686
|
InputChannels?: number[];
|
|
598
687
|
InputChannelsFineTune?: number[];
|
|
@@ -630,12 +719,13 @@ export interface MinTopRenditionSize {
|
|
|
630
719
|
Height?: number;
|
|
631
720
|
Width?: number;
|
|
632
721
|
}
|
|
633
|
-
export declare
|
|
634
|
-
ALLOWED_RENDITIONS
|
|
635
|
-
FORCE_INCLUDE_RENDITIONS
|
|
636
|
-
MIN_BOTTOM_RENDITION_SIZE
|
|
637
|
-
MIN_TOP_RENDITION_SIZE
|
|
638
|
-
}
|
|
722
|
+
export declare const RuleType: {
|
|
723
|
+
readonly ALLOWED_RENDITIONS: "ALLOWED_RENDITIONS";
|
|
724
|
+
readonly FORCE_INCLUDE_RENDITIONS: "FORCE_INCLUDE_RENDITIONS";
|
|
725
|
+
readonly MIN_BOTTOM_RENDITION_SIZE: "MIN_BOTTOM_RENDITION_SIZE";
|
|
726
|
+
readonly MIN_TOP_RENDITION_SIZE: "MIN_TOP_RENDITION_SIZE";
|
|
727
|
+
};
|
|
728
|
+
export type RuleType = (typeof RuleType)[keyof typeof RuleType];
|
|
639
729
|
export interface AutomatedAbrRule {
|
|
640
730
|
AllowedRenditions?: AllowedRenditionSize[];
|
|
641
731
|
ForceIncludeRenditions?: ForceIncludeRenditionSize[];
|
|
@@ -643,67 +733,86 @@ export interface AutomatedAbrRule {
|
|
|
643
733
|
MinTopRenditionSize?: MinTopRenditionSize;
|
|
644
734
|
Type?: RuleType | string;
|
|
645
735
|
}
|
|
646
|
-
export declare
|
|
647
|
-
AUTO
|
|
648
|
-
CENTERED
|
|
649
|
-
LEFT
|
|
650
|
-
}
|
|
651
|
-
export
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
|
|
676
|
-
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
|
|
736
|
+
export declare const BurninSubtitleAlignment: {
|
|
737
|
+
readonly AUTO: "AUTO";
|
|
738
|
+
readonly CENTERED: "CENTERED";
|
|
739
|
+
readonly LEFT: "LEFT";
|
|
740
|
+
};
|
|
741
|
+
export type BurninSubtitleAlignment =
|
|
742
|
+
(typeof BurninSubtitleAlignment)[keyof typeof BurninSubtitleAlignment];
|
|
743
|
+
export declare const BurninSubtitleApplyFontColor: {
|
|
744
|
+
readonly ALL_TEXT: "ALL_TEXT";
|
|
745
|
+
readonly WHITE_TEXT_ONLY: "WHITE_TEXT_ONLY";
|
|
746
|
+
};
|
|
747
|
+
export type BurninSubtitleApplyFontColor =
|
|
748
|
+
(typeof BurninSubtitleApplyFontColor)[keyof typeof BurninSubtitleApplyFontColor];
|
|
749
|
+
export declare const BurninSubtitleBackgroundColor: {
|
|
750
|
+
readonly AUTO: "AUTO";
|
|
751
|
+
readonly BLACK: "BLACK";
|
|
752
|
+
readonly NONE: "NONE";
|
|
753
|
+
readonly WHITE: "WHITE";
|
|
754
|
+
};
|
|
755
|
+
export type BurninSubtitleBackgroundColor =
|
|
756
|
+
(typeof BurninSubtitleBackgroundColor)[keyof typeof BurninSubtitleBackgroundColor];
|
|
757
|
+
export declare const BurninSubtitleFallbackFont: {
|
|
758
|
+
readonly BEST_MATCH: "BEST_MATCH";
|
|
759
|
+
readonly MONOSPACED_SANSSERIF: "MONOSPACED_SANSSERIF";
|
|
760
|
+
readonly MONOSPACED_SERIF: "MONOSPACED_SERIF";
|
|
761
|
+
readonly PROPORTIONAL_SANSSERIF: "PROPORTIONAL_SANSSERIF";
|
|
762
|
+
readonly PROPORTIONAL_SERIF: "PROPORTIONAL_SERIF";
|
|
763
|
+
};
|
|
764
|
+
export type BurninSubtitleFallbackFont =
|
|
765
|
+
(typeof BurninSubtitleFallbackFont)[keyof typeof BurninSubtitleFallbackFont];
|
|
766
|
+
export declare const BurninSubtitleFontColor: {
|
|
767
|
+
readonly AUTO: "AUTO";
|
|
768
|
+
readonly BLACK: "BLACK";
|
|
769
|
+
readonly BLUE: "BLUE";
|
|
770
|
+
readonly GREEN: "GREEN";
|
|
771
|
+
readonly HEX: "HEX";
|
|
772
|
+
readonly RED: "RED";
|
|
773
|
+
readonly WHITE: "WHITE";
|
|
774
|
+
readonly YELLOW: "YELLOW";
|
|
775
|
+
};
|
|
776
|
+
export type BurninSubtitleFontColor =
|
|
777
|
+
(typeof BurninSubtitleFontColor)[keyof typeof BurninSubtitleFontColor];
|
|
778
|
+
export declare const FontScript: {
|
|
779
|
+
readonly AUTOMATIC: "AUTOMATIC";
|
|
780
|
+
readonly HANS: "HANS";
|
|
781
|
+
readonly HANT: "HANT";
|
|
782
|
+
};
|
|
783
|
+
export type FontScript = (typeof FontScript)[keyof typeof FontScript];
|
|
784
|
+
export declare const BurninSubtitleOutlineColor: {
|
|
785
|
+
readonly AUTO: "AUTO";
|
|
786
|
+
readonly BLACK: "BLACK";
|
|
787
|
+
readonly BLUE: "BLUE";
|
|
788
|
+
readonly GREEN: "GREEN";
|
|
789
|
+
readonly RED: "RED";
|
|
790
|
+
readonly WHITE: "WHITE";
|
|
791
|
+
readonly YELLOW: "YELLOW";
|
|
792
|
+
};
|
|
793
|
+
export type BurninSubtitleOutlineColor =
|
|
794
|
+
(typeof BurninSubtitleOutlineColor)[keyof typeof BurninSubtitleOutlineColor];
|
|
795
|
+
export declare const BurninSubtitleShadowColor: {
|
|
796
|
+
readonly AUTO: "AUTO";
|
|
797
|
+
readonly BLACK: "BLACK";
|
|
798
|
+
readonly NONE: "NONE";
|
|
799
|
+
readonly WHITE: "WHITE";
|
|
800
|
+
};
|
|
801
|
+
export type BurninSubtitleShadowColor =
|
|
802
|
+
(typeof BurninSubtitleShadowColor)[keyof typeof BurninSubtitleShadowColor];
|
|
803
|
+
export declare const BurnInSubtitleStylePassthrough: {
|
|
804
|
+
readonly DISABLED: "DISABLED";
|
|
805
|
+
readonly ENABLED: "ENABLED";
|
|
806
|
+
};
|
|
807
|
+
export type BurnInSubtitleStylePassthrough =
|
|
808
|
+
(typeof BurnInSubtitleStylePassthrough)[keyof typeof BurnInSubtitleStylePassthrough];
|
|
809
|
+
export declare const BurninSubtitleTeletextSpacing: {
|
|
810
|
+
readonly AUTO: "AUTO";
|
|
811
|
+
readonly FIXED_GRID: "FIXED_GRID";
|
|
812
|
+
readonly PROPORTIONAL: "PROPORTIONAL";
|
|
813
|
+
};
|
|
814
|
+
export type BurninSubtitleTeletextSpacing =
|
|
815
|
+
(typeof BurninSubtitleTeletextSpacing)[keyof typeof BurninSubtitleTeletextSpacing];
|
|
707
816
|
export interface BurninDestinationSettings {
|
|
708
817
|
Alignment?: BurninSubtitleAlignment | string;
|
|
709
818
|
ApplyFontColor?: BurninSubtitleApplyFontColor | string;
|
|
@@ -727,85 +836,109 @@ export interface BurninDestinationSettings {
|
|
|
727
836
|
XPosition?: number;
|
|
728
837
|
YPosition?: number;
|
|
729
838
|
}
|
|
730
|
-
export declare
|
|
731
|
-
BURN_IN
|
|
732
|
-
DVB_SUB
|
|
733
|
-
EMBEDDED
|
|
734
|
-
EMBEDDED_PLUS_SCTE20
|
|
735
|
-
IMSC
|
|
736
|
-
SCC
|
|
737
|
-
SCTE20_PLUS_EMBEDDED
|
|
738
|
-
SMI
|
|
739
|
-
SRT
|
|
740
|
-
TELETEXT
|
|
741
|
-
TTML
|
|
742
|
-
WEBVTT
|
|
743
|
-
}
|
|
744
|
-
export
|
|
745
|
-
|
|
746
|
-
|
|
747
|
-
|
|
748
|
-
|
|
749
|
-
|
|
750
|
-
|
|
751
|
-
|
|
752
|
-
|
|
753
|
-
export declare
|
|
754
|
-
|
|
755
|
-
|
|
756
|
-
|
|
757
|
-
|
|
758
|
-
|
|
759
|
-
export declare
|
|
760
|
-
|
|
761
|
-
|
|
762
|
-
|
|
763
|
-
|
|
764
|
-
|
|
765
|
-
|
|
766
|
-
|
|
767
|
-
|
|
768
|
-
|
|
769
|
-
|
|
770
|
-
|
|
771
|
-
|
|
772
|
-
|
|
773
|
-
|
|
774
|
-
|
|
775
|
-
|
|
776
|
-
|
|
777
|
-
|
|
778
|
-
|
|
779
|
-
|
|
780
|
-
}
|
|
781
|
-
export
|
|
782
|
-
|
|
783
|
-
|
|
784
|
-
|
|
785
|
-
|
|
786
|
-
|
|
787
|
-
|
|
788
|
-
|
|
789
|
-
|
|
790
|
-
|
|
791
|
-
|
|
792
|
-
|
|
793
|
-
|
|
794
|
-
|
|
795
|
-
|
|
796
|
-
|
|
797
|
-
|
|
798
|
-
|
|
799
|
-
|
|
800
|
-
|
|
801
|
-
|
|
802
|
-
|
|
803
|
-
}
|
|
804
|
-
export
|
|
805
|
-
|
|
806
|
-
|
|
807
|
-
|
|
808
|
-
|
|
839
|
+
export declare const CaptionDestinationType: {
|
|
840
|
+
readonly BURN_IN: "BURN_IN";
|
|
841
|
+
readonly DVB_SUB: "DVB_SUB";
|
|
842
|
+
readonly EMBEDDED: "EMBEDDED";
|
|
843
|
+
readonly EMBEDDED_PLUS_SCTE20: "EMBEDDED_PLUS_SCTE20";
|
|
844
|
+
readonly IMSC: "IMSC";
|
|
845
|
+
readonly SCC: "SCC";
|
|
846
|
+
readonly SCTE20_PLUS_EMBEDDED: "SCTE20_PLUS_EMBEDDED";
|
|
847
|
+
readonly SMI: "SMI";
|
|
848
|
+
readonly SRT: "SRT";
|
|
849
|
+
readonly TELETEXT: "TELETEXT";
|
|
850
|
+
readonly TTML: "TTML";
|
|
851
|
+
readonly WEBVTT: "WEBVTT";
|
|
852
|
+
};
|
|
853
|
+
export type CaptionDestinationType =
|
|
854
|
+
(typeof CaptionDestinationType)[keyof typeof CaptionDestinationType];
|
|
855
|
+
export declare const DvbSubtitleAlignment: {
|
|
856
|
+
readonly AUTO: "AUTO";
|
|
857
|
+
readonly CENTERED: "CENTERED";
|
|
858
|
+
readonly LEFT: "LEFT";
|
|
859
|
+
};
|
|
860
|
+
export type DvbSubtitleAlignment =
|
|
861
|
+
(typeof DvbSubtitleAlignment)[keyof typeof DvbSubtitleAlignment];
|
|
862
|
+
export declare const DvbSubtitleApplyFontColor: {
|
|
863
|
+
readonly ALL_TEXT: "ALL_TEXT";
|
|
864
|
+
readonly WHITE_TEXT_ONLY: "WHITE_TEXT_ONLY";
|
|
865
|
+
};
|
|
866
|
+
export type DvbSubtitleApplyFontColor =
|
|
867
|
+
(typeof DvbSubtitleApplyFontColor)[keyof typeof DvbSubtitleApplyFontColor];
|
|
868
|
+
export declare const DvbSubtitleBackgroundColor: {
|
|
869
|
+
readonly AUTO: "AUTO";
|
|
870
|
+
readonly BLACK: "BLACK";
|
|
871
|
+
readonly NONE: "NONE";
|
|
872
|
+
readonly WHITE: "WHITE";
|
|
873
|
+
};
|
|
874
|
+
export type DvbSubtitleBackgroundColor =
|
|
875
|
+
(typeof DvbSubtitleBackgroundColor)[keyof typeof DvbSubtitleBackgroundColor];
|
|
876
|
+
export declare const DvbddsHandling: {
|
|
877
|
+
readonly NONE: "NONE";
|
|
878
|
+
readonly NO_DISPLAY_WINDOW: "NO_DISPLAY_WINDOW";
|
|
879
|
+
readonly SPECIFIED: "SPECIFIED";
|
|
880
|
+
};
|
|
881
|
+
export type DvbddsHandling =
|
|
882
|
+
(typeof DvbddsHandling)[keyof typeof DvbddsHandling];
|
|
883
|
+
export declare const DvbSubSubtitleFallbackFont: {
|
|
884
|
+
readonly BEST_MATCH: "BEST_MATCH";
|
|
885
|
+
readonly MONOSPACED_SANSSERIF: "MONOSPACED_SANSSERIF";
|
|
886
|
+
readonly MONOSPACED_SERIF: "MONOSPACED_SERIF";
|
|
887
|
+
readonly PROPORTIONAL_SANSSERIF: "PROPORTIONAL_SANSSERIF";
|
|
888
|
+
readonly PROPORTIONAL_SERIF: "PROPORTIONAL_SERIF";
|
|
889
|
+
};
|
|
890
|
+
export type DvbSubSubtitleFallbackFont =
|
|
891
|
+
(typeof DvbSubSubtitleFallbackFont)[keyof typeof DvbSubSubtitleFallbackFont];
|
|
892
|
+
export declare const DvbSubtitleFontColor: {
|
|
893
|
+
readonly AUTO: "AUTO";
|
|
894
|
+
readonly BLACK: "BLACK";
|
|
895
|
+
readonly BLUE: "BLUE";
|
|
896
|
+
readonly GREEN: "GREEN";
|
|
897
|
+
readonly HEX: "HEX";
|
|
898
|
+
readonly RED: "RED";
|
|
899
|
+
readonly WHITE: "WHITE";
|
|
900
|
+
readonly YELLOW: "YELLOW";
|
|
901
|
+
};
|
|
902
|
+
export type DvbSubtitleFontColor =
|
|
903
|
+
(typeof DvbSubtitleFontColor)[keyof typeof DvbSubtitleFontColor];
|
|
904
|
+
export declare const DvbSubtitleOutlineColor: {
|
|
905
|
+
readonly AUTO: "AUTO";
|
|
906
|
+
readonly BLACK: "BLACK";
|
|
907
|
+
readonly BLUE: "BLUE";
|
|
908
|
+
readonly GREEN: "GREEN";
|
|
909
|
+
readonly RED: "RED";
|
|
910
|
+
readonly WHITE: "WHITE";
|
|
911
|
+
readonly YELLOW: "YELLOW";
|
|
912
|
+
};
|
|
913
|
+
export type DvbSubtitleOutlineColor =
|
|
914
|
+
(typeof DvbSubtitleOutlineColor)[keyof typeof DvbSubtitleOutlineColor];
|
|
915
|
+
export declare const DvbSubtitleShadowColor: {
|
|
916
|
+
readonly AUTO: "AUTO";
|
|
917
|
+
readonly BLACK: "BLACK";
|
|
918
|
+
readonly NONE: "NONE";
|
|
919
|
+
readonly WHITE: "WHITE";
|
|
920
|
+
};
|
|
921
|
+
export type DvbSubtitleShadowColor =
|
|
922
|
+
(typeof DvbSubtitleShadowColor)[keyof typeof DvbSubtitleShadowColor];
|
|
923
|
+
export declare const DvbSubtitleStylePassthrough: {
|
|
924
|
+
readonly DISABLED: "DISABLED";
|
|
925
|
+
readonly ENABLED: "ENABLED";
|
|
926
|
+
};
|
|
927
|
+
export type DvbSubtitleStylePassthrough =
|
|
928
|
+
(typeof DvbSubtitleStylePassthrough)[keyof typeof DvbSubtitleStylePassthrough];
|
|
929
|
+
export declare const DvbSubtitlingType: {
|
|
930
|
+
readonly HEARING_IMPAIRED: "HEARING_IMPAIRED";
|
|
931
|
+
readonly STANDARD: "STANDARD";
|
|
932
|
+
};
|
|
933
|
+
export type DvbSubtitlingType =
|
|
934
|
+
(typeof DvbSubtitlingType)[keyof typeof DvbSubtitlingType];
|
|
935
|
+
export declare const DvbSubtitleTeletextSpacing: {
|
|
936
|
+
readonly AUTO: "AUTO";
|
|
937
|
+
readonly FIXED_GRID: "FIXED_GRID";
|
|
938
|
+
readonly PROPORTIONAL: "PROPORTIONAL";
|
|
939
|
+
};
|
|
940
|
+
export type DvbSubtitleTeletextSpacing =
|
|
941
|
+
(typeof DvbSubtitleTeletextSpacing)[keyof typeof DvbSubtitleTeletextSpacing];
|
|
809
942
|
export interface DvbSubDestinationSettings {
|
|
810
943
|
Alignment?: DvbSubtitleAlignment | string;
|
|
811
944
|
ApplyFontColor?: DvbSubtitleApplyFontColor | string;
|
|
@@ -839,62 +972,78 @@ export interface EmbeddedDestinationSettings {
|
|
|
839
972
|
Destination608ChannelNumber?: number;
|
|
840
973
|
Destination708ServiceNumber?: number;
|
|
841
974
|
}
|
|
842
|
-
export declare
|
|
843
|
-
DISABLED
|
|
844
|
-
ENABLED
|
|
845
|
-
}
|
|
846
|
-
export
|
|
847
|
-
|
|
848
|
-
|
|
849
|
-
|
|
975
|
+
export declare const ImscAccessibilitySubs: {
|
|
976
|
+
readonly DISABLED: "DISABLED";
|
|
977
|
+
readonly ENABLED: "ENABLED";
|
|
978
|
+
};
|
|
979
|
+
export type ImscAccessibilitySubs =
|
|
980
|
+
(typeof ImscAccessibilitySubs)[keyof typeof ImscAccessibilitySubs];
|
|
981
|
+
export declare const ImscStylePassthrough: {
|
|
982
|
+
readonly DISABLED: "DISABLED";
|
|
983
|
+
readonly ENABLED: "ENABLED";
|
|
984
|
+
};
|
|
985
|
+
export type ImscStylePassthrough =
|
|
986
|
+
(typeof ImscStylePassthrough)[keyof typeof ImscStylePassthrough];
|
|
850
987
|
export interface ImscDestinationSettings {
|
|
851
988
|
Accessibility?: ImscAccessibilitySubs | string;
|
|
852
989
|
StylePassthrough?: ImscStylePassthrough | string;
|
|
853
990
|
}
|
|
854
|
-
export declare
|
|
855
|
-
FRAMERATE_23_97
|
|
856
|
-
FRAMERATE_24
|
|
857
|
-
FRAMERATE_25
|
|
858
|
-
FRAMERATE_29_97_DROPFRAME
|
|
859
|
-
FRAMERATE_29_97_NON_DROPFRAME
|
|
860
|
-
}
|
|
991
|
+
export declare const SccDestinationFramerate: {
|
|
992
|
+
readonly FRAMERATE_23_97: "FRAMERATE_23_97";
|
|
993
|
+
readonly FRAMERATE_24: "FRAMERATE_24";
|
|
994
|
+
readonly FRAMERATE_25: "FRAMERATE_25";
|
|
995
|
+
readonly FRAMERATE_29_97_DROPFRAME: "FRAMERATE_29_97_DROPFRAME";
|
|
996
|
+
readonly FRAMERATE_29_97_NON_DROPFRAME: "FRAMERATE_29_97_NON_DROPFRAME";
|
|
997
|
+
};
|
|
998
|
+
export type SccDestinationFramerate =
|
|
999
|
+
(typeof SccDestinationFramerate)[keyof typeof SccDestinationFramerate];
|
|
861
1000
|
export interface SccDestinationSettings {
|
|
862
1001
|
Framerate?: SccDestinationFramerate | string;
|
|
863
1002
|
}
|
|
864
|
-
export declare
|
|
865
|
-
DISABLED
|
|
866
|
-
ENABLED
|
|
867
|
-
}
|
|
1003
|
+
export declare const SrtStylePassthrough: {
|
|
1004
|
+
readonly DISABLED: "DISABLED";
|
|
1005
|
+
readonly ENABLED: "ENABLED";
|
|
1006
|
+
};
|
|
1007
|
+
export type SrtStylePassthrough =
|
|
1008
|
+
(typeof SrtStylePassthrough)[keyof typeof SrtStylePassthrough];
|
|
868
1009
|
export interface SrtDestinationSettings {
|
|
869
1010
|
StylePassthrough?: SrtStylePassthrough | string;
|
|
870
1011
|
}
|
|
871
|
-
export declare
|
|
872
|
-
PAGE_TYPE_ADDL_INFO
|
|
873
|
-
PAGE_TYPE_HEARING_IMPAIRED_SUBTITLE
|
|
874
|
-
PAGE_TYPE_INITIAL
|
|
875
|
-
PAGE_TYPE_PROGRAM_SCHEDULE
|
|
876
|
-
PAGE_TYPE_SUBTITLE
|
|
877
|
-
}
|
|
1012
|
+
export declare const TeletextPageType: {
|
|
1013
|
+
readonly PAGE_TYPE_ADDL_INFO: "PAGE_TYPE_ADDL_INFO";
|
|
1014
|
+
readonly PAGE_TYPE_HEARING_IMPAIRED_SUBTITLE: "PAGE_TYPE_HEARING_IMPAIRED_SUBTITLE";
|
|
1015
|
+
readonly PAGE_TYPE_INITIAL: "PAGE_TYPE_INITIAL";
|
|
1016
|
+
readonly PAGE_TYPE_PROGRAM_SCHEDULE: "PAGE_TYPE_PROGRAM_SCHEDULE";
|
|
1017
|
+
readonly PAGE_TYPE_SUBTITLE: "PAGE_TYPE_SUBTITLE";
|
|
1018
|
+
};
|
|
1019
|
+
export type TeletextPageType =
|
|
1020
|
+
(typeof TeletextPageType)[keyof typeof TeletextPageType];
|
|
878
1021
|
export interface TeletextDestinationSettings {
|
|
879
1022
|
PageNumber?: string;
|
|
880
1023
|
PageTypes?: (TeletextPageType | string)[];
|
|
881
1024
|
}
|
|
882
|
-
export declare
|
|
883
|
-
DISABLED
|
|
884
|
-
ENABLED
|
|
885
|
-
}
|
|
1025
|
+
export declare const TtmlStylePassthrough: {
|
|
1026
|
+
readonly DISABLED: "DISABLED";
|
|
1027
|
+
readonly ENABLED: "ENABLED";
|
|
1028
|
+
};
|
|
1029
|
+
export type TtmlStylePassthrough =
|
|
1030
|
+
(typeof TtmlStylePassthrough)[keyof typeof TtmlStylePassthrough];
|
|
886
1031
|
export interface TtmlDestinationSettings {
|
|
887
1032
|
StylePassthrough?: TtmlStylePassthrough | string;
|
|
888
1033
|
}
|
|
889
|
-
export declare
|
|
890
|
-
DISABLED
|
|
891
|
-
ENABLED
|
|
892
|
-
}
|
|
893
|
-
export
|
|
894
|
-
|
|
895
|
-
|
|
896
|
-
|
|
897
|
-
|
|
1034
|
+
export declare const WebvttAccessibilitySubs: {
|
|
1035
|
+
readonly DISABLED: "DISABLED";
|
|
1036
|
+
readonly ENABLED: "ENABLED";
|
|
1037
|
+
};
|
|
1038
|
+
export type WebvttAccessibilitySubs =
|
|
1039
|
+
(typeof WebvttAccessibilitySubs)[keyof typeof WebvttAccessibilitySubs];
|
|
1040
|
+
export declare const WebvttStylePassthrough: {
|
|
1041
|
+
readonly DISABLED: "DISABLED";
|
|
1042
|
+
readonly ENABLED: "ENABLED";
|
|
1043
|
+
readonly STRICT: "STRICT";
|
|
1044
|
+
};
|
|
1045
|
+
export type WebvttStylePassthrough =
|
|
1046
|
+
(typeof WebvttStylePassthrough)[keyof typeof WebvttStylePassthrough];
|
|
898
1047
|
export interface WebvttDestinationSettings {
|
|
899
1048
|
Accessibility?: WebvttAccessibilitySubs | string;
|
|
900
1049
|
StylePassthrough?: WebvttStylePassthrough | string;
|
|
@@ -939,10 +1088,11 @@ export interface HlsAdditionalManifest {
|
|
|
939
1088
|
ManifestNameModifier?: string;
|
|
940
1089
|
SelectedOutputs?: string[];
|
|
941
1090
|
}
|
|
942
|
-
export declare
|
|
943
|
-
ELEMENTAL
|
|
944
|
-
ELEMENTAL_SCTE35
|
|
945
|
-
}
|
|
1091
|
+
export declare const HlsAdMarkers: {
|
|
1092
|
+
readonly ELEMENTAL: "ELEMENTAL";
|
|
1093
|
+
readonly ELEMENTAL_SCTE35: "ELEMENTAL_SCTE35";
|
|
1094
|
+
};
|
|
1095
|
+
export type HlsAdMarkers = (typeof HlsAdMarkers)[keyof typeof HlsAdMarkers];
|
|
946
1096
|
export interface HlsCaptionLanguageMapping {
|
|
947
1097
|
CaptionChannel?: number;
|
|
948
1098
|
CustomLanguageCode?: string;
|
|
@@ -961,27 +1111,33 @@ export interface Id3Insertion {
|
|
|
961
1111
|
export interface AudioSelectorGroup {
|
|
962
1112
|
AudioSelectorNames?: string[];
|
|
963
1113
|
}
|
|
964
|
-
export declare
|
|
965
|
-
AUTO
|
|
966
|
-
DISABLED
|
|
967
|
-
FRAME
|
|
968
|
-
TRACK
|
|
969
|
-
}
|
|
970
|
-
export
|
|
971
|
-
|
|
972
|
-
|
|
973
|
-
|
|
1114
|
+
export declare const AudioDurationCorrection: {
|
|
1115
|
+
readonly AUTO: "AUTO";
|
|
1116
|
+
readonly DISABLED: "DISABLED";
|
|
1117
|
+
readonly FRAME: "FRAME";
|
|
1118
|
+
readonly TRACK: "TRACK";
|
|
1119
|
+
};
|
|
1120
|
+
export type AudioDurationCorrection =
|
|
1121
|
+
(typeof AudioDurationCorrection)[keyof typeof AudioDurationCorrection];
|
|
1122
|
+
export declare const AudioDefaultSelection: {
|
|
1123
|
+
readonly DEFAULT: "DEFAULT";
|
|
1124
|
+
readonly NOT_DEFAULT: "NOT_DEFAULT";
|
|
1125
|
+
};
|
|
1126
|
+
export type AudioDefaultSelection =
|
|
1127
|
+
(typeof AudioDefaultSelection)[keyof typeof AudioDefaultSelection];
|
|
974
1128
|
export interface HlsRenditionGroupSettings {
|
|
975
1129
|
RenditionGroupId?: string;
|
|
976
1130
|
RenditionLanguageCode?: LanguageCode | string;
|
|
977
1131
|
RenditionName?: string;
|
|
978
1132
|
}
|
|
979
|
-
export declare
|
|
980
|
-
HLS_RENDITION_GROUP
|
|
981
|
-
LANGUAGE_CODE
|
|
982
|
-
PID
|
|
983
|
-
TRACK
|
|
984
|
-
}
|
|
1133
|
+
export declare const AudioSelectorType: {
|
|
1134
|
+
readonly HLS_RENDITION_GROUP: "HLS_RENDITION_GROUP";
|
|
1135
|
+
readonly LANGUAGE_CODE: "LANGUAGE_CODE";
|
|
1136
|
+
readonly PID: "PID";
|
|
1137
|
+
readonly TRACK: "TRACK";
|
|
1138
|
+
};
|
|
1139
|
+
export type AudioSelectorType =
|
|
1140
|
+
(typeof AudioSelectorType)[keyof typeof AudioSelectorType];
|
|
985
1141
|
export interface AudioSelector {
|
|
986
1142
|
AudioDurationCorrection?: AudioDurationCorrection | string;
|
|
987
1143
|
CustomLanguageCode?: string;
|
|
@@ -996,14 +1152,18 @@ export interface AudioSelector {
|
|
|
996
1152
|
SelectorType?: AudioSelectorType | string;
|
|
997
1153
|
Tracks?: number[];
|
|
998
1154
|
}
|
|
999
|
-
export declare
|
|
1000
|
-
DISABLED
|
|
1001
|
-
UPCONVERT
|
|
1002
|
-
}
|
|
1003
|
-
export
|
|
1004
|
-
|
|
1005
|
-
|
|
1006
|
-
|
|
1155
|
+
export declare const AncillaryConvert608To708: {
|
|
1156
|
+
readonly DISABLED: "DISABLED";
|
|
1157
|
+
readonly UPCONVERT: "UPCONVERT";
|
|
1158
|
+
};
|
|
1159
|
+
export type AncillaryConvert608To708 =
|
|
1160
|
+
(typeof AncillaryConvert608To708)[keyof typeof AncillaryConvert608To708];
|
|
1161
|
+
export declare const AncillaryTerminateCaptions: {
|
|
1162
|
+
readonly DISABLED: "DISABLED";
|
|
1163
|
+
readonly END_OF_INPUT: "END_OF_INPUT";
|
|
1164
|
+
};
|
|
1165
|
+
export type AncillaryTerminateCaptions =
|
|
1166
|
+
(typeof AncillaryTerminateCaptions)[keyof typeof AncillaryTerminateCaptions];
|
|
1007
1167
|
export interface AncillarySourceSettings {
|
|
1008
1168
|
Convert608To708?: AncillaryConvert608To708 | string;
|
|
1009
1169
|
SourceAncillaryChannelNumber?: number;
|
|
@@ -1012,32 +1172,40 @@ export interface AncillarySourceSettings {
|
|
|
1012
1172
|
export interface DvbSubSourceSettings {
|
|
1013
1173
|
Pid?: number;
|
|
1014
1174
|
}
|
|
1015
|
-
export declare
|
|
1016
|
-
DISABLED
|
|
1017
|
-
UPCONVERT
|
|
1018
|
-
}
|
|
1019
|
-
export
|
|
1020
|
-
|
|
1021
|
-
|
|
1022
|
-
|
|
1175
|
+
export declare const EmbeddedConvert608To708: {
|
|
1176
|
+
readonly DISABLED: "DISABLED";
|
|
1177
|
+
readonly UPCONVERT: "UPCONVERT";
|
|
1178
|
+
};
|
|
1179
|
+
export type EmbeddedConvert608To708 =
|
|
1180
|
+
(typeof EmbeddedConvert608To708)[keyof typeof EmbeddedConvert608To708];
|
|
1181
|
+
export declare const EmbeddedTerminateCaptions: {
|
|
1182
|
+
readonly DISABLED: "DISABLED";
|
|
1183
|
+
readonly END_OF_INPUT: "END_OF_INPUT";
|
|
1184
|
+
};
|
|
1185
|
+
export type EmbeddedTerminateCaptions =
|
|
1186
|
+
(typeof EmbeddedTerminateCaptions)[keyof typeof EmbeddedTerminateCaptions];
|
|
1023
1187
|
export interface EmbeddedSourceSettings {
|
|
1024
1188
|
Convert608To708?: EmbeddedConvert608To708 | string;
|
|
1025
1189
|
Source608ChannelNumber?: number;
|
|
1026
1190
|
Source608TrackNumber?: number;
|
|
1027
1191
|
TerminateCaptions?: EmbeddedTerminateCaptions | string;
|
|
1028
1192
|
}
|
|
1029
|
-
export declare
|
|
1030
|
-
DISABLED
|
|
1031
|
-
UPCONVERT
|
|
1032
|
-
}
|
|
1193
|
+
export declare const FileSourceConvert608To708: {
|
|
1194
|
+
readonly DISABLED: "DISABLED";
|
|
1195
|
+
readonly UPCONVERT: "UPCONVERT";
|
|
1196
|
+
};
|
|
1197
|
+
export type FileSourceConvert608To708 =
|
|
1198
|
+
(typeof FileSourceConvert608To708)[keyof typeof FileSourceConvert608To708];
|
|
1033
1199
|
export interface CaptionSourceFramerate {
|
|
1034
1200
|
FramerateDenominator?: number;
|
|
1035
1201
|
FramerateNumerator?: number;
|
|
1036
1202
|
}
|
|
1037
|
-
export declare
|
|
1038
|
-
MILLISECONDS
|
|
1039
|
-
SECONDS
|
|
1040
|
-
}
|
|
1203
|
+
export declare const FileSourceTimeDeltaUnits: {
|
|
1204
|
+
readonly MILLISECONDS: "MILLISECONDS";
|
|
1205
|
+
readonly SECONDS: "SECONDS";
|
|
1206
|
+
};
|
|
1207
|
+
export type FileSourceTimeDeltaUnits =
|
|
1208
|
+
(typeof FileSourceTimeDeltaUnits)[keyof typeof FileSourceTimeDeltaUnits];
|
|
1041
1209
|
export interface FileSourceSettings {
|
|
1042
1210
|
Convert608To708?: FileSourceConvert608To708 | string;
|
|
1043
1211
|
Framerate?: CaptionSourceFramerate;
|
|
@@ -1045,22 +1213,24 @@ export interface FileSourceSettings {
|
|
|
1045
1213
|
TimeDelta?: number;
|
|
1046
1214
|
TimeDeltaUnits?: FileSourceTimeDeltaUnits | string;
|
|
1047
1215
|
}
|
|
1048
|
-
export declare
|
|
1049
|
-
ANCILLARY
|
|
1050
|
-
DVB_SUB
|
|
1051
|
-
EMBEDDED
|
|
1052
|
-
IMSC
|
|
1053
|
-
NULL_SOURCE
|
|
1054
|
-
SCC
|
|
1055
|
-
SCTE20
|
|
1056
|
-
SMI
|
|
1057
|
-
SMPTE_TT
|
|
1058
|
-
SRT
|
|
1059
|
-
STL
|
|
1060
|
-
TELETEXT
|
|
1061
|
-
TTML
|
|
1062
|
-
WEBVTT
|
|
1063
|
-
}
|
|
1216
|
+
export declare const CaptionSourceType: {
|
|
1217
|
+
readonly ANCILLARY: "ANCILLARY";
|
|
1218
|
+
readonly DVB_SUB: "DVB_SUB";
|
|
1219
|
+
readonly EMBEDDED: "EMBEDDED";
|
|
1220
|
+
readonly IMSC: "IMSC";
|
|
1221
|
+
readonly NULL_SOURCE: "NULL_SOURCE";
|
|
1222
|
+
readonly SCC: "SCC";
|
|
1223
|
+
readonly SCTE20: "SCTE20";
|
|
1224
|
+
readonly SMI: "SMI";
|
|
1225
|
+
readonly SMPTE_TT: "SMPTE_TT";
|
|
1226
|
+
readonly SRT: "SRT";
|
|
1227
|
+
readonly STL: "STL";
|
|
1228
|
+
readonly TELETEXT: "TELETEXT";
|
|
1229
|
+
readonly TTML: "TTML";
|
|
1230
|
+
readonly WEBVTT: "WEBVTT";
|
|
1231
|
+
};
|
|
1232
|
+
export type CaptionSourceType =
|
|
1233
|
+
(typeof CaptionSourceType)[keyof typeof CaptionSourceType];
|
|
1064
1234
|
export interface TeletextSourceSettings {
|
|
1065
1235
|
PageNumber?: string;
|
|
1066
1236
|
}
|
|
@@ -1093,30 +1263,38 @@ export interface Rectangle {
|
|
|
1093
1263
|
X?: number;
|
|
1094
1264
|
Y?: number;
|
|
1095
1265
|
}
|
|
1096
|
-
export declare
|
|
1097
|
-
DISABLED
|
|
1098
|
-
ENABLED
|
|
1099
|
-
}
|
|
1100
|
-
export
|
|
1101
|
-
|
|
1102
|
-
|
|
1103
|
-
|
|
1104
|
-
|
|
1266
|
+
export declare const InputDeblockFilter: {
|
|
1267
|
+
readonly DISABLED: "DISABLED";
|
|
1268
|
+
readonly ENABLED: "ENABLED";
|
|
1269
|
+
};
|
|
1270
|
+
export type InputDeblockFilter =
|
|
1271
|
+
(typeof InputDeblockFilter)[keyof typeof InputDeblockFilter];
|
|
1272
|
+
export declare const DecryptionMode: {
|
|
1273
|
+
readonly AES_CBC: "AES_CBC";
|
|
1274
|
+
readonly AES_CTR: "AES_CTR";
|
|
1275
|
+
readonly AES_GCM: "AES_GCM";
|
|
1276
|
+
};
|
|
1277
|
+
export type DecryptionMode =
|
|
1278
|
+
(typeof DecryptionMode)[keyof typeof DecryptionMode];
|
|
1105
1279
|
export interface InputDecryptionSettings {
|
|
1106
1280
|
DecryptionMode?: DecryptionMode | string;
|
|
1107
1281
|
EncryptedDecryptionKey?: string;
|
|
1108
1282
|
InitializationVector?: string;
|
|
1109
1283
|
KmsKeyRegion?: string;
|
|
1110
1284
|
}
|
|
1111
|
-
export declare
|
|
1112
|
-
DISABLED
|
|
1113
|
-
ENABLED
|
|
1114
|
-
}
|
|
1115
|
-
export
|
|
1116
|
-
|
|
1117
|
-
|
|
1118
|
-
|
|
1119
|
-
|
|
1285
|
+
export declare const InputDenoiseFilter: {
|
|
1286
|
+
readonly DISABLED: "DISABLED";
|
|
1287
|
+
readonly ENABLED: "ENABLED";
|
|
1288
|
+
};
|
|
1289
|
+
export type InputDenoiseFilter =
|
|
1290
|
+
(typeof InputDenoiseFilter)[keyof typeof InputDenoiseFilter];
|
|
1291
|
+
export declare const InputFilterEnable: {
|
|
1292
|
+
readonly AUTO: "AUTO";
|
|
1293
|
+
readonly DISABLE: "DISABLE";
|
|
1294
|
+
readonly FORCE: "FORCE";
|
|
1295
|
+
};
|
|
1296
|
+
export type InputFilterEnable =
|
|
1297
|
+
(typeof InputFilterEnable)[keyof typeof InputFilterEnable];
|
|
1120
1298
|
export interface InsertableImage {
|
|
1121
1299
|
Duration?: number;
|
|
1122
1300
|
FadeIn?: number;
|
|
@@ -1138,44 +1316,55 @@ export interface InputClipping {
|
|
|
1138
1316
|
EndTimecode?: string;
|
|
1139
1317
|
StartTimecode?: string;
|
|
1140
1318
|
}
|
|
1141
|
-
export declare
|
|
1142
|
-
AUTO
|
|
1143
|
-
PSF
|
|
1144
|
-
}
|
|
1145
|
-
export
|
|
1146
|
-
|
|
1147
|
-
|
|
1148
|
-
|
|
1149
|
-
|
|
1150
|
-
|
|
1151
|
-
|
|
1152
|
-
|
|
1153
|
-
|
|
1319
|
+
export declare const InputScanType: {
|
|
1320
|
+
readonly AUTO: "AUTO";
|
|
1321
|
+
readonly PSF: "PSF";
|
|
1322
|
+
};
|
|
1323
|
+
export type InputScanType = (typeof InputScanType)[keyof typeof InputScanType];
|
|
1324
|
+
export declare const InputPsiControl: {
|
|
1325
|
+
readonly IGNORE_PSI: "IGNORE_PSI";
|
|
1326
|
+
readonly USE_PSI: "USE_PSI";
|
|
1327
|
+
};
|
|
1328
|
+
export type InputPsiControl =
|
|
1329
|
+
(typeof InputPsiControl)[keyof typeof InputPsiControl];
|
|
1330
|
+
export declare const InputTimecodeSource: {
|
|
1331
|
+
readonly EMBEDDED: "EMBEDDED";
|
|
1332
|
+
readonly SPECIFIEDSTART: "SPECIFIEDSTART";
|
|
1333
|
+
readonly ZEROBASED: "ZEROBASED";
|
|
1334
|
+
};
|
|
1335
|
+
export type InputTimecodeSource =
|
|
1336
|
+
(typeof InputTimecodeSource)[keyof typeof InputTimecodeSource];
|
|
1154
1337
|
export interface InputVideoGenerator {
|
|
1155
1338
|
Duration?: number;
|
|
1156
1339
|
}
|
|
1157
|
-
export declare
|
|
1158
|
-
DISCARD
|
|
1159
|
-
REMAP_TO_LUMA
|
|
1160
|
-
}
|
|
1161
|
-
export
|
|
1162
|
-
|
|
1163
|
-
|
|
1164
|
-
|
|
1165
|
-
|
|
1166
|
-
|
|
1167
|
-
|
|
1168
|
-
|
|
1169
|
-
|
|
1170
|
-
|
|
1171
|
-
|
|
1172
|
-
|
|
1173
|
-
|
|
1174
|
-
|
|
1175
|
-
|
|
1176
|
-
|
|
1177
|
-
|
|
1178
|
-
|
|
1340
|
+
export declare const AlphaBehavior: {
|
|
1341
|
+
readonly DISCARD: "DISCARD";
|
|
1342
|
+
readonly REMAP_TO_LUMA: "REMAP_TO_LUMA";
|
|
1343
|
+
};
|
|
1344
|
+
export type AlphaBehavior = (typeof AlphaBehavior)[keyof typeof AlphaBehavior];
|
|
1345
|
+
export declare const ColorSpace: {
|
|
1346
|
+
readonly FOLLOW: "FOLLOW";
|
|
1347
|
+
readonly HDR10: "HDR10";
|
|
1348
|
+
readonly HLG_2020: "HLG_2020";
|
|
1349
|
+
readonly P3D65_HDR: "P3D65_HDR";
|
|
1350
|
+
readonly P3D65_SDR: "P3D65_SDR";
|
|
1351
|
+
readonly P3DCI: "P3DCI";
|
|
1352
|
+
readonly REC_601: "REC_601";
|
|
1353
|
+
readonly REC_709: "REC_709";
|
|
1354
|
+
};
|
|
1355
|
+
export type ColorSpace = (typeof ColorSpace)[keyof typeof ColorSpace];
|
|
1356
|
+
export declare const ColorSpaceUsage: {
|
|
1357
|
+
readonly FALLBACK: "FALLBACK";
|
|
1358
|
+
readonly FORCE: "FORCE";
|
|
1359
|
+
};
|
|
1360
|
+
export type ColorSpaceUsage =
|
|
1361
|
+
(typeof ColorSpaceUsage)[keyof typeof ColorSpaceUsage];
|
|
1362
|
+
export declare const EmbeddedTimecodeOverride: {
|
|
1363
|
+
readonly NONE: "NONE";
|
|
1364
|
+
readonly USE_MDPM: "USE_MDPM";
|
|
1365
|
+
};
|
|
1366
|
+
export type EmbeddedTimecodeOverride =
|
|
1367
|
+
(typeof EmbeddedTimecodeOverride)[keyof typeof EmbeddedTimecodeOverride];
|
|
1179
1368
|
export interface Hdr10Metadata {
|
|
1180
1369
|
BluePrimaryX?: number;
|
|
1181
1370
|
BluePrimaryY?: number;
|
|
@@ -1190,22 +1379,26 @@ export interface Hdr10Metadata {
|
|
|
1190
1379
|
WhitePointX?: number;
|
|
1191
1380
|
WhitePointY?: number;
|
|
1192
1381
|
}
|
|
1193
|
-
export declare
|
|
1194
|
-
BLACK
|
|
1195
|
-
DISABLED
|
|
1196
|
-
}
|
|
1197
|
-
export
|
|
1198
|
-
|
|
1199
|
-
|
|
1200
|
-
|
|
1201
|
-
|
|
1202
|
-
|
|
1203
|
-
|
|
1204
|
-
|
|
1205
|
-
|
|
1206
|
-
|
|
1207
|
-
|
|
1208
|
-
|
|
1382
|
+
export declare const PadVideo: {
|
|
1383
|
+
readonly BLACK: "BLACK";
|
|
1384
|
+
readonly DISABLED: "DISABLED";
|
|
1385
|
+
};
|
|
1386
|
+
export type PadVideo = (typeof PadVideo)[keyof typeof PadVideo];
|
|
1387
|
+
export declare const InputRotate: {
|
|
1388
|
+
readonly AUTO: "AUTO";
|
|
1389
|
+
readonly DEGREES_180: "DEGREES_180";
|
|
1390
|
+
readonly DEGREES_270: "DEGREES_270";
|
|
1391
|
+
readonly DEGREES_90: "DEGREES_90";
|
|
1392
|
+
readonly DEGREE_0: "DEGREE_0";
|
|
1393
|
+
};
|
|
1394
|
+
export type InputRotate = (typeof InputRotate)[keyof typeof InputRotate];
|
|
1395
|
+
export declare const InputSampleRange: {
|
|
1396
|
+
readonly FOLLOW: "FOLLOW";
|
|
1397
|
+
readonly FULL_RANGE: "FULL_RANGE";
|
|
1398
|
+
readonly LIMITED_RANGE: "LIMITED_RANGE";
|
|
1399
|
+
};
|
|
1400
|
+
export type InputSampleRange =
|
|
1401
|
+
(typeof InputSampleRange)[keyof typeof InputSampleRange];
|
|
1209
1402
|
export interface VideoSelector {
|
|
1210
1403
|
AlphaBehavior?: AlphaBehavior | string;
|
|
1211
1404
|
ColorSpace?: ColorSpace | string;
|
|
@@ -1262,31 +1455,38 @@ export interface InputTemplate {
|
|
|
1262
1455
|
TimecodeStart?: string;
|
|
1263
1456
|
VideoSelector?: VideoSelector;
|
|
1264
1457
|
}
|
|
1265
|
-
export declare
|
|
1266
|
-
DISABLED
|
|
1267
|
-
ENABLED
|
|
1268
|
-
PREFERRED
|
|
1269
|
-
}
|
|
1458
|
+
export declare const AccelerationMode: {
|
|
1459
|
+
readonly DISABLED: "DISABLED";
|
|
1460
|
+
readonly ENABLED: "ENABLED";
|
|
1461
|
+
readonly PREFERRED: "PREFERRED";
|
|
1462
|
+
};
|
|
1463
|
+
export type AccelerationMode =
|
|
1464
|
+
(typeof AccelerationMode)[keyof typeof AccelerationMode];
|
|
1270
1465
|
export interface AccelerationSettings {
|
|
1271
1466
|
Mode: AccelerationMode | string | undefined;
|
|
1272
1467
|
}
|
|
1273
|
-
export declare
|
|
1274
|
-
ACCELERATED
|
|
1275
|
-
IN_PROGRESS
|
|
1276
|
-
NOT_ACCELERATED
|
|
1277
|
-
NOT_APPLICABLE
|
|
1278
|
-
}
|
|
1279
|
-
export
|
|
1280
|
-
|
|
1281
|
-
|
|
1282
|
-
|
|
1283
|
-
|
|
1284
|
-
|
|
1285
|
-
|
|
1286
|
-
|
|
1287
|
-
|
|
1288
|
-
|
|
1289
|
-
|
|
1468
|
+
export declare const AccelerationStatus: {
|
|
1469
|
+
readonly ACCELERATED: "ACCELERATED";
|
|
1470
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
1471
|
+
readonly NOT_ACCELERATED: "NOT_ACCELERATED";
|
|
1472
|
+
readonly NOT_APPLICABLE: "NOT_APPLICABLE";
|
|
1473
|
+
};
|
|
1474
|
+
export type AccelerationStatus =
|
|
1475
|
+
(typeof AccelerationStatus)[keyof typeof AccelerationStatus];
|
|
1476
|
+
export declare const BillingTagsSource: {
|
|
1477
|
+
readonly JOB: "JOB";
|
|
1478
|
+
readonly JOB_TEMPLATE: "JOB_TEMPLATE";
|
|
1479
|
+
readonly PRESET: "PRESET";
|
|
1480
|
+
readonly QUEUE: "QUEUE";
|
|
1481
|
+
};
|
|
1482
|
+
export type BillingTagsSource =
|
|
1483
|
+
(typeof BillingTagsSource)[keyof typeof BillingTagsSource];
|
|
1484
|
+
export declare const JobPhase: {
|
|
1485
|
+
readonly PROBING: "PROBING";
|
|
1486
|
+
readonly TRANSCODING: "TRANSCODING";
|
|
1487
|
+
readonly UPLOADING: "UPLOADING";
|
|
1488
|
+
};
|
|
1489
|
+
export type JobPhase = (typeof JobPhase)[keyof typeof JobPhase];
|
|
1290
1490
|
export interface JobMessages {
|
|
1291
1491
|
Info?: string[];
|
|
1292
1492
|
Warning?: string[];
|
|
@@ -1321,14 +1521,17 @@ export interface EsamSettings {
|
|
|
1321
1521
|
ResponseSignalPreroll?: number;
|
|
1322
1522
|
SignalProcessingNotification?: EsamSignalProcessingNotification;
|
|
1323
1523
|
}
|
|
1324
|
-
export declare
|
|
1325
|
-
PASSTHROUGH
|
|
1326
|
-
STRIP
|
|
1327
|
-
}
|
|
1328
|
-
export
|
|
1329
|
-
|
|
1330
|
-
|
|
1331
|
-
|
|
1524
|
+
export declare const CopyProtectionAction: {
|
|
1525
|
+
readonly PASSTHROUGH: "PASSTHROUGH";
|
|
1526
|
+
readonly STRIP: "STRIP";
|
|
1527
|
+
};
|
|
1528
|
+
export type CopyProtectionAction =
|
|
1529
|
+
(typeof CopyProtectionAction)[keyof typeof CopyProtectionAction];
|
|
1530
|
+
export declare const VchipAction: {
|
|
1531
|
+
readonly PASSTHROUGH: "PASSTHROUGH";
|
|
1532
|
+
readonly STRIP: "STRIP";
|
|
1533
|
+
};
|
|
1534
|
+
export type VchipAction = (typeof VchipAction)[keyof typeof VchipAction];
|
|
1332
1535
|
export interface ExtendedDataServices {
|
|
1333
1536
|
CopyProtectionAction?: CopyProtectionAction | string;
|
|
1334
1537
|
VchipAction?: VchipAction | string;
|
|
@@ -1352,18 +1555,22 @@ export interface MotionImageInsertionFramerate {
|
|
|
1352
1555
|
FramerateDenominator?: number;
|
|
1353
1556
|
FramerateNumerator?: number;
|
|
1354
1557
|
}
|
|
1355
|
-
export declare
|
|
1356
|
-
MOV
|
|
1357
|
-
PNG
|
|
1358
|
-
}
|
|
1558
|
+
export declare const MotionImageInsertionMode: {
|
|
1559
|
+
readonly MOV: "MOV";
|
|
1560
|
+
readonly PNG: "PNG";
|
|
1561
|
+
};
|
|
1562
|
+
export type MotionImageInsertionMode =
|
|
1563
|
+
(typeof MotionImageInsertionMode)[keyof typeof MotionImageInsertionMode];
|
|
1359
1564
|
export interface MotionImageInsertionOffset {
|
|
1360
1565
|
ImageX?: number;
|
|
1361
1566
|
ImageY?: number;
|
|
1362
1567
|
}
|
|
1363
|
-
export declare
|
|
1364
|
-
ONCE
|
|
1365
|
-
REPEAT
|
|
1366
|
-
}
|
|
1568
|
+
export declare const MotionImagePlayback: {
|
|
1569
|
+
readonly ONCE: "ONCE";
|
|
1570
|
+
readonly REPEAT: "REPEAT";
|
|
1571
|
+
};
|
|
1572
|
+
export type MotionImagePlayback =
|
|
1573
|
+
(typeof MotionImagePlayback)[keyof typeof MotionImagePlayback];
|
|
1367
1574
|
export interface MotionImageInserter {
|
|
1368
1575
|
Framerate?: MotionImageInsertionFramerate;
|
|
1369
1576
|
Input?: string;
|
|
@@ -1376,19 +1583,25 @@ export interface NielsenConfiguration {
|
|
|
1376
1583
|
BreakoutCode?: number;
|
|
1377
1584
|
DistributorId?: string;
|
|
1378
1585
|
}
|
|
1379
|
-
export declare
|
|
1380
|
-
CBET
|
|
1381
|
-
NAES2_AND_NW
|
|
1382
|
-
NAES2_AND_NW_AND_CBET
|
|
1383
|
-
}
|
|
1384
|
-
export
|
|
1385
|
-
|
|
1386
|
-
|
|
1387
|
-
|
|
1388
|
-
|
|
1389
|
-
|
|
1390
|
-
|
|
1391
|
-
|
|
1586
|
+
export declare const NielsenActiveWatermarkProcessType: {
|
|
1587
|
+
readonly CBET: "CBET";
|
|
1588
|
+
readonly NAES2_AND_NW: "NAES2_AND_NW";
|
|
1589
|
+
readonly NAES2_AND_NW_AND_CBET: "NAES2_AND_NW_AND_CBET";
|
|
1590
|
+
};
|
|
1591
|
+
export type NielsenActiveWatermarkProcessType =
|
|
1592
|
+
(typeof NielsenActiveWatermarkProcessType)[keyof typeof NielsenActiveWatermarkProcessType];
|
|
1593
|
+
export declare const NielsenSourceWatermarkStatusType: {
|
|
1594
|
+
readonly CLEAN: "CLEAN";
|
|
1595
|
+
readonly WATERMARKED: "WATERMARKED";
|
|
1596
|
+
};
|
|
1597
|
+
export type NielsenSourceWatermarkStatusType =
|
|
1598
|
+
(typeof NielsenSourceWatermarkStatusType)[keyof typeof NielsenSourceWatermarkStatusType];
|
|
1599
|
+
export declare const NielsenUniqueTicPerAudioTrackType: {
|
|
1600
|
+
readonly RESERVE_UNIQUE_TICS_PER_TRACK: "RESERVE_UNIQUE_TICS_PER_TRACK";
|
|
1601
|
+
readonly SAME_TICS_PER_TRACK: "SAME_TICS_PER_TRACK";
|
|
1602
|
+
};
|
|
1603
|
+
export type NielsenUniqueTicPerAudioTrackType =
|
|
1604
|
+
(typeof NielsenUniqueTicPerAudioTrackType)[keyof typeof NielsenUniqueTicPerAudioTrackType];
|
|
1392
1605
|
export interface NielsenNonLinearWatermarkSettings {
|
|
1393
1606
|
ActiveWatermarkProcess?: NielsenActiveWatermarkProcessType | string;
|
|
1394
1607
|
AdiFilename?: string;
|
|
@@ -1411,32 +1624,42 @@ export interface AutomatedAbrSettings {
|
|
|
1411
1624
|
export interface AutomatedEncodingSettings {
|
|
1412
1625
|
AbrSettings?: AutomatedAbrSettings;
|
|
1413
1626
|
}
|
|
1414
|
-
export declare
|
|
1415
|
-
DISABLED
|
|
1416
|
-
ENABLED
|
|
1417
|
-
}
|
|
1418
|
-
export
|
|
1419
|
-
|
|
1420
|
-
|
|
1421
|
-
|
|
1422
|
-
|
|
1423
|
-
|
|
1424
|
-
|
|
1425
|
-
|
|
1426
|
-
|
|
1427
|
-
|
|
1428
|
-
|
|
1429
|
-
|
|
1430
|
-
|
|
1431
|
-
|
|
1432
|
-
|
|
1627
|
+
export declare const CmafClientCache: {
|
|
1628
|
+
readonly DISABLED: "DISABLED";
|
|
1629
|
+
readonly ENABLED: "ENABLED";
|
|
1630
|
+
};
|
|
1631
|
+
export type CmafClientCache =
|
|
1632
|
+
(typeof CmafClientCache)[keyof typeof CmafClientCache];
|
|
1633
|
+
export declare const CmafCodecSpecification: {
|
|
1634
|
+
readonly RFC_4281: "RFC_4281";
|
|
1635
|
+
readonly RFC_6381: "RFC_6381";
|
|
1636
|
+
};
|
|
1637
|
+
export type CmafCodecSpecification =
|
|
1638
|
+
(typeof CmafCodecSpecification)[keyof typeof CmafCodecSpecification];
|
|
1639
|
+
export declare const DashManifestStyle: {
|
|
1640
|
+
readonly BASIC: "BASIC";
|
|
1641
|
+
readonly COMPACT: "COMPACT";
|
|
1642
|
+
readonly DISTINCT: "DISTINCT";
|
|
1643
|
+
};
|
|
1644
|
+
export type DashManifestStyle =
|
|
1645
|
+
(typeof DashManifestStyle)[keyof typeof DashManifestStyle];
|
|
1646
|
+
export declare const S3ObjectCannedAcl: {
|
|
1647
|
+
readonly AUTHENTICATED_READ: "AUTHENTICATED_READ";
|
|
1648
|
+
readonly BUCKET_OWNER_FULL_CONTROL: "BUCKET_OWNER_FULL_CONTROL";
|
|
1649
|
+
readonly BUCKET_OWNER_READ: "BUCKET_OWNER_READ";
|
|
1650
|
+
readonly PUBLIC_READ: "PUBLIC_READ";
|
|
1651
|
+
};
|
|
1652
|
+
export type S3ObjectCannedAcl =
|
|
1653
|
+
(typeof S3ObjectCannedAcl)[keyof typeof S3ObjectCannedAcl];
|
|
1433
1654
|
export interface S3DestinationAccessControl {
|
|
1434
1655
|
CannedAcl?: S3ObjectCannedAcl | string;
|
|
1435
1656
|
}
|
|
1436
|
-
export declare
|
|
1437
|
-
SERVER_SIDE_ENCRYPTION_KMS
|
|
1438
|
-
SERVER_SIDE_ENCRYPTION_S3
|
|
1439
|
-
}
|
|
1657
|
+
export declare const S3ServerSideEncryptionType: {
|
|
1658
|
+
readonly SERVER_SIDE_ENCRYPTION_KMS: "SERVER_SIDE_ENCRYPTION_KMS";
|
|
1659
|
+
readonly SERVER_SIDE_ENCRYPTION_S3: "SERVER_SIDE_ENCRYPTION_S3";
|
|
1660
|
+
};
|
|
1661
|
+
export type S3ServerSideEncryptionType =
|
|
1662
|
+
(typeof S3ServerSideEncryptionType)[keyof typeof S3ServerSideEncryptionType];
|
|
1440
1663
|
export interface S3EncryptionSettings {
|
|
1441
1664
|
EncryptionType?: S3ServerSideEncryptionType | string;
|
|
1442
1665
|
KmsEncryptionContext?: string;
|
|
@@ -1449,14 +1672,18 @@ export interface S3DestinationSettings {
|
|
|
1449
1672
|
export interface DestinationSettings {
|
|
1450
1673
|
S3Settings?: S3DestinationSettings;
|
|
1451
1674
|
}
|
|
1452
|
-
export declare
|
|
1453
|
-
AES_CTR
|
|
1454
|
-
SAMPLE_AES
|
|
1455
|
-
}
|
|
1456
|
-
export
|
|
1457
|
-
|
|
1458
|
-
|
|
1459
|
-
|
|
1675
|
+
export declare const CmafEncryptionType: {
|
|
1676
|
+
readonly AES_CTR: "AES_CTR";
|
|
1677
|
+
readonly SAMPLE_AES: "SAMPLE_AES";
|
|
1678
|
+
};
|
|
1679
|
+
export type CmafEncryptionType =
|
|
1680
|
+
(typeof CmafEncryptionType)[keyof typeof CmafEncryptionType];
|
|
1681
|
+
export declare const CmafInitializationVectorInManifest: {
|
|
1682
|
+
readonly EXCLUDE: "EXCLUDE";
|
|
1683
|
+
readonly INCLUDE: "INCLUDE";
|
|
1684
|
+
};
|
|
1685
|
+
export type CmafInitializationVectorInManifest =
|
|
1686
|
+
(typeof CmafInitializationVectorInManifest)[keyof typeof CmafInitializationVectorInManifest];
|
|
1460
1687
|
export interface SpekeKeyProviderCmaf {
|
|
1461
1688
|
CertificateArn?: string;
|
|
1462
1689
|
DashSignaledSystemIds?: string[];
|
|
@@ -1470,10 +1697,12 @@ export interface StaticKeyProvider {
|
|
|
1470
1697
|
StaticKeyValue?: string;
|
|
1471
1698
|
Url?: string;
|
|
1472
1699
|
}
|
|
1473
|
-
export declare
|
|
1474
|
-
SPEKE
|
|
1475
|
-
STATIC_KEY
|
|
1476
|
-
}
|
|
1700
|
+
export declare const CmafKeyProviderType: {
|
|
1701
|
+
readonly SPEKE: "SPEKE";
|
|
1702
|
+
readonly STATIC_KEY: "STATIC_KEY";
|
|
1703
|
+
};
|
|
1704
|
+
export type CmafKeyProviderType =
|
|
1705
|
+
(typeof CmafKeyProviderType)[keyof typeof CmafKeyProviderType];
|
|
1477
1706
|
export interface CmafEncryptionSettings {
|
|
1478
1707
|
ConstantInitializationVector?: string;
|
|
1479
1708
|
EncryptionMethod?: CmafEncryptionType | string;
|
|
@@ -1482,16 +1711,20 @@ export interface CmafEncryptionSettings {
|
|
|
1482
1711
|
StaticKeyProvider?: StaticKeyProvider;
|
|
1483
1712
|
Type?: CmafKeyProviderType | string;
|
|
1484
1713
|
}
|
|
1485
|
-
export declare
|
|
1486
|
-
ADVANCED
|
|
1487
|
-
NONE
|
|
1488
|
-
THUMBNAIL
|
|
1489
|
-
THUMBNAIL_AND_FULLFRAME
|
|
1490
|
-
}
|
|
1491
|
-
export
|
|
1492
|
-
|
|
1493
|
-
|
|
1494
|
-
|
|
1714
|
+
export declare const CmafImageBasedTrickPlay: {
|
|
1715
|
+
readonly ADVANCED: "ADVANCED";
|
|
1716
|
+
readonly NONE: "NONE";
|
|
1717
|
+
readonly THUMBNAIL: "THUMBNAIL";
|
|
1718
|
+
readonly THUMBNAIL_AND_FULLFRAME: "THUMBNAIL_AND_FULLFRAME";
|
|
1719
|
+
};
|
|
1720
|
+
export type CmafImageBasedTrickPlay =
|
|
1721
|
+
(typeof CmafImageBasedTrickPlay)[keyof typeof CmafImageBasedTrickPlay];
|
|
1722
|
+
export declare const CmafIntervalCadence: {
|
|
1723
|
+
readonly FOLLOW_CUSTOM: "FOLLOW_CUSTOM";
|
|
1724
|
+
readonly FOLLOW_IFRAME: "FOLLOW_IFRAME";
|
|
1725
|
+
};
|
|
1726
|
+
export type CmafIntervalCadence =
|
|
1727
|
+
(typeof CmafIntervalCadence)[keyof typeof CmafIntervalCadence];
|
|
1495
1728
|
export interface CmafImageBasedTrickPlaySettings {
|
|
1496
1729
|
IntervalCadence?: CmafIntervalCadence | string;
|
|
1497
1730
|
ThumbnailHeight?: number;
|
|
@@ -1500,58 +1733,84 @@ export interface CmafImageBasedTrickPlaySettings {
|
|
|
1500
1733
|
TileHeight?: number;
|
|
1501
1734
|
TileWidth?: number;
|
|
1502
1735
|
}
|
|
1503
|
-
export declare
|
|
1504
|
-
GZIP
|
|
1505
|
-
NONE
|
|
1506
|
-
}
|
|
1507
|
-
export
|
|
1508
|
-
|
|
1509
|
-
|
|
1510
|
-
|
|
1511
|
-
|
|
1512
|
-
|
|
1513
|
-
|
|
1514
|
-
|
|
1515
|
-
export declare
|
|
1516
|
-
|
|
1517
|
-
|
|
1518
|
-
}
|
|
1519
|
-
export
|
|
1520
|
-
|
|
1521
|
-
|
|
1522
|
-
|
|
1523
|
-
|
|
1524
|
-
|
|
1525
|
-
|
|
1526
|
-
|
|
1527
|
-
export declare
|
|
1528
|
-
|
|
1529
|
-
|
|
1530
|
-
}
|
|
1531
|
-
export
|
|
1532
|
-
|
|
1533
|
-
|
|
1534
|
-
|
|
1535
|
-
|
|
1536
|
-
|
|
1537
|
-
|
|
1538
|
-
|
|
1539
|
-
export declare
|
|
1540
|
-
|
|
1541
|
-
|
|
1542
|
-
}
|
|
1543
|
-
export
|
|
1544
|
-
|
|
1545
|
-
|
|
1546
|
-
|
|
1547
|
-
|
|
1548
|
-
|
|
1549
|
-
|
|
1550
|
-
|
|
1551
|
-
export declare
|
|
1552
|
-
|
|
1553
|
-
|
|
1554
|
-
}
|
|
1736
|
+
export declare const CmafManifestCompression: {
|
|
1737
|
+
readonly GZIP: "GZIP";
|
|
1738
|
+
readonly NONE: "NONE";
|
|
1739
|
+
};
|
|
1740
|
+
export type CmafManifestCompression =
|
|
1741
|
+
(typeof CmafManifestCompression)[keyof typeof CmafManifestCompression];
|
|
1742
|
+
export declare const CmafManifestDurationFormat: {
|
|
1743
|
+
readonly FLOATING_POINT: "FLOATING_POINT";
|
|
1744
|
+
readonly INTEGER: "INTEGER";
|
|
1745
|
+
};
|
|
1746
|
+
export type CmafManifestDurationFormat =
|
|
1747
|
+
(typeof CmafManifestDurationFormat)[keyof typeof CmafManifestDurationFormat];
|
|
1748
|
+
export declare const CmafMpdManifestBandwidthType: {
|
|
1749
|
+
readonly AVERAGE: "AVERAGE";
|
|
1750
|
+
readonly MAX: "MAX";
|
|
1751
|
+
};
|
|
1752
|
+
export type CmafMpdManifestBandwidthType =
|
|
1753
|
+
(typeof CmafMpdManifestBandwidthType)[keyof typeof CmafMpdManifestBandwidthType];
|
|
1754
|
+
export declare const CmafMpdProfile: {
|
|
1755
|
+
readonly MAIN_PROFILE: "MAIN_PROFILE";
|
|
1756
|
+
readonly ON_DEMAND_PROFILE: "ON_DEMAND_PROFILE";
|
|
1757
|
+
};
|
|
1758
|
+
export type CmafMpdProfile =
|
|
1759
|
+
(typeof CmafMpdProfile)[keyof typeof CmafMpdProfile];
|
|
1760
|
+
export declare const CmafPtsOffsetHandlingForBFrames: {
|
|
1761
|
+
readonly MATCH_INITIAL_PTS: "MATCH_INITIAL_PTS";
|
|
1762
|
+
readonly ZERO_BASED: "ZERO_BASED";
|
|
1763
|
+
};
|
|
1764
|
+
export type CmafPtsOffsetHandlingForBFrames =
|
|
1765
|
+
(typeof CmafPtsOffsetHandlingForBFrames)[keyof typeof CmafPtsOffsetHandlingForBFrames];
|
|
1766
|
+
export declare const CmafSegmentControl: {
|
|
1767
|
+
readonly SEGMENTED_FILES: "SEGMENTED_FILES";
|
|
1768
|
+
readonly SINGLE_FILE: "SINGLE_FILE";
|
|
1769
|
+
};
|
|
1770
|
+
export type CmafSegmentControl =
|
|
1771
|
+
(typeof CmafSegmentControl)[keyof typeof CmafSegmentControl];
|
|
1772
|
+
export declare const CmafSegmentLengthControl: {
|
|
1773
|
+
readonly EXACT: "EXACT";
|
|
1774
|
+
readonly GOP_MULTIPLE: "GOP_MULTIPLE";
|
|
1775
|
+
};
|
|
1776
|
+
export type CmafSegmentLengthControl =
|
|
1777
|
+
(typeof CmafSegmentLengthControl)[keyof typeof CmafSegmentLengthControl];
|
|
1778
|
+
export declare const CmafStreamInfResolution: {
|
|
1779
|
+
readonly EXCLUDE: "EXCLUDE";
|
|
1780
|
+
readonly INCLUDE: "INCLUDE";
|
|
1781
|
+
};
|
|
1782
|
+
export type CmafStreamInfResolution =
|
|
1783
|
+
(typeof CmafStreamInfResolution)[keyof typeof CmafStreamInfResolution];
|
|
1784
|
+
export declare const CmafTargetDurationCompatibilityMode: {
|
|
1785
|
+
readonly LEGACY: "LEGACY";
|
|
1786
|
+
readonly SPEC_COMPLIANT: "SPEC_COMPLIANT";
|
|
1787
|
+
};
|
|
1788
|
+
export type CmafTargetDurationCompatibilityMode =
|
|
1789
|
+
(typeof CmafTargetDurationCompatibilityMode)[keyof typeof CmafTargetDurationCompatibilityMode];
|
|
1790
|
+
export declare const CmafVideoCompositionOffsets: {
|
|
1791
|
+
readonly SIGNED: "SIGNED";
|
|
1792
|
+
readonly UNSIGNED: "UNSIGNED";
|
|
1793
|
+
};
|
|
1794
|
+
export type CmafVideoCompositionOffsets =
|
|
1795
|
+
(typeof CmafVideoCompositionOffsets)[keyof typeof CmafVideoCompositionOffsets];
|
|
1796
|
+
export declare const CmafWriteDASHManifest: {
|
|
1797
|
+
readonly DISABLED: "DISABLED";
|
|
1798
|
+
readonly ENABLED: "ENABLED";
|
|
1799
|
+
};
|
|
1800
|
+
export type CmafWriteDASHManifest =
|
|
1801
|
+
(typeof CmafWriteDASHManifest)[keyof typeof CmafWriteDASHManifest];
|
|
1802
|
+
export declare const CmafWriteHLSManifest: {
|
|
1803
|
+
readonly DISABLED: "DISABLED";
|
|
1804
|
+
readonly ENABLED: "ENABLED";
|
|
1805
|
+
};
|
|
1806
|
+
export type CmafWriteHLSManifest =
|
|
1807
|
+
(typeof CmafWriteHLSManifest)[keyof typeof CmafWriteHLSManifest];
|
|
1808
|
+
export declare const CmafWriteSegmentTimelineInRepresentation: {
|
|
1809
|
+
readonly DISABLED: "DISABLED";
|
|
1810
|
+
readonly ENABLED: "ENABLED";
|
|
1811
|
+
};
|
|
1812
|
+
export type CmafWriteSegmentTimelineInRepresentation =
|
|
1813
|
+
(typeof CmafWriteSegmentTimelineInRepresentation)[keyof typeof CmafWriteSegmentTimelineInRepresentation];
|
|
1555
1814
|
export interface CmafGroupSettings {
|
|
1556
1815
|
AdditionalManifests?: CmafAdditionalManifest[];
|
|
1557
1816
|
BaseUrl?: string;
|
|
@@ -1585,14 +1844,18 @@ export interface CmafGroupSettings {
|
|
|
1585
1844
|
| CmafWriteSegmentTimelineInRepresentation
|
|
1586
1845
|
| string;
|
|
1587
1846
|
}
|
|
1588
|
-
export declare
|
|
1589
|
-
DOLBY_CHANNEL_CONFIGURATION
|
|
1590
|
-
MPEG_CHANNEL_CONFIGURATION
|
|
1591
|
-
}
|
|
1592
|
-
export
|
|
1593
|
-
|
|
1594
|
-
|
|
1595
|
-
|
|
1847
|
+
export declare const DashIsoGroupAudioChannelConfigSchemeIdUri: {
|
|
1848
|
+
readonly DOLBY_CHANNEL_CONFIGURATION: "DOLBY_CHANNEL_CONFIGURATION";
|
|
1849
|
+
readonly MPEG_CHANNEL_CONFIGURATION: "MPEG_CHANNEL_CONFIGURATION";
|
|
1850
|
+
};
|
|
1851
|
+
export type DashIsoGroupAudioChannelConfigSchemeIdUri =
|
|
1852
|
+
(typeof DashIsoGroupAudioChannelConfigSchemeIdUri)[keyof typeof DashIsoGroupAudioChannelConfigSchemeIdUri];
|
|
1853
|
+
export declare const DashIsoPlaybackDeviceCompatibility: {
|
|
1854
|
+
readonly CENC_V1: "CENC_V1";
|
|
1855
|
+
readonly UNENCRYPTED_SEI: "UNENCRYPTED_SEI";
|
|
1856
|
+
};
|
|
1857
|
+
export type DashIsoPlaybackDeviceCompatibility =
|
|
1858
|
+
(typeof DashIsoPlaybackDeviceCompatibility)[keyof typeof DashIsoPlaybackDeviceCompatibility];
|
|
1596
1859
|
export interface SpekeKeyProvider {
|
|
1597
1860
|
CertificateArn?: string;
|
|
1598
1861
|
ResourceId?: string;
|
|
@@ -1603,20 +1866,26 @@ export interface DashIsoEncryptionSettings {
|
|
|
1603
1866
|
PlaybackDeviceCompatibility?: DashIsoPlaybackDeviceCompatibility | string;
|
|
1604
1867
|
SpekeKeyProvider?: SpekeKeyProvider;
|
|
1605
1868
|
}
|
|
1606
|
-
export declare
|
|
1607
|
-
HBBTV_1_5
|
|
1608
|
-
NONE
|
|
1609
|
-
}
|
|
1610
|
-
export
|
|
1611
|
-
|
|
1612
|
-
|
|
1613
|
-
|
|
1614
|
-
|
|
1615
|
-
|
|
1616
|
-
|
|
1617
|
-
|
|
1618
|
-
|
|
1619
|
-
|
|
1869
|
+
export declare const DashIsoHbbtvCompliance: {
|
|
1870
|
+
readonly HBBTV_1_5: "HBBTV_1_5";
|
|
1871
|
+
readonly NONE: "NONE";
|
|
1872
|
+
};
|
|
1873
|
+
export type DashIsoHbbtvCompliance =
|
|
1874
|
+
(typeof DashIsoHbbtvCompliance)[keyof typeof DashIsoHbbtvCompliance];
|
|
1875
|
+
export declare const DashIsoImageBasedTrickPlay: {
|
|
1876
|
+
readonly ADVANCED: "ADVANCED";
|
|
1877
|
+
readonly NONE: "NONE";
|
|
1878
|
+
readonly THUMBNAIL: "THUMBNAIL";
|
|
1879
|
+
readonly THUMBNAIL_AND_FULLFRAME: "THUMBNAIL_AND_FULLFRAME";
|
|
1880
|
+
};
|
|
1881
|
+
export type DashIsoImageBasedTrickPlay =
|
|
1882
|
+
(typeof DashIsoImageBasedTrickPlay)[keyof typeof DashIsoImageBasedTrickPlay];
|
|
1883
|
+
export declare const DashIsoIntervalCadence: {
|
|
1884
|
+
readonly FOLLOW_CUSTOM: "FOLLOW_CUSTOM";
|
|
1885
|
+
readonly FOLLOW_IFRAME: "FOLLOW_IFRAME";
|
|
1886
|
+
};
|
|
1887
|
+
export type DashIsoIntervalCadence =
|
|
1888
|
+
(typeof DashIsoIntervalCadence)[keyof typeof DashIsoIntervalCadence];
|
|
1620
1889
|
export interface DashIsoImageBasedTrickPlaySettings {
|
|
1621
1890
|
IntervalCadence?: DashIsoIntervalCadence | string;
|
|
1622
1891
|
ThumbnailHeight?: number;
|
|
@@ -1625,34 +1894,48 @@ export interface DashIsoImageBasedTrickPlaySettings {
|
|
|
1625
1894
|
TileHeight?: number;
|
|
1626
1895
|
TileWidth?: number;
|
|
1627
1896
|
}
|
|
1628
|
-
export declare
|
|
1629
|
-
AVERAGE
|
|
1630
|
-
MAX
|
|
1631
|
-
}
|
|
1632
|
-
export
|
|
1633
|
-
|
|
1634
|
-
|
|
1635
|
-
|
|
1636
|
-
|
|
1637
|
-
|
|
1638
|
-
|
|
1639
|
-
|
|
1640
|
-
export declare
|
|
1641
|
-
|
|
1642
|
-
|
|
1643
|
-
}
|
|
1644
|
-
export
|
|
1645
|
-
|
|
1646
|
-
|
|
1647
|
-
|
|
1648
|
-
|
|
1649
|
-
|
|
1650
|
-
|
|
1651
|
-
|
|
1652
|
-
export declare
|
|
1653
|
-
|
|
1654
|
-
|
|
1655
|
-
}
|
|
1897
|
+
export declare const DashIsoMpdManifestBandwidthType: {
|
|
1898
|
+
readonly AVERAGE: "AVERAGE";
|
|
1899
|
+
readonly MAX: "MAX";
|
|
1900
|
+
};
|
|
1901
|
+
export type DashIsoMpdManifestBandwidthType =
|
|
1902
|
+
(typeof DashIsoMpdManifestBandwidthType)[keyof typeof DashIsoMpdManifestBandwidthType];
|
|
1903
|
+
export declare const DashIsoMpdProfile: {
|
|
1904
|
+
readonly MAIN_PROFILE: "MAIN_PROFILE";
|
|
1905
|
+
readonly ON_DEMAND_PROFILE: "ON_DEMAND_PROFILE";
|
|
1906
|
+
};
|
|
1907
|
+
export type DashIsoMpdProfile =
|
|
1908
|
+
(typeof DashIsoMpdProfile)[keyof typeof DashIsoMpdProfile];
|
|
1909
|
+
export declare const DashIsoPtsOffsetHandlingForBFrames: {
|
|
1910
|
+
readonly MATCH_INITIAL_PTS: "MATCH_INITIAL_PTS";
|
|
1911
|
+
readonly ZERO_BASED: "ZERO_BASED";
|
|
1912
|
+
};
|
|
1913
|
+
export type DashIsoPtsOffsetHandlingForBFrames =
|
|
1914
|
+
(typeof DashIsoPtsOffsetHandlingForBFrames)[keyof typeof DashIsoPtsOffsetHandlingForBFrames];
|
|
1915
|
+
export declare const DashIsoSegmentControl: {
|
|
1916
|
+
readonly SEGMENTED_FILES: "SEGMENTED_FILES";
|
|
1917
|
+
readonly SINGLE_FILE: "SINGLE_FILE";
|
|
1918
|
+
};
|
|
1919
|
+
export type DashIsoSegmentControl =
|
|
1920
|
+
(typeof DashIsoSegmentControl)[keyof typeof DashIsoSegmentControl];
|
|
1921
|
+
export declare const DashIsoSegmentLengthControl: {
|
|
1922
|
+
readonly EXACT: "EXACT";
|
|
1923
|
+
readonly GOP_MULTIPLE: "GOP_MULTIPLE";
|
|
1924
|
+
};
|
|
1925
|
+
export type DashIsoSegmentLengthControl =
|
|
1926
|
+
(typeof DashIsoSegmentLengthControl)[keyof typeof DashIsoSegmentLengthControl];
|
|
1927
|
+
export declare const DashIsoVideoCompositionOffsets: {
|
|
1928
|
+
readonly SIGNED: "SIGNED";
|
|
1929
|
+
readonly UNSIGNED: "UNSIGNED";
|
|
1930
|
+
};
|
|
1931
|
+
export type DashIsoVideoCompositionOffsets =
|
|
1932
|
+
(typeof DashIsoVideoCompositionOffsets)[keyof typeof DashIsoVideoCompositionOffsets];
|
|
1933
|
+
export declare const DashIsoWriteSegmentTimelineInRepresentation: {
|
|
1934
|
+
readonly DISABLED: "DISABLED";
|
|
1935
|
+
readonly ENABLED: "ENABLED";
|
|
1936
|
+
};
|
|
1937
|
+
export type DashIsoWriteSegmentTimelineInRepresentation =
|
|
1938
|
+
(typeof DashIsoWriteSegmentTimelineInRepresentation)[keyof typeof DashIsoWriteSegmentTimelineInRepresentation];
|
|
1656
1939
|
export interface DashIsoGroupSettings {
|
|
1657
1940
|
AdditionalManifests?: DashAdditionalManifest[];
|
|
1658
1941
|
AudioChannelConfigSchemeIdUri?:
|
|
@@ -1684,47 +1967,67 @@ export interface FileGroupSettings {
|
|
|
1684
1967
|
Destination?: string;
|
|
1685
1968
|
DestinationSettings?: DestinationSettings;
|
|
1686
1969
|
}
|
|
1687
|
-
export declare
|
|
1688
|
-
EXCLUDE
|
|
1689
|
-
INCLUDE
|
|
1690
|
-
}
|
|
1691
|
-
export
|
|
1692
|
-
|
|
1693
|
-
|
|
1694
|
-
|
|
1695
|
-
|
|
1696
|
-
|
|
1697
|
-
|
|
1698
|
-
|
|
1699
|
-
|
|
1700
|
-
export declare
|
|
1701
|
-
|
|
1702
|
-
|
|
1703
|
-
}
|
|
1704
|
-
export
|
|
1705
|
-
|
|
1706
|
-
|
|
1707
|
-
|
|
1708
|
-
|
|
1709
|
-
|
|
1710
|
-
|
|
1711
|
-
|
|
1712
|
-
export declare
|
|
1713
|
-
|
|
1714
|
-
|
|
1715
|
-
}
|
|
1716
|
-
export
|
|
1717
|
-
|
|
1718
|
-
|
|
1719
|
-
|
|
1720
|
-
|
|
1721
|
-
|
|
1722
|
-
|
|
1723
|
-
|
|
1724
|
-
export declare
|
|
1725
|
-
|
|
1726
|
-
|
|
1727
|
-
}
|
|
1970
|
+
export declare const HlsAudioOnlyHeader: {
|
|
1971
|
+
readonly EXCLUDE: "EXCLUDE";
|
|
1972
|
+
readonly INCLUDE: "INCLUDE";
|
|
1973
|
+
};
|
|
1974
|
+
export type HlsAudioOnlyHeader =
|
|
1975
|
+
(typeof HlsAudioOnlyHeader)[keyof typeof HlsAudioOnlyHeader];
|
|
1976
|
+
export declare const HlsCaptionLanguageSetting: {
|
|
1977
|
+
readonly INSERT: "INSERT";
|
|
1978
|
+
readonly NONE: "NONE";
|
|
1979
|
+
readonly OMIT: "OMIT";
|
|
1980
|
+
};
|
|
1981
|
+
export type HlsCaptionLanguageSetting =
|
|
1982
|
+
(typeof HlsCaptionLanguageSetting)[keyof typeof HlsCaptionLanguageSetting];
|
|
1983
|
+
export declare const HlsCaptionSegmentLengthControl: {
|
|
1984
|
+
readonly LARGE_SEGMENTS: "LARGE_SEGMENTS";
|
|
1985
|
+
readonly MATCH_VIDEO: "MATCH_VIDEO";
|
|
1986
|
+
};
|
|
1987
|
+
export type HlsCaptionSegmentLengthControl =
|
|
1988
|
+
(typeof HlsCaptionSegmentLengthControl)[keyof typeof HlsCaptionSegmentLengthControl];
|
|
1989
|
+
export declare const HlsClientCache: {
|
|
1990
|
+
readonly DISABLED: "DISABLED";
|
|
1991
|
+
readonly ENABLED: "ENABLED";
|
|
1992
|
+
};
|
|
1993
|
+
export type HlsClientCache =
|
|
1994
|
+
(typeof HlsClientCache)[keyof typeof HlsClientCache];
|
|
1995
|
+
export declare const HlsCodecSpecification: {
|
|
1996
|
+
readonly RFC_4281: "RFC_4281";
|
|
1997
|
+
readonly RFC_6381: "RFC_6381";
|
|
1998
|
+
};
|
|
1999
|
+
export type HlsCodecSpecification =
|
|
2000
|
+
(typeof HlsCodecSpecification)[keyof typeof HlsCodecSpecification];
|
|
2001
|
+
export declare const HlsDirectoryStructure: {
|
|
2002
|
+
readonly SINGLE_DIRECTORY: "SINGLE_DIRECTORY";
|
|
2003
|
+
readonly SUBDIRECTORY_PER_STREAM: "SUBDIRECTORY_PER_STREAM";
|
|
2004
|
+
};
|
|
2005
|
+
export type HlsDirectoryStructure =
|
|
2006
|
+
(typeof HlsDirectoryStructure)[keyof typeof HlsDirectoryStructure];
|
|
2007
|
+
export declare const HlsEncryptionType: {
|
|
2008
|
+
readonly AES128: "AES128";
|
|
2009
|
+
readonly SAMPLE_AES: "SAMPLE_AES";
|
|
2010
|
+
};
|
|
2011
|
+
export type HlsEncryptionType =
|
|
2012
|
+
(typeof HlsEncryptionType)[keyof typeof HlsEncryptionType];
|
|
2013
|
+
export declare const HlsInitializationVectorInManifest: {
|
|
2014
|
+
readonly EXCLUDE: "EXCLUDE";
|
|
2015
|
+
readonly INCLUDE: "INCLUDE";
|
|
2016
|
+
};
|
|
2017
|
+
export type HlsInitializationVectorInManifest =
|
|
2018
|
+
(typeof HlsInitializationVectorInManifest)[keyof typeof HlsInitializationVectorInManifest];
|
|
2019
|
+
export declare const HlsOfflineEncrypted: {
|
|
2020
|
+
readonly DISABLED: "DISABLED";
|
|
2021
|
+
readonly ENABLED: "ENABLED";
|
|
2022
|
+
};
|
|
2023
|
+
export type HlsOfflineEncrypted =
|
|
2024
|
+
(typeof HlsOfflineEncrypted)[keyof typeof HlsOfflineEncrypted];
|
|
2025
|
+
export declare const HlsKeyProviderType: {
|
|
2026
|
+
readonly SPEKE: "SPEKE";
|
|
2027
|
+
readonly STATIC_KEY: "STATIC_KEY";
|
|
2028
|
+
};
|
|
2029
|
+
export type HlsKeyProviderType =
|
|
2030
|
+
(typeof HlsKeyProviderType)[keyof typeof HlsKeyProviderType];
|
|
1728
2031
|
export interface HlsEncryptionSettings {
|
|
1729
2032
|
ConstantInitializationVector?: string;
|
|
1730
2033
|
EncryptionMethod?: HlsEncryptionType | string;
|
|
@@ -1734,16 +2037,20 @@ export interface HlsEncryptionSettings {
|
|
|
1734
2037
|
StaticKeyProvider?: StaticKeyProvider;
|
|
1735
2038
|
Type?: HlsKeyProviderType | string;
|
|
1736
2039
|
}
|
|
1737
|
-
export declare
|
|
1738
|
-
ADVANCED
|
|
1739
|
-
NONE
|
|
1740
|
-
THUMBNAIL
|
|
1741
|
-
THUMBNAIL_AND_FULLFRAME
|
|
1742
|
-
}
|
|
1743
|
-
export
|
|
1744
|
-
|
|
1745
|
-
|
|
1746
|
-
|
|
2040
|
+
export declare const HlsImageBasedTrickPlay: {
|
|
2041
|
+
readonly ADVANCED: "ADVANCED";
|
|
2042
|
+
readonly NONE: "NONE";
|
|
2043
|
+
readonly THUMBNAIL: "THUMBNAIL";
|
|
2044
|
+
readonly THUMBNAIL_AND_FULLFRAME: "THUMBNAIL_AND_FULLFRAME";
|
|
2045
|
+
};
|
|
2046
|
+
export type HlsImageBasedTrickPlay =
|
|
2047
|
+
(typeof HlsImageBasedTrickPlay)[keyof typeof HlsImageBasedTrickPlay];
|
|
2048
|
+
export declare const HlsIntervalCadence: {
|
|
2049
|
+
readonly FOLLOW_CUSTOM: "FOLLOW_CUSTOM";
|
|
2050
|
+
readonly FOLLOW_IFRAME: "FOLLOW_IFRAME";
|
|
2051
|
+
};
|
|
2052
|
+
export type HlsIntervalCadence =
|
|
2053
|
+
(typeof HlsIntervalCadence)[keyof typeof HlsIntervalCadence];
|
|
1747
2054
|
export interface HlsImageBasedTrickPlaySettings {
|
|
1748
2055
|
IntervalCadence?: HlsIntervalCadence | string;
|
|
1749
2056
|
ThumbnailHeight?: number;
|
|
@@ -1752,43 +2059,61 @@ export interface HlsImageBasedTrickPlaySettings {
|
|
|
1752
2059
|
TileHeight?: number;
|
|
1753
2060
|
TileWidth?: number;
|
|
1754
2061
|
}
|
|
1755
|
-
export declare
|
|
1756
|
-
GZIP
|
|
1757
|
-
NONE
|
|
1758
|
-
}
|
|
1759
|
-
export
|
|
1760
|
-
|
|
1761
|
-
|
|
1762
|
-
|
|
1763
|
-
|
|
1764
|
-
|
|
1765
|
-
|
|
1766
|
-
|
|
1767
|
-
export declare
|
|
1768
|
-
|
|
1769
|
-
|
|
1770
|
-
}
|
|
1771
|
-
export
|
|
1772
|
-
|
|
1773
|
-
|
|
1774
|
-
|
|
1775
|
-
|
|
1776
|
-
|
|
1777
|
-
|
|
1778
|
-
|
|
1779
|
-
export declare
|
|
1780
|
-
|
|
1781
|
-
|
|
1782
|
-
}
|
|
1783
|
-
export
|
|
1784
|
-
|
|
1785
|
-
|
|
1786
|
-
|
|
1787
|
-
|
|
1788
|
-
|
|
1789
|
-
|
|
1790
|
-
|
|
1791
|
-
|
|
2062
|
+
export declare const HlsManifestCompression: {
|
|
2063
|
+
readonly GZIP: "GZIP";
|
|
2064
|
+
readonly NONE: "NONE";
|
|
2065
|
+
};
|
|
2066
|
+
export type HlsManifestCompression =
|
|
2067
|
+
(typeof HlsManifestCompression)[keyof typeof HlsManifestCompression];
|
|
2068
|
+
export declare const HlsManifestDurationFormat: {
|
|
2069
|
+
readonly FLOATING_POINT: "FLOATING_POINT";
|
|
2070
|
+
readonly INTEGER: "INTEGER";
|
|
2071
|
+
};
|
|
2072
|
+
export type HlsManifestDurationFormat =
|
|
2073
|
+
(typeof HlsManifestDurationFormat)[keyof typeof HlsManifestDurationFormat];
|
|
2074
|
+
export declare const HlsOutputSelection: {
|
|
2075
|
+
readonly MANIFESTS_AND_SEGMENTS: "MANIFESTS_AND_SEGMENTS";
|
|
2076
|
+
readonly SEGMENTS_ONLY: "SEGMENTS_ONLY";
|
|
2077
|
+
};
|
|
2078
|
+
export type HlsOutputSelection =
|
|
2079
|
+
(typeof HlsOutputSelection)[keyof typeof HlsOutputSelection];
|
|
2080
|
+
export declare const HlsProgramDateTime: {
|
|
2081
|
+
readonly EXCLUDE: "EXCLUDE";
|
|
2082
|
+
readonly INCLUDE: "INCLUDE";
|
|
2083
|
+
};
|
|
2084
|
+
export type HlsProgramDateTime =
|
|
2085
|
+
(typeof HlsProgramDateTime)[keyof typeof HlsProgramDateTime];
|
|
2086
|
+
export declare const HlsSegmentControl: {
|
|
2087
|
+
readonly SEGMENTED_FILES: "SEGMENTED_FILES";
|
|
2088
|
+
readonly SINGLE_FILE: "SINGLE_FILE";
|
|
2089
|
+
};
|
|
2090
|
+
export type HlsSegmentControl =
|
|
2091
|
+
(typeof HlsSegmentControl)[keyof typeof HlsSegmentControl];
|
|
2092
|
+
export declare const HlsSegmentLengthControl: {
|
|
2093
|
+
readonly EXACT: "EXACT";
|
|
2094
|
+
readonly GOP_MULTIPLE: "GOP_MULTIPLE";
|
|
2095
|
+
};
|
|
2096
|
+
export type HlsSegmentLengthControl =
|
|
2097
|
+
(typeof HlsSegmentLengthControl)[keyof typeof HlsSegmentLengthControl];
|
|
2098
|
+
export declare const HlsStreamInfResolution: {
|
|
2099
|
+
readonly EXCLUDE: "EXCLUDE";
|
|
2100
|
+
readonly INCLUDE: "INCLUDE";
|
|
2101
|
+
};
|
|
2102
|
+
export type HlsStreamInfResolution =
|
|
2103
|
+
(typeof HlsStreamInfResolution)[keyof typeof HlsStreamInfResolution];
|
|
2104
|
+
export declare const HlsTargetDurationCompatibilityMode: {
|
|
2105
|
+
readonly LEGACY: "LEGACY";
|
|
2106
|
+
readonly SPEC_COMPLIANT: "SPEC_COMPLIANT";
|
|
2107
|
+
};
|
|
2108
|
+
export type HlsTargetDurationCompatibilityMode =
|
|
2109
|
+
(typeof HlsTargetDurationCompatibilityMode)[keyof typeof HlsTargetDurationCompatibilityMode];
|
|
2110
|
+
export declare const HlsTimedMetadataId3Frame: {
|
|
2111
|
+
readonly NONE: "NONE";
|
|
2112
|
+
readonly PRIV: "PRIV";
|
|
2113
|
+
readonly TDRL: "TDRL";
|
|
2114
|
+
};
|
|
2115
|
+
export type HlsTimedMetadataId3Frame =
|
|
2116
|
+
(typeof HlsTimedMetadataId3Frame)[keyof typeof HlsTimedMetadataId3Frame];
|
|
1792
2117
|
export interface HlsGroupSettings {
|
|
1793
2118
|
AdMarkers?: (HlsAdMarkers | string)[];
|
|
1794
2119
|
AdditionalManifests?: HlsAdditionalManifest[];
|
|
@@ -1826,21 +2151,27 @@ export interface MsSmoothAdditionalManifest {
|
|
|
1826
2151
|
ManifestNameModifier?: string;
|
|
1827
2152
|
SelectedOutputs?: string[];
|
|
1828
2153
|
}
|
|
1829
|
-
export declare
|
|
1830
|
-
COMBINE_DUPLICATE_STREAMS
|
|
1831
|
-
NONE
|
|
1832
|
-
}
|
|
2154
|
+
export declare const MsSmoothAudioDeduplication: {
|
|
2155
|
+
readonly COMBINE_DUPLICATE_STREAMS: "COMBINE_DUPLICATE_STREAMS";
|
|
2156
|
+
readonly NONE: "NONE";
|
|
2157
|
+
};
|
|
2158
|
+
export type MsSmoothAudioDeduplication =
|
|
2159
|
+
(typeof MsSmoothAudioDeduplication)[keyof typeof MsSmoothAudioDeduplication];
|
|
1833
2160
|
export interface MsSmoothEncryptionSettings {
|
|
1834
2161
|
SpekeKeyProvider?: SpekeKeyProvider;
|
|
1835
2162
|
}
|
|
1836
|
-
export declare
|
|
1837
|
-
EXACT
|
|
1838
|
-
GOP_MULTIPLE
|
|
1839
|
-
}
|
|
1840
|
-
export
|
|
1841
|
-
|
|
1842
|
-
|
|
1843
|
-
|
|
2163
|
+
export declare const MsSmoothFragmentLengthControl: {
|
|
2164
|
+
readonly EXACT: "EXACT";
|
|
2165
|
+
readonly GOP_MULTIPLE: "GOP_MULTIPLE";
|
|
2166
|
+
};
|
|
2167
|
+
export type MsSmoothFragmentLengthControl =
|
|
2168
|
+
(typeof MsSmoothFragmentLengthControl)[keyof typeof MsSmoothFragmentLengthControl];
|
|
2169
|
+
export declare const MsSmoothManifestEncoding: {
|
|
2170
|
+
readonly UTF16: "UTF16";
|
|
2171
|
+
readonly UTF8: "UTF8";
|
|
2172
|
+
};
|
|
2173
|
+
export type MsSmoothManifestEncoding =
|
|
2174
|
+
(typeof MsSmoothManifestEncoding)[keyof typeof MsSmoothManifestEncoding];
|
|
1844
2175
|
export interface MsSmoothGroupSettings {
|
|
1845
2176
|
AdditionalManifests?: MsSmoothAdditionalManifest[];
|
|
1846
2177
|
AudioDeduplication?: MsSmoothAudioDeduplication | string;
|
|
@@ -1851,13 +2182,15 @@ export interface MsSmoothGroupSettings {
|
|
|
1851
2182
|
FragmentLengthControl?: MsSmoothFragmentLengthControl | string;
|
|
1852
2183
|
ManifestEncoding?: MsSmoothManifestEncoding | string;
|
|
1853
2184
|
}
|
|
1854
|
-
export declare
|
|
1855
|
-
CMAF_GROUP_SETTINGS
|
|
1856
|
-
DASH_ISO_GROUP_SETTINGS
|
|
1857
|
-
FILE_GROUP_SETTINGS
|
|
1858
|
-
HLS_GROUP_SETTINGS
|
|
1859
|
-
MS_SMOOTH_GROUP_SETTINGS
|
|
1860
|
-
}
|
|
2185
|
+
export declare const OutputGroupType: {
|
|
2186
|
+
readonly CMAF_GROUP_SETTINGS: "CMAF_GROUP_SETTINGS";
|
|
2187
|
+
readonly DASH_ISO_GROUP_SETTINGS: "DASH_ISO_GROUP_SETTINGS";
|
|
2188
|
+
readonly FILE_GROUP_SETTINGS: "FILE_GROUP_SETTINGS";
|
|
2189
|
+
readonly HLS_GROUP_SETTINGS: "HLS_GROUP_SETTINGS";
|
|
2190
|
+
readonly MS_SMOOTH_GROUP_SETTINGS: "MS_SMOOTH_GROUP_SETTINGS";
|
|
2191
|
+
};
|
|
2192
|
+
export type OutputGroupType =
|
|
2193
|
+
(typeof OutputGroupType)[keyof typeof OutputGroupType];
|
|
1861
2194
|
export interface OutputGroupSettings {
|
|
1862
2195
|
CmafGroupSettings?: CmafGroupSettings;
|
|
1863
2196
|
DashIsoGroupSettings?: DashIsoGroupSettings;
|
|
@@ -1866,47 +2199,67 @@ export interface OutputGroupSettings {
|
|
|
1866
2199
|
MsSmoothGroupSettings?: MsSmoothGroupSettings;
|
|
1867
2200
|
Type?: OutputGroupType | string;
|
|
1868
2201
|
}
|
|
1869
|
-
export declare
|
|
1870
|
-
DEFAULT_CODEC_DURATION
|
|
1871
|
-
MATCH_VIDEO_DURATION
|
|
1872
|
-
}
|
|
1873
|
-
export
|
|
1874
|
-
|
|
1875
|
-
|
|
1876
|
-
|
|
1877
|
-
|
|
1878
|
-
|
|
1879
|
-
|
|
1880
|
-
|
|
1881
|
-
|
|
1882
|
-
export declare
|
|
1883
|
-
|
|
1884
|
-
|
|
1885
|
-
}
|
|
1886
|
-
export
|
|
1887
|
-
|
|
1888
|
-
|
|
1889
|
-
|
|
1890
|
-
|
|
1891
|
-
|
|
1892
|
-
|
|
1893
|
-
|
|
1894
|
-
export declare
|
|
1895
|
-
|
|
1896
|
-
|
|
1897
|
-
}
|
|
1898
|
-
export
|
|
1899
|
-
|
|
1900
|
-
|
|
1901
|
-
|
|
1902
|
-
|
|
1903
|
-
|
|
1904
|
-
|
|
1905
|
-
|
|
1906
|
-
export declare
|
|
1907
|
-
|
|
1908
|
-
|
|
1909
|
-
}
|
|
2202
|
+
export declare const CmfcAudioDuration: {
|
|
2203
|
+
readonly DEFAULT_CODEC_DURATION: "DEFAULT_CODEC_DURATION";
|
|
2204
|
+
readonly MATCH_VIDEO_DURATION: "MATCH_VIDEO_DURATION";
|
|
2205
|
+
};
|
|
2206
|
+
export type CmfcAudioDuration =
|
|
2207
|
+
(typeof CmfcAudioDuration)[keyof typeof CmfcAudioDuration];
|
|
2208
|
+
export declare const CmfcAudioTrackType: {
|
|
2209
|
+
readonly ALTERNATE_AUDIO_AUTO_SELECT: "ALTERNATE_AUDIO_AUTO_SELECT";
|
|
2210
|
+
readonly ALTERNATE_AUDIO_AUTO_SELECT_DEFAULT: "ALTERNATE_AUDIO_AUTO_SELECT_DEFAULT";
|
|
2211
|
+
readonly ALTERNATE_AUDIO_NOT_AUTO_SELECT: "ALTERNATE_AUDIO_NOT_AUTO_SELECT";
|
|
2212
|
+
};
|
|
2213
|
+
export type CmfcAudioTrackType =
|
|
2214
|
+
(typeof CmfcAudioTrackType)[keyof typeof CmfcAudioTrackType];
|
|
2215
|
+
export declare const CmfcDescriptiveVideoServiceFlag: {
|
|
2216
|
+
readonly DONT_FLAG: "DONT_FLAG";
|
|
2217
|
+
readonly FLAG: "FLAG";
|
|
2218
|
+
};
|
|
2219
|
+
export type CmfcDescriptiveVideoServiceFlag =
|
|
2220
|
+
(typeof CmfcDescriptiveVideoServiceFlag)[keyof typeof CmfcDescriptiveVideoServiceFlag];
|
|
2221
|
+
export declare const CmfcIFrameOnlyManifest: {
|
|
2222
|
+
readonly EXCLUDE: "EXCLUDE";
|
|
2223
|
+
readonly INCLUDE: "INCLUDE";
|
|
2224
|
+
};
|
|
2225
|
+
export type CmfcIFrameOnlyManifest =
|
|
2226
|
+
(typeof CmfcIFrameOnlyManifest)[keyof typeof CmfcIFrameOnlyManifest];
|
|
2227
|
+
export declare const CmfcKlvMetadata: {
|
|
2228
|
+
readonly NONE: "NONE";
|
|
2229
|
+
readonly PASSTHROUGH: "PASSTHROUGH";
|
|
2230
|
+
};
|
|
2231
|
+
export type CmfcKlvMetadata =
|
|
2232
|
+
(typeof CmfcKlvMetadata)[keyof typeof CmfcKlvMetadata];
|
|
2233
|
+
export declare const CmfcManifestMetadataSignaling: {
|
|
2234
|
+
readonly DISABLED: "DISABLED";
|
|
2235
|
+
readonly ENABLED: "ENABLED";
|
|
2236
|
+
};
|
|
2237
|
+
export type CmfcManifestMetadataSignaling =
|
|
2238
|
+
(typeof CmfcManifestMetadataSignaling)[keyof typeof CmfcManifestMetadataSignaling];
|
|
2239
|
+
export declare const CmfcScte35Esam: {
|
|
2240
|
+
readonly INSERT: "INSERT";
|
|
2241
|
+
readonly NONE: "NONE";
|
|
2242
|
+
};
|
|
2243
|
+
export type CmfcScte35Esam =
|
|
2244
|
+
(typeof CmfcScte35Esam)[keyof typeof CmfcScte35Esam];
|
|
2245
|
+
export declare const CmfcScte35Source: {
|
|
2246
|
+
readonly NONE: "NONE";
|
|
2247
|
+
readonly PASSTHROUGH: "PASSTHROUGH";
|
|
2248
|
+
};
|
|
2249
|
+
export type CmfcScte35Source =
|
|
2250
|
+
(typeof CmfcScte35Source)[keyof typeof CmfcScte35Source];
|
|
2251
|
+
export declare const CmfcTimedMetadata: {
|
|
2252
|
+
readonly NONE: "NONE";
|
|
2253
|
+
readonly PASSTHROUGH: "PASSTHROUGH";
|
|
2254
|
+
};
|
|
2255
|
+
export type CmfcTimedMetadata =
|
|
2256
|
+
(typeof CmfcTimedMetadata)[keyof typeof CmfcTimedMetadata];
|
|
2257
|
+
export declare const CmfcTimedMetadataBoxVersion: {
|
|
2258
|
+
readonly VERSION_0: "VERSION_0";
|
|
2259
|
+
readonly VERSION_1: "VERSION_1";
|
|
2260
|
+
};
|
|
2261
|
+
export type CmfcTimedMetadataBoxVersion =
|
|
2262
|
+
(typeof CmfcTimedMetadataBoxVersion)[keyof typeof CmfcTimedMetadataBoxVersion];
|
|
1910
2263
|
export interface CmfcSettings {
|
|
1911
2264
|
AudioDuration?: CmfcAudioDuration | string;
|
|
1912
2265
|
AudioGroupId?: string;
|
|
@@ -1923,42 +2276,53 @@ export interface CmfcSettings {
|
|
|
1923
2276
|
TimedMetadataSchemeIdUri?: string;
|
|
1924
2277
|
TimedMetadataValue?: string;
|
|
1925
2278
|
}
|
|
1926
|
-
export declare
|
|
1927
|
-
CMFC
|
|
1928
|
-
F4V
|
|
1929
|
-
ISMV
|
|
1930
|
-
M2TS
|
|
1931
|
-
M3U8
|
|
1932
|
-
MOV
|
|
1933
|
-
MP4
|
|
1934
|
-
MPD
|
|
1935
|
-
MXF
|
|
1936
|
-
RAW
|
|
1937
|
-
WEBM
|
|
1938
|
-
}
|
|
1939
|
-
export
|
|
1940
|
-
|
|
1941
|
-
|
|
1942
|
-
|
|
2279
|
+
export declare const ContainerType: {
|
|
2280
|
+
readonly CMFC: "CMFC";
|
|
2281
|
+
readonly F4V: "F4V";
|
|
2282
|
+
readonly ISMV: "ISMV";
|
|
2283
|
+
readonly M2TS: "M2TS";
|
|
2284
|
+
readonly M3U8: "M3U8";
|
|
2285
|
+
readonly MOV: "MOV";
|
|
2286
|
+
readonly MP4: "MP4";
|
|
2287
|
+
readonly MPD: "MPD";
|
|
2288
|
+
readonly MXF: "MXF";
|
|
2289
|
+
readonly RAW: "RAW";
|
|
2290
|
+
readonly WEBM: "WEBM";
|
|
2291
|
+
};
|
|
2292
|
+
export type ContainerType = (typeof ContainerType)[keyof typeof ContainerType];
|
|
2293
|
+
export declare const F4vMoovPlacement: {
|
|
2294
|
+
readonly NORMAL: "NORMAL";
|
|
2295
|
+
readonly PROGRESSIVE_DOWNLOAD: "PROGRESSIVE_DOWNLOAD";
|
|
2296
|
+
};
|
|
2297
|
+
export type F4vMoovPlacement =
|
|
2298
|
+
(typeof F4vMoovPlacement)[keyof typeof F4vMoovPlacement];
|
|
1943
2299
|
export interface F4vSettings {
|
|
1944
2300
|
MoovPlacement?: F4vMoovPlacement | string;
|
|
1945
2301
|
}
|
|
1946
|
-
export declare
|
|
1947
|
-
ATSC
|
|
1948
|
-
DVB
|
|
1949
|
-
}
|
|
1950
|
-
export
|
|
1951
|
-
|
|
1952
|
-
|
|
1953
|
-
|
|
1954
|
-
|
|
1955
|
-
|
|
1956
|
-
|
|
1957
|
-
|
|
1958
|
-
export declare
|
|
1959
|
-
|
|
1960
|
-
|
|
1961
|
-
}
|
|
2302
|
+
export declare const M2tsAudioBufferModel: {
|
|
2303
|
+
readonly ATSC: "ATSC";
|
|
2304
|
+
readonly DVB: "DVB";
|
|
2305
|
+
};
|
|
2306
|
+
export type M2tsAudioBufferModel =
|
|
2307
|
+
(typeof M2tsAudioBufferModel)[keyof typeof M2tsAudioBufferModel];
|
|
2308
|
+
export declare const M2tsAudioDuration: {
|
|
2309
|
+
readonly DEFAULT_CODEC_DURATION: "DEFAULT_CODEC_DURATION";
|
|
2310
|
+
readonly MATCH_VIDEO_DURATION: "MATCH_VIDEO_DURATION";
|
|
2311
|
+
};
|
|
2312
|
+
export type M2tsAudioDuration =
|
|
2313
|
+
(typeof M2tsAudioDuration)[keyof typeof M2tsAudioDuration];
|
|
2314
|
+
export declare const M2tsBufferModel: {
|
|
2315
|
+
readonly MULTIPLEX: "MULTIPLEX";
|
|
2316
|
+
readonly NONE: "NONE";
|
|
2317
|
+
};
|
|
2318
|
+
export type M2tsBufferModel =
|
|
2319
|
+
(typeof M2tsBufferModel)[keyof typeof M2tsBufferModel];
|
|
2320
|
+
export declare const M2tsDataPtsControl: {
|
|
2321
|
+
readonly ALIGN_TO_VIDEO: "ALIGN_TO_VIDEO";
|
|
2322
|
+
readonly AUTO: "AUTO";
|
|
2323
|
+
};
|
|
2324
|
+
export type M2tsDataPtsControl =
|
|
2325
|
+
(typeof M2tsDataPtsControl)[keyof typeof M2tsDataPtsControl];
|
|
1962
2326
|
export interface DvbNitSettings {
|
|
1963
2327
|
NetworkId?: number;
|
|
1964
2328
|
NetworkName?: string;
|