@aws-sdk/client-medialive 3.301.0 → 3.306.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 +779 -935
- package/dist-cjs/models/models_1.js +532 -641
- package/dist-es/models/models_0.js +779 -935
- package/dist-es/models/models_1.js +532 -641
- package/dist-types/models/models_0.d.ts +1559 -779
- package/dist-types/models/models_1.d.ts +1077 -532
- package/dist-types/ts3.4/models/models_0.d.ts +1060 -779
- package/dist-types/ts3.4/models/models_1.d.ts +729 -532
- package/package.json +37 -37
|
@@ -77,44 +77,60 @@ import {
|
|
|
77
77
|
ReservationResourceSpecification,
|
|
78
78
|
VpcOutputSettingsDescription,
|
|
79
79
|
} from "./models_0";
|
|
80
|
-
export declare
|
|
81
|
-
LIVE
|
|
82
|
-
VOD
|
|
83
|
-
}
|
|
84
|
-
export
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
}
|
|
114
|
-
export
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
80
|
+
export declare const HlsMode: {
|
|
81
|
+
readonly LIVE: "LIVE";
|
|
82
|
+
readonly VOD: "VOD";
|
|
83
|
+
};
|
|
84
|
+
export type HlsMode = (typeof HlsMode)[keyof typeof HlsMode];
|
|
85
|
+
export declare const HlsOutputSelection: {
|
|
86
|
+
readonly MANIFESTS_AND_SEGMENTS: "MANIFESTS_AND_SEGMENTS";
|
|
87
|
+
readonly SEGMENTS_ONLY: "SEGMENTS_ONLY";
|
|
88
|
+
readonly VARIANT_MANIFESTS_AND_SEGMENTS: "VARIANT_MANIFESTS_AND_SEGMENTS";
|
|
89
|
+
};
|
|
90
|
+
export type HlsOutputSelection =
|
|
91
|
+
(typeof HlsOutputSelection)[keyof typeof HlsOutputSelection];
|
|
92
|
+
export declare const HlsProgramDateTime: {
|
|
93
|
+
readonly EXCLUDE: "EXCLUDE";
|
|
94
|
+
readonly INCLUDE: "INCLUDE";
|
|
95
|
+
};
|
|
96
|
+
export type HlsProgramDateTime =
|
|
97
|
+
(typeof HlsProgramDateTime)[keyof typeof HlsProgramDateTime];
|
|
98
|
+
export declare const HlsProgramDateTimeClock: {
|
|
99
|
+
readonly INITIALIZE_FROM_OUTPUT_TIMECODE: "INITIALIZE_FROM_OUTPUT_TIMECODE";
|
|
100
|
+
readonly SYSTEM_CLOCK: "SYSTEM_CLOCK";
|
|
101
|
+
};
|
|
102
|
+
export type HlsProgramDateTimeClock =
|
|
103
|
+
(typeof HlsProgramDateTimeClock)[keyof typeof HlsProgramDateTimeClock];
|
|
104
|
+
export declare const HlsRedundantManifest: {
|
|
105
|
+
readonly DISABLED: "DISABLED";
|
|
106
|
+
readonly ENABLED: "ENABLED";
|
|
107
|
+
};
|
|
108
|
+
export type HlsRedundantManifest =
|
|
109
|
+
(typeof HlsRedundantManifest)[keyof typeof HlsRedundantManifest];
|
|
110
|
+
export declare const HlsSegmentationMode: {
|
|
111
|
+
readonly USE_INPUT_SEGMENTATION: "USE_INPUT_SEGMENTATION";
|
|
112
|
+
readonly USE_SEGMENT_DURATION: "USE_SEGMENT_DURATION";
|
|
113
|
+
};
|
|
114
|
+
export type HlsSegmentationMode =
|
|
115
|
+
(typeof HlsSegmentationMode)[keyof typeof HlsSegmentationMode];
|
|
116
|
+
export declare const HlsStreamInfResolution: {
|
|
117
|
+
readonly EXCLUDE: "EXCLUDE";
|
|
118
|
+
readonly INCLUDE: "INCLUDE";
|
|
119
|
+
};
|
|
120
|
+
export type HlsStreamInfResolution =
|
|
121
|
+
(typeof HlsStreamInfResolution)[keyof typeof HlsStreamInfResolution];
|
|
122
|
+
export declare const HlsTimedMetadataId3Frame: {
|
|
123
|
+
readonly NONE: "NONE";
|
|
124
|
+
readonly PRIV: "PRIV";
|
|
125
|
+
readonly TDRL: "TDRL";
|
|
126
|
+
};
|
|
127
|
+
export type HlsTimedMetadataId3Frame =
|
|
128
|
+
(typeof HlsTimedMetadataId3Frame)[keyof typeof HlsTimedMetadataId3Frame];
|
|
129
|
+
export declare const HlsTsFileMode: {
|
|
130
|
+
readonly SEGMENTED_FILES: "SEGMENTED_FILES";
|
|
131
|
+
readonly SINGLE_FILE: "SINGLE_FILE";
|
|
132
|
+
};
|
|
133
|
+
export type HlsTsFileMode = (typeof HlsTsFileMode)[keyof typeof HlsTsFileMode];
|
|
118
134
|
export interface HlsGroupSettings {
|
|
119
135
|
AdMarkers?: (HlsAdMarkers | string)[];
|
|
120
136
|
BaseUrlContent?: string;
|
|
@@ -163,44 +179,62 @@ export interface HlsGroupSettings {
|
|
|
163
179
|
export interface MediaPackageGroupSettings {
|
|
164
180
|
Destination: OutputLocationRef | undefined;
|
|
165
181
|
}
|
|
166
|
-
export declare
|
|
167
|
-
PASSTHROUGH
|
|
168
|
-
USE_CONFIGURED_CLOCK
|
|
169
|
-
}
|
|
170
|
-
export
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
}
|
|
183
|
-
export
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
export declare
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
182
|
+
export declare const SmoothGroupAudioOnlyTimecodeControl: {
|
|
183
|
+
readonly PASSTHROUGH: "PASSTHROUGH";
|
|
184
|
+
readonly USE_CONFIGURED_CLOCK: "USE_CONFIGURED_CLOCK";
|
|
185
|
+
};
|
|
186
|
+
export type SmoothGroupAudioOnlyTimecodeControl =
|
|
187
|
+
(typeof SmoothGroupAudioOnlyTimecodeControl)[keyof typeof SmoothGroupAudioOnlyTimecodeControl];
|
|
188
|
+
export declare const SmoothGroupCertificateMode: {
|
|
189
|
+
readonly SELF_SIGNED: "SELF_SIGNED";
|
|
190
|
+
readonly VERIFY_AUTHENTICITY: "VERIFY_AUTHENTICITY";
|
|
191
|
+
};
|
|
192
|
+
export type SmoothGroupCertificateMode =
|
|
193
|
+
(typeof SmoothGroupCertificateMode)[keyof typeof SmoothGroupCertificateMode];
|
|
194
|
+
export declare const SmoothGroupEventIdMode: {
|
|
195
|
+
readonly NO_EVENT_ID: "NO_EVENT_ID";
|
|
196
|
+
readonly USE_CONFIGURED: "USE_CONFIGURED";
|
|
197
|
+
readonly USE_TIMESTAMP: "USE_TIMESTAMP";
|
|
198
|
+
};
|
|
199
|
+
export type SmoothGroupEventIdMode =
|
|
200
|
+
(typeof SmoothGroupEventIdMode)[keyof typeof SmoothGroupEventIdMode];
|
|
201
|
+
export declare const SmoothGroupEventStopBehavior: {
|
|
202
|
+
readonly NONE: "NONE";
|
|
203
|
+
readonly SEND_EOS: "SEND_EOS";
|
|
204
|
+
};
|
|
205
|
+
export type SmoothGroupEventStopBehavior =
|
|
206
|
+
(typeof SmoothGroupEventStopBehavior)[keyof typeof SmoothGroupEventStopBehavior];
|
|
207
|
+
export declare const InputLossActionForMsSmoothOut: {
|
|
208
|
+
readonly EMIT_OUTPUT: "EMIT_OUTPUT";
|
|
209
|
+
readonly PAUSE_OUTPUT: "PAUSE_OUTPUT";
|
|
210
|
+
};
|
|
211
|
+
export type InputLossActionForMsSmoothOut =
|
|
212
|
+
(typeof InputLossActionForMsSmoothOut)[keyof typeof InputLossActionForMsSmoothOut];
|
|
213
|
+
export declare const SmoothGroupSegmentationMode: {
|
|
214
|
+
readonly USE_INPUT_SEGMENTATION: "USE_INPUT_SEGMENTATION";
|
|
215
|
+
readonly USE_SEGMENT_DURATION: "USE_SEGMENT_DURATION";
|
|
216
|
+
};
|
|
217
|
+
export type SmoothGroupSegmentationMode =
|
|
218
|
+
(typeof SmoothGroupSegmentationMode)[keyof typeof SmoothGroupSegmentationMode];
|
|
219
|
+
export declare const SmoothGroupSparseTrackType: {
|
|
220
|
+
readonly NONE: "NONE";
|
|
221
|
+
readonly SCTE_35: "SCTE_35";
|
|
222
|
+
readonly SCTE_35_WITHOUT_SEGMENTATION: "SCTE_35_WITHOUT_SEGMENTATION";
|
|
223
|
+
};
|
|
224
|
+
export type SmoothGroupSparseTrackType =
|
|
225
|
+
(typeof SmoothGroupSparseTrackType)[keyof typeof SmoothGroupSparseTrackType];
|
|
226
|
+
export declare const SmoothGroupStreamManifestBehavior: {
|
|
227
|
+
readonly DO_NOT_SEND: "DO_NOT_SEND";
|
|
228
|
+
readonly SEND: "SEND";
|
|
229
|
+
};
|
|
230
|
+
export type SmoothGroupStreamManifestBehavior =
|
|
231
|
+
(typeof SmoothGroupStreamManifestBehavior)[keyof typeof SmoothGroupStreamManifestBehavior];
|
|
232
|
+
export declare const SmoothGroupTimestampOffsetMode: {
|
|
233
|
+
readonly USE_CONFIGURED_OFFSET: "USE_CONFIGURED_OFFSET";
|
|
234
|
+
readonly USE_EVENT_START_DATE: "USE_EVENT_START_DATE";
|
|
235
|
+
};
|
|
236
|
+
export type SmoothGroupTimestampOffsetMode =
|
|
237
|
+
(typeof SmoothGroupTimestampOffsetMode)[keyof typeof SmoothGroupTimestampOffsetMode];
|
|
204
238
|
export interface MsSmoothGroupSettings {
|
|
205
239
|
AcquisitionPointId?: string;
|
|
206
240
|
AudioOnlyTimecodeControl?: SmoothGroupAudioOnlyTimecodeControl | string;
|
|
@@ -223,26 +257,35 @@ export interface MsSmoothGroupSettings {
|
|
|
223
257
|
TimestampOffsetMode?: SmoothGroupTimestampOffsetMode | string;
|
|
224
258
|
}
|
|
225
259
|
export interface MultiplexGroupSettings {}
|
|
226
|
-
export declare
|
|
227
|
-
ON_CUE_POINT_SCTE35
|
|
228
|
-
}
|
|
229
|
-
export
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
export declare
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
260
|
+
export declare const RtmpAdMarkers: {
|
|
261
|
+
readonly ON_CUE_POINT_SCTE35: "ON_CUE_POINT_SCTE35";
|
|
262
|
+
};
|
|
263
|
+
export type RtmpAdMarkers = (typeof RtmpAdMarkers)[keyof typeof RtmpAdMarkers];
|
|
264
|
+
export declare const AuthenticationScheme: {
|
|
265
|
+
readonly AKAMAI: "AKAMAI";
|
|
266
|
+
readonly COMMON: "COMMON";
|
|
267
|
+
};
|
|
268
|
+
export type AuthenticationScheme =
|
|
269
|
+
(typeof AuthenticationScheme)[keyof typeof AuthenticationScheme];
|
|
270
|
+
export declare const RtmpCacheFullBehavior: {
|
|
271
|
+
readonly DISCONNECT_IMMEDIATELY: "DISCONNECT_IMMEDIATELY";
|
|
272
|
+
readonly WAIT_FOR_SERVER: "WAIT_FOR_SERVER";
|
|
273
|
+
};
|
|
274
|
+
export type RtmpCacheFullBehavior =
|
|
275
|
+
(typeof RtmpCacheFullBehavior)[keyof typeof RtmpCacheFullBehavior];
|
|
276
|
+
export declare const RtmpCaptionData: {
|
|
277
|
+
readonly ALL: "ALL";
|
|
278
|
+
readonly FIELD1_608: "FIELD1_608";
|
|
279
|
+
readonly FIELD1_AND_FIELD2_608: "FIELD1_AND_FIELD2_608";
|
|
280
|
+
};
|
|
281
|
+
export type RtmpCaptionData =
|
|
282
|
+
(typeof RtmpCaptionData)[keyof typeof RtmpCaptionData];
|
|
283
|
+
export declare const InputLossActionForRtmpOut: {
|
|
284
|
+
readonly EMIT_OUTPUT: "EMIT_OUTPUT";
|
|
285
|
+
readonly PAUSE_OUTPUT: "PAUSE_OUTPUT";
|
|
286
|
+
};
|
|
287
|
+
export type InputLossActionForRtmpOut =
|
|
288
|
+
(typeof InputLossActionForRtmpOut)[keyof typeof InputLossActionForRtmpOut];
|
|
246
289
|
export interface RtmpGroupSettings {
|
|
247
290
|
AdMarkers?: (RtmpAdMarkers | string)[];
|
|
248
291
|
AuthenticationScheme?: AuthenticationScheme | string;
|
|
@@ -252,16 +295,20 @@ export interface RtmpGroupSettings {
|
|
|
252
295
|
InputLossAction?: InputLossActionForRtmpOut | string;
|
|
253
296
|
RestartDelay?: number;
|
|
254
297
|
}
|
|
255
|
-
export declare
|
|
256
|
-
DROP_PROGRAM
|
|
257
|
-
DROP_TS
|
|
258
|
-
EMIT_PROGRAM
|
|
259
|
-
}
|
|
260
|
-
export
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
298
|
+
export declare const InputLossActionForUdpOut: {
|
|
299
|
+
readonly DROP_PROGRAM: "DROP_PROGRAM";
|
|
300
|
+
readonly DROP_TS: "DROP_TS";
|
|
301
|
+
readonly EMIT_PROGRAM: "EMIT_PROGRAM";
|
|
302
|
+
};
|
|
303
|
+
export type InputLossActionForUdpOut =
|
|
304
|
+
(typeof InputLossActionForUdpOut)[keyof typeof InputLossActionForUdpOut];
|
|
305
|
+
export declare const UdpTimedMetadataId3Frame: {
|
|
306
|
+
readonly NONE: "NONE";
|
|
307
|
+
readonly PRIV: "PRIV";
|
|
308
|
+
readonly TDRL: "TDRL";
|
|
309
|
+
};
|
|
310
|
+
export type UdpTimedMetadataId3Frame =
|
|
311
|
+
(typeof UdpTimedMetadataId3Frame)[keyof typeof UdpTimedMetadataId3Frame];
|
|
265
312
|
export interface UdpGroupSettings {
|
|
266
313
|
InputLossAction?: InputLossActionForUdpOut | string;
|
|
267
314
|
TimedMetadataId3Frame?: UdpTimedMetadataId3Frame | string;
|
|
@@ -289,28 +336,33 @@ export interface PipelineDetail {
|
|
|
289
336
|
ActiveMotionGraphicsUri?: string;
|
|
290
337
|
PipelineId?: string;
|
|
291
338
|
}
|
|
292
|
-
export declare
|
|
293
|
-
PIPELINE_0
|
|
294
|
-
PIPELINE_1
|
|
295
|
-
}
|
|
339
|
+
export declare const PipelineId: {
|
|
340
|
+
readonly PIPELINE_0: "PIPELINE_0";
|
|
341
|
+
readonly PIPELINE_1: "PIPELINE_1";
|
|
342
|
+
};
|
|
343
|
+
export type PipelineId = (typeof PipelineId)[keyof typeof PipelineId];
|
|
296
344
|
export interface PipelinePauseStateSettings {
|
|
297
345
|
PipelineId: PipelineId | string | undefined;
|
|
298
346
|
}
|
|
299
|
-
export declare
|
|
300
|
-
DISABLED
|
|
301
|
-
ENABLED
|
|
302
|
-
UNAVAILABLE
|
|
303
|
-
}
|
|
347
|
+
export declare const ReservationAutomaticRenewal: {
|
|
348
|
+
readonly DISABLED: "DISABLED";
|
|
349
|
+
readonly ENABLED: "ENABLED";
|
|
350
|
+
readonly UNAVAILABLE: "UNAVAILABLE";
|
|
351
|
+
};
|
|
352
|
+
export type ReservationAutomaticRenewal =
|
|
353
|
+
(typeof ReservationAutomaticRenewal)[keyof typeof ReservationAutomaticRenewal];
|
|
304
354
|
export interface RenewalSettings {
|
|
305
355
|
AutomaticRenewal?: ReservationAutomaticRenewal | string;
|
|
306
356
|
RenewalCount?: number;
|
|
307
357
|
}
|
|
308
|
-
export declare
|
|
309
|
-
ACTIVE
|
|
310
|
-
CANCELED
|
|
311
|
-
DELETED
|
|
312
|
-
EXPIRED
|
|
313
|
-
}
|
|
358
|
+
export declare const ReservationState: {
|
|
359
|
+
readonly ACTIVE: "ACTIVE";
|
|
360
|
+
readonly CANCELED: "CANCELED";
|
|
361
|
+
readonly DELETED: "DELETED";
|
|
362
|
+
readonly EXPIRED: "EXPIRED";
|
|
363
|
+
};
|
|
364
|
+
export type ReservationState =
|
|
365
|
+
(typeof ReservationState)[keyof typeof ReservationState];
|
|
314
366
|
export interface Reservation {
|
|
315
367
|
Arn?: string;
|
|
316
368
|
Count?: number;
|
|
@@ -339,17 +391,21 @@ export interface HlsId3SegmentTaggingScheduleActionSettings {
|
|
|
339
391
|
export interface HlsTimedMetadataScheduleActionSettings {
|
|
340
392
|
Id3: string | undefined;
|
|
341
393
|
}
|
|
342
|
-
export declare
|
|
343
|
-
EMBEDDED
|
|
344
|
-
ZEROBASED
|
|
345
|
-
}
|
|
394
|
+
export declare const InputTimecodeSource: {
|
|
395
|
+
readonly EMBEDDED: "EMBEDDED";
|
|
396
|
+
readonly ZEROBASED: "ZEROBASED";
|
|
397
|
+
};
|
|
398
|
+
export type InputTimecodeSource =
|
|
399
|
+
(typeof InputTimecodeSource)[keyof typeof InputTimecodeSource];
|
|
346
400
|
export interface StartTimecode {
|
|
347
401
|
Timecode?: string;
|
|
348
402
|
}
|
|
349
|
-
export declare
|
|
350
|
-
EXCLUDE_LAST_FRAME
|
|
351
|
-
INCLUDE_LAST_FRAME
|
|
352
|
-
}
|
|
403
|
+
export declare const LastFrameClippingBehavior: {
|
|
404
|
+
readonly EXCLUDE_LAST_FRAME: "EXCLUDE_LAST_FRAME";
|
|
405
|
+
readonly INCLUDE_LAST_FRAME: "INCLUDE_LAST_FRAME";
|
|
406
|
+
};
|
|
407
|
+
export type LastFrameClippingBehavior =
|
|
408
|
+
(typeof LastFrameClippingBehavior)[keyof typeof LastFrameClippingBehavior];
|
|
353
409
|
export interface StopTimecode {
|
|
354
410
|
LastFrameClippingBehavior?: LastFrameClippingBehavior | string;
|
|
355
411
|
Timecode?: string;
|
|
@@ -379,10 +435,12 @@ export interface MotionGraphicsDeactivateScheduleActionSettings {}
|
|
|
379
435
|
export interface PauseStateScheduleActionSettings {
|
|
380
436
|
Pipelines?: PipelinePauseStateSettings[];
|
|
381
437
|
}
|
|
382
|
-
export declare
|
|
383
|
-
FIXED
|
|
384
|
-
FOLLOW_ACTIVE
|
|
385
|
-
}
|
|
438
|
+
export declare const Scte35InputMode: {
|
|
439
|
+
readonly FIXED: "FIXED";
|
|
440
|
+
readonly FOLLOW_ACTIVE: "FOLLOW_ACTIVE";
|
|
441
|
+
};
|
|
442
|
+
export type Scte35InputMode =
|
|
443
|
+
(typeof Scte35InputMode)[keyof typeof Scte35InputMode];
|
|
386
444
|
export interface Scte35InputScheduleActionSettings {
|
|
387
445
|
InputAttachmentNameReference?: string;
|
|
388
446
|
Mode: Scte35InputMode | string | undefined;
|
|
@@ -394,34 +452,44 @@ export interface Scte35SpliceInsertScheduleActionSettings {
|
|
|
394
452
|
Duration?: number;
|
|
395
453
|
SpliceEventId: number | undefined;
|
|
396
454
|
}
|
|
397
|
-
export declare
|
|
398
|
-
ARCHIVE_ALLOWED
|
|
399
|
-
ARCHIVE_NOT_ALLOWED
|
|
400
|
-
}
|
|
401
|
-
export
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
export declare
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
}
|
|
455
|
+
export declare const Scte35ArchiveAllowedFlag: {
|
|
456
|
+
readonly ARCHIVE_ALLOWED: "ARCHIVE_ALLOWED";
|
|
457
|
+
readonly ARCHIVE_NOT_ALLOWED: "ARCHIVE_NOT_ALLOWED";
|
|
458
|
+
};
|
|
459
|
+
export type Scte35ArchiveAllowedFlag =
|
|
460
|
+
(typeof Scte35ArchiveAllowedFlag)[keyof typeof Scte35ArchiveAllowedFlag];
|
|
461
|
+
export declare const Scte35DeviceRestrictions: {
|
|
462
|
+
readonly NONE: "NONE";
|
|
463
|
+
readonly RESTRICT_GROUP0: "RESTRICT_GROUP0";
|
|
464
|
+
readonly RESTRICT_GROUP1: "RESTRICT_GROUP1";
|
|
465
|
+
readonly RESTRICT_GROUP2: "RESTRICT_GROUP2";
|
|
466
|
+
};
|
|
467
|
+
export type Scte35DeviceRestrictions =
|
|
468
|
+
(typeof Scte35DeviceRestrictions)[keyof typeof Scte35DeviceRestrictions];
|
|
469
|
+
export declare const Scte35NoRegionalBlackoutFlag: {
|
|
470
|
+
readonly NO_REGIONAL_BLACKOUT: "NO_REGIONAL_BLACKOUT";
|
|
471
|
+
readonly REGIONAL_BLACKOUT: "REGIONAL_BLACKOUT";
|
|
472
|
+
};
|
|
473
|
+
export type Scte35NoRegionalBlackoutFlag =
|
|
474
|
+
(typeof Scte35NoRegionalBlackoutFlag)[keyof typeof Scte35NoRegionalBlackoutFlag];
|
|
475
|
+
export declare const Scte35WebDeliveryAllowedFlag: {
|
|
476
|
+
readonly WEB_DELIVERY_ALLOWED: "WEB_DELIVERY_ALLOWED";
|
|
477
|
+
readonly WEB_DELIVERY_NOT_ALLOWED: "WEB_DELIVERY_NOT_ALLOWED";
|
|
478
|
+
};
|
|
479
|
+
export type Scte35WebDeliveryAllowedFlag =
|
|
480
|
+
(typeof Scte35WebDeliveryAllowedFlag)[keyof typeof Scte35WebDeliveryAllowedFlag];
|
|
415
481
|
export interface Scte35DeliveryRestrictions {
|
|
416
482
|
ArchiveAllowedFlag: Scte35ArchiveAllowedFlag | string | undefined;
|
|
417
483
|
DeviceRestrictions: Scte35DeviceRestrictions | string | undefined;
|
|
418
484
|
NoRegionalBlackoutFlag: Scte35NoRegionalBlackoutFlag | string | undefined;
|
|
419
485
|
WebDeliveryAllowedFlag: Scte35WebDeliveryAllowedFlag | string | undefined;
|
|
420
486
|
}
|
|
421
|
-
export declare
|
|
422
|
-
SEGMENTATION_EVENT_CANCELED
|
|
423
|
-
SEGMENTATION_EVENT_NOT_CANCELED
|
|
424
|
-
}
|
|
487
|
+
export declare const Scte35SegmentationCancelIndicator: {
|
|
488
|
+
readonly SEGMENTATION_EVENT_CANCELED: "SEGMENTATION_EVENT_CANCELED";
|
|
489
|
+
readonly SEGMENTATION_EVENT_NOT_CANCELED: "SEGMENTATION_EVENT_NOT_CANCELED";
|
|
490
|
+
};
|
|
491
|
+
export type Scte35SegmentationCancelIndicator =
|
|
492
|
+
(typeof Scte35SegmentationCancelIndicator)[keyof typeof Scte35SegmentationCancelIndicator];
|
|
425
493
|
export interface Scte35SegmentationDescriptor {
|
|
426
494
|
DeliveryRestrictions?: Scte35DeliveryRestrictions;
|
|
427
495
|
SegmentNum?: number;
|
|
@@ -483,10 +551,11 @@ export interface ScheduleActionSettings {
|
|
|
483
551
|
export interface FixedModeScheduleActionStartSettings {
|
|
484
552
|
Time: string | undefined;
|
|
485
553
|
}
|
|
486
|
-
export declare
|
|
487
|
-
END
|
|
488
|
-
START
|
|
489
|
-
}
|
|
554
|
+
export declare const FollowPoint: {
|
|
555
|
+
readonly END: "END";
|
|
556
|
+
readonly START: "START";
|
|
557
|
+
};
|
|
558
|
+
export type FollowPoint = (typeof FollowPoint)[keyof typeof FollowPoint];
|
|
490
559
|
export interface FollowModeScheduleActionStartSettings {
|
|
491
560
|
FollowPoint: FollowPoint | string | undefined;
|
|
492
561
|
ReferenceActionName: string | undefined;
|
|
@@ -502,10 +571,12 @@ export interface ScheduleAction {
|
|
|
502
571
|
ScheduleActionSettings: ScheduleActionSettings | undefined;
|
|
503
572
|
ScheduleActionStartSettings: ScheduleActionStartSettings | undefined;
|
|
504
573
|
}
|
|
505
|
-
export declare
|
|
506
|
-
INCOMING
|
|
507
|
-
OUTGOING
|
|
508
|
-
}
|
|
574
|
+
export declare const InputDeviceTransferType: {
|
|
575
|
+
readonly INCOMING: "INCOMING";
|
|
576
|
+
readonly OUTGOING: "OUTGOING";
|
|
577
|
+
};
|
|
578
|
+
export type InputDeviceTransferType =
|
|
579
|
+
(typeof InputDeviceTransferType)[keyof typeof InputDeviceTransferType];
|
|
509
580
|
export interface TransferringInputDeviceSummary {
|
|
510
581
|
Id?: string;
|
|
511
582
|
Message?: string;
|
|
@@ -516,27 +587,33 @@ export interface ValidationError {
|
|
|
516
587
|
ElementPath?: string;
|
|
517
588
|
ErrorMessage?: string;
|
|
518
589
|
}
|
|
519
|
-
export declare
|
|
520
|
-
MILLISECONDS
|
|
521
|
-
SECONDS
|
|
522
|
-
}
|
|
523
|
-
export
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
590
|
+
export declare const FrameCaptureIntervalUnit: {
|
|
591
|
+
readonly MILLISECONDS: "MILLISECONDS";
|
|
592
|
+
readonly SECONDS: "SECONDS";
|
|
593
|
+
};
|
|
594
|
+
export type FrameCaptureIntervalUnit =
|
|
595
|
+
(typeof FrameCaptureIntervalUnit)[keyof typeof FrameCaptureIntervalUnit];
|
|
596
|
+
export declare const TimecodeBurninFontSize: {
|
|
597
|
+
readonly EXTRA_SMALL_10: "EXTRA_SMALL_10";
|
|
598
|
+
readonly LARGE_48: "LARGE_48";
|
|
599
|
+
readonly MEDIUM_32: "MEDIUM_32";
|
|
600
|
+
readonly SMALL_16: "SMALL_16";
|
|
601
|
+
};
|
|
602
|
+
export type TimecodeBurninFontSize =
|
|
603
|
+
(typeof TimecodeBurninFontSize)[keyof typeof TimecodeBurninFontSize];
|
|
604
|
+
export declare const TimecodeBurninPosition: {
|
|
605
|
+
readonly BOTTOM_CENTER: "BOTTOM_CENTER";
|
|
606
|
+
readonly BOTTOM_LEFT: "BOTTOM_LEFT";
|
|
607
|
+
readonly BOTTOM_RIGHT: "BOTTOM_RIGHT";
|
|
608
|
+
readonly MIDDLE_CENTER: "MIDDLE_CENTER";
|
|
609
|
+
readonly MIDDLE_LEFT: "MIDDLE_LEFT";
|
|
610
|
+
readonly MIDDLE_RIGHT: "MIDDLE_RIGHT";
|
|
611
|
+
readonly TOP_CENTER: "TOP_CENTER";
|
|
612
|
+
readonly TOP_LEFT: "TOP_LEFT";
|
|
613
|
+
readonly TOP_RIGHT: "TOP_RIGHT";
|
|
614
|
+
};
|
|
615
|
+
export type TimecodeBurninPosition =
|
|
616
|
+
(typeof TimecodeBurninPosition)[keyof typeof TimecodeBurninPosition];
|
|
540
617
|
export interface TimecodeBurninSettings {
|
|
541
618
|
FontSize: TimecodeBurninFontSize | string | undefined;
|
|
542
619
|
Position: TimecodeBurninPosition | string | undefined;
|
|
@@ -547,24 +624,29 @@ export interface FrameCaptureSettings {
|
|
|
547
624
|
CaptureIntervalUnits?: FrameCaptureIntervalUnit | string;
|
|
548
625
|
TimecodeBurninSettings?: TimecodeBurninSettings;
|
|
549
626
|
}
|
|
550
|
-
export declare
|
|
551
|
-
AUTO
|
|
552
|
-
HIGH
|
|
553
|
-
HIGHER
|
|
554
|
-
LOW
|
|
555
|
-
MAX
|
|
556
|
-
MEDIUM
|
|
557
|
-
OFF
|
|
558
|
-
}
|
|
559
|
-
export
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
627
|
+
export declare const H264AdaptiveQuantization: {
|
|
628
|
+
readonly AUTO: "AUTO";
|
|
629
|
+
readonly HIGH: "HIGH";
|
|
630
|
+
readonly HIGHER: "HIGHER";
|
|
631
|
+
readonly LOW: "LOW";
|
|
632
|
+
readonly MAX: "MAX";
|
|
633
|
+
readonly MEDIUM: "MEDIUM";
|
|
634
|
+
readonly OFF: "OFF";
|
|
635
|
+
};
|
|
636
|
+
export type H264AdaptiveQuantization =
|
|
637
|
+
(typeof H264AdaptiveQuantization)[keyof typeof H264AdaptiveQuantization];
|
|
638
|
+
export declare const AfdSignaling: {
|
|
639
|
+
readonly AUTO: "AUTO";
|
|
640
|
+
readonly FIXED: "FIXED";
|
|
641
|
+
readonly NONE: "NONE";
|
|
642
|
+
};
|
|
643
|
+
export type AfdSignaling = (typeof AfdSignaling)[keyof typeof AfdSignaling];
|
|
644
|
+
export declare const H264ColorMetadata: {
|
|
645
|
+
readonly IGNORE: "IGNORE";
|
|
646
|
+
readonly INSERT: "INSERT";
|
|
647
|
+
};
|
|
648
|
+
export type H264ColorMetadata =
|
|
649
|
+
(typeof H264ColorMetadata)[keyof typeof H264ColorMetadata];
|
|
568
650
|
export interface ColorSpacePassthroughSettings {}
|
|
569
651
|
export interface Rec601Settings {}
|
|
570
652
|
export interface Rec709Settings {}
|
|
@@ -573,34 +655,40 @@ export interface H264ColorSpaceSettings {
|
|
|
573
655
|
Rec601Settings?: Rec601Settings;
|
|
574
656
|
Rec709Settings?: Rec709Settings;
|
|
575
657
|
}
|
|
576
|
-
export declare
|
|
577
|
-
CABAC
|
|
578
|
-
CAVLC
|
|
579
|
-
}
|
|
580
|
-
export
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
658
|
+
export declare const H264EntropyEncoding: {
|
|
659
|
+
readonly CABAC: "CABAC";
|
|
660
|
+
readonly CAVLC: "CAVLC";
|
|
661
|
+
};
|
|
662
|
+
export type H264EntropyEncoding =
|
|
663
|
+
(typeof H264EntropyEncoding)[keyof typeof H264EntropyEncoding];
|
|
664
|
+
export declare const TemporalFilterPostFilterSharpening: {
|
|
665
|
+
readonly AUTO: "AUTO";
|
|
666
|
+
readonly DISABLED: "DISABLED";
|
|
667
|
+
readonly ENABLED: "ENABLED";
|
|
668
|
+
};
|
|
669
|
+
export type TemporalFilterPostFilterSharpening =
|
|
670
|
+
(typeof TemporalFilterPostFilterSharpening)[keyof typeof TemporalFilterPostFilterSharpening];
|
|
671
|
+
export declare const TemporalFilterStrength: {
|
|
672
|
+
readonly AUTO: "AUTO";
|
|
673
|
+
readonly STRENGTH_1: "STRENGTH_1";
|
|
674
|
+
readonly STRENGTH_10: "STRENGTH_10";
|
|
675
|
+
readonly STRENGTH_11: "STRENGTH_11";
|
|
676
|
+
readonly STRENGTH_12: "STRENGTH_12";
|
|
677
|
+
readonly STRENGTH_13: "STRENGTH_13";
|
|
678
|
+
readonly STRENGTH_14: "STRENGTH_14";
|
|
679
|
+
readonly STRENGTH_15: "STRENGTH_15";
|
|
680
|
+
readonly STRENGTH_16: "STRENGTH_16";
|
|
681
|
+
readonly STRENGTH_2: "STRENGTH_2";
|
|
682
|
+
readonly STRENGTH_3: "STRENGTH_3";
|
|
683
|
+
readonly STRENGTH_4: "STRENGTH_4";
|
|
684
|
+
readonly STRENGTH_5: "STRENGTH_5";
|
|
685
|
+
readonly STRENGTH_6: "STRENGTH_6";
|
|
686
|
+
readonly STRENGTH_7: "STRENGTH_7";
|
|
687
|
+
readonly STRENGTH_8: "STRENGTH_8";
|
|
688
|
+
readonly STRENGTH_9: "STRENGTH_9";
|
|
689
|
+
};
|
|
690
|
+
export type TemporalFilterStrength =
|
|
691
|
+
(typeof TemporalFilterStrength)[keyof typeof TemporalFilterStrength];
|
|
604
692
|
export interface TemporalFilterSettings {
|
|
605
693
|
PostFilterSharpening?: TemporalFilterPostFilterSharpening | string;
|
|
606
694
|
Strength?: TemporalFilterStrength | string;
|
|
@@ -608,113 +696,144 @@ export interface TemporalFilterSettings {
|
|
|
608
696
|
export interface H264FilterSettings {
|
|
609
697
|
TemporalFilterSettings?: TemporalFilterSettings;
|
|
610
698
|
}
|
|
611
|
-
export declare
|
|
612
|
-
AFD_0000
|
|
613
|
-
AFD_0010
|
|
614
|
-
AFD_0011
|
|
615
|
-
AFD_0100
|
|
616
|
-
AFD_1000
|
|
617
|
-
AFD_1001
|
|
618
|
-
AFD_1010
|
|
619
|
-
AFD_1011
|
|
620
|
-
AFD_1101
|
|
621
|
-
AFD_1110
|
|
622
|
-
AFD_1111
|
|
623
|
-
}
|
|
624
|
-
export
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
export declare
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
}
|
|
640
|
-
export
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
|
|
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
|
-
export declare
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
|
|
710
|
-
export declare
|
|
711
|
-
|
|
712
|
-
|
|
713
|
-
}
|
|
714
|
-
export
|
|
715
|
-
|
|
716
|
-
|
|
717
|
-
|
|
699
|
+
export declare const FixedAfd: {
|
|
700
|
+
readonly AFD_0000: "AFD_0000";
|
|
701
|
+
readonly AFD_0010: "AFD_0010";
|
|
702
|
+
readonly AFD_0011: "AFD_0011";
|
|
703
|
+
readonly AFD_0100: "AFD_0100";
|
|
704
|
+
readonly AFD_1000: "AFD_1000";
|
|
705
|
+
readonly AFD_1001: "AFD_1001";
|
|
706
|
+
readonly AFD_1010: "AFD_1010";
|
|
707
|
+
readonly AFD_1011: "AFD_1011";
|
|
708
|
+
readonly AFD_1101: "AFD_1101";
|
|
709
|
+
readonly AFD_1110: "AFD_1110";
|
|
710
|
+
readonly AFD_1111: "AFD_1111";
|
|
711
|
+
};
|
|
712
|
+
export type FixedAfd = (typeof FixedAfd)[keyof typeof FixedAfd];
|
|
713
|
+
export declare const H264FlickerAq: {
|
|
714
|
+
readonly DISABLED: "DISABLED";
|
|
715
|
+
readonly ENABLED: "ENABLED";
|
|
716
|
+
};
|
|
717
|
+
export type H264FlickerAq = (typeof H264FlickerAq)[keyof typeof H264FlickerAq];
|
|
718
|
+
export declare const H264ForceFieldPictures: {
|
|
719
|
+
readonly DISABLED: "DISABLED";
|
|
720
|
+
readonly ENABLED: "ENABLED";
|
|
721
|
+
};
|
|
722
|
+
export type H264ForceFieldPictures =
|
|
723
|
+
(typeof H264ForceFieldPictures)[keyof typeof H264ForceFieldPictures];
|
|
724
|
+
export declare const H264FramerateControl: {
|
|
725
|
+
readonly INITIALIZE_FROM_SOURCE: "INITIALIZE_FROM_SOURCE";
|
|
726
|
+
readonly SPECIFIED: "SPECIFIED";
|
|
727
|
+
};
|
|
728
|
+
export type H264FramerateControl =
|
|
729
|
+
(typeof H264FramerateControl)[keyof typeof H264FramerateControl];
|
|
730
|
+
export declare const H264GopBReference: {
|
|
731
|
+
readonly DISABLED: "DISABLED";
|
|
732
|
+
readonly ENABLED: "ENABLED";
|
|
733
|
+
};
|
|
734
|
+
export type H264GopBReference =
|
|
735
|
+
(typeof H264GopBReference)[keyof typeof H264GopBReference];
|
|
736
|
+
export declare const H264GopSizeUnits: {
|
|
737
|
+
readonly FRAMES: "FRAMES";
|
|
738
|
+
readonly SECONDS: "SECONDS";
|
|
739
|
+
};
|
|
740
|
+
export type H264GopSizeUnits =
|
|
741
|
+
(typeof H264GopSizeUnits)[keyof typeof H264GopSizeUnits];
|
|
742
|
+
export declare const H264Level: {
|
|
743
|
+
readonly H264_LEVEL_1: "H264_LEVEL_1";
|
|
744
|
+
readonly H264_LEVEL_1_1: "H264_LEVEL_1_1";
|
|
745
|
+
readonly H264_LEVEL_1_2: "H264_LEVEL_1_2";
|
|
746
|
+
readonly H264_LEVEL_1_3: "H264_LEVEL_1_3";
|
|
747
|
+
readonly H264_LEVEL_2: "H264_LEVEL_2";
|
|
748
|
+
readonly H264_LEVEL_2_1: "H264_LEVEL_2_1";
|
|
749
|
+
readonly H264_LEVEL_2_2: "H264_LEVEL_2_2";
|
|
750
|
+
readonly H264_LEVEL_3: "H264_LEVEL_3";
|
|
751
|
+
readonly H264_LEVEL_3_1: "H264_LEVEL_3_1";
|
|
752
|
+
readonly H264_LEVEL_3_2: "H264_LEVEL_3_2";
|
|
753
|
+
readonly H264_LEVEL_4: "H264_LEVEL_4";
|
|
754
|
+
readonly H264_LEVEL_4_1: "H264_LEVEL_4_1";
|
|
755
|
+
readonly H264_LEVEL_4_2: "H264_LEVEL_4_2";
|
|
756
|
+
readonly H264_LEVEL_5: "H264_LEVEL_5";
|
|
757
|
+
readonly H264_LEVEL_5_1: "H264_LEVEL_5_1";
|
|
758
|
+
readonly H264_LEVEL_5_2: "H264_LEVEL_5_2";
|
|
759
|
+
readonly H264_LEVEL_AUTO: "H264_LEVEL_AUTO";
|
|
760
|
+
};
|
|
761
|
+
export type H264Level = (typeof H264Level)[keyof typeof H264Level];
|
|
762
|
+
export declare const H264LookAheadRateControl: {
|
|
763
|
+
readonly HIGH: "HIGH";
|
|
764
|
+
readonly LOW: "LOW";
|
|
765
|
+
readonly MEDIUM: "MEDIUM";
|
|
766
|
+
};
|
|
767
|
+
export type H264LookAheadRateControl =
|
|
768
|
+
(typeof H264LookAheadRateControl)[keyof typeof H264LookAheadRateControl];
|
|
769
|
+
export declare const H264ParControl: {
|
|
770
|
+
readonly INITIALIZE_FROM_SOURCE: "INITIALIZE_FROM_SOURCE";
|
|
771
|
+
readonly SPECIFIED: "SPECIFIED";
|
|
772
|
+
};
|
|
773
|
+
export type H264ParControl =
|
|
774
|
+
(typeof H264ParControl)[keyof typeof H264ParControl];
|
|
775
|
+
export declare const H264Profile: {
|
|
776
|
+
readonly BASELINE: "BASELINE";
|
|
777
|
+
readonly HIGH: "HIGH";
|
|
778
|
+
readonly HIGH_10BIT: "HIGH_10BIT";
|
|
779
|
+
readonly HIGH_422: "HIGH_422";
|
|
780
|
+
readonly HIGH_422_10BIT: "HIGH_422_10BIT";
|
|
781
|
+
readonly MAIN: "MAIN";
|
|
782
|
+
};
|
|
783
|
+
export type H264Profile = (typeof H264Profile)[keyof typeof H264Profile];
|
|
784
|
+
export declare const H264QualityLevel: {
|
|
785
|
+
readonly ENHANCED_QUALITY: "ENHANCED_QUALITY";
|
|
786
|
+
readonly STANDARD_QUALITY: "STANDARD_QUALITY";
|
|
787
|
+
};
|
|
788
|
+
export type H264QualityLevel =
|
|
789
|
+
(typeof H264QualityLevel)[keyof typeof H264QualityLevel];
|
|
790
|
+
export declare const H264RateControlMode: {
|
|
791
|
+
readonly CBR: "CBR";
|
|
792
|
+
readonly MULTIPLEX: "MULTIPLEX";
|
|
793
|
+
readonly QVBR: "QVBR";
|
|
794
|
+
readonly VBR: "VBR";
|
|
795
|
+
};
|
|
796
|
+
export type H264RateControlMode =
|
|
797
|
+
(typeof H264RateControlMode)[keyof typeof H264RateControlMode];
|
|
798
|
+
export declare const H264ScanType: {
|
|
799
|
+
readonly INTERLACED: "INTERLACED";
|
|
800
|
+
readonly PROGRESSIVE: "PROGRESSIVE";
|
|
801
|
+
};
|
|
802
|
+
export type H264ScanType = (typeof H264ScanType)[keyof typeof H264ScanType];
|
|
803
|
+
export declare const H264SceneChangeDetect: {
|
|
804
|
+
readonly DISABLED: "DISABLED";
|
|
805
|
+
readonly ENABLED: "ENABLED";
|
|
806
|
+
};
|
|
807
|
+
export type H264SceneChangeDetect =
|
|
808
|
+
(typeof H264SceneChangeDetect)[keyof typeof H264SceneChangeDetect];
|
|
809
|
+
export declare const H264SpatialAq: {
|
|
810
|
+
readonly DISABLED: "DISABLED";
|
|
811
|
+
readonly ENABLED: "ENABLED";
|
|
812
|
+
};
|
|
813
|
+
export type H264SpatialAq = (typeof H264SpatialAq)[keyof typeof H264SpatialAq];
|
|
814
|
+
export declare const H264SubGopLength: {
|
|
815
|
+
readonly DYNAMIC: "DYNAMIC";
|
|
816
|
+
readonly FIXED: "FIXED";
|
|
817
|
+
};
|
|
818
|
+
export type H264SubGopLength =
|
|
819
|
+
(typeof H264SubGopLength)[keyof typeof H264SubGopLength];
|
|
820
|
+
export declare const H264Syntax: {
|
|
821
|
+
readonly DEFAULT: "DEFAULT";
|
|
822
|
+
readonly RP2027: "RP2027";
|
|
823
|
+
};
|
|
824
|
+
export type H264Syntax = (typeof H264Syntax)[keyof typeof H264Syntax];
|
|
825
|
+
export declare const H264TemporalAq: {
|
|
826
|
+
readonly DISABLED: "DISABLED";
|
|
827
|
+
readonly ENABLED: "ENABLED";
|
|
828
|
+
};
|
|
829
|
+
export type H264TemporalAq =
|
|
830
|
+
(typeof H264TemporalAq)[keyof typeof H264TemporalAq];
|
|
831
|
+
export declare const H264TimecodeInsertionBehavior: {
|
|
832
|
+
readonly DISABLED: "DISABLED";
|
|
833
|
+
readonly PIC_TIMING_SEI: "PIC_TIMING_SEI";
|
|
834
|
+
};
|
|
835
|
+
export type H264TimecodeInsertionBehavior =
|
|
836
|
+
(typeof H264TimecodeInsertionBehavior)[keyof typeof H264TimecodeInsertionBehavior];
|
|
718
837
|
export interface H264Settings {
|
|
719
838
|
AdaptiveQuantization?: H264AdaptiveQuantization | string;
|
|
720
839
|
AfdSignaling?: AfdSignaling | string;
|
|
@@ -759,23 +878,29 @@ export interface H264Settings {
|
|
|
759
878
|
TimecodeInsertion?: H264TimecodeInsertionBehavior | string;
|
|
760
879
|
TimecodeBurninSettings?: TimecodeBurninSettings;
|
|
761
880
|
}
|
|
762
|
-
export declare
|
|
763
|
-
AUTO
|
|
764
|
-
HIGH
|
|
765
|
-
HIGHER
|
|
766
|
-
LOW
|
|
767
|
-
MAX
|
|
768
|
-
MEDIUM
|
|
769
|
-
OFF
|
|
770
|
-
}
|
|
771
|
-
export
|
|
772
|
-
|
|
773
|
-
|
|
774
|
-
|
|
775
|
-
|
|
776
|
-
|
|
777
|
-
|
|
778
|
-
|
|
881
|
+
export declare const H265AdaptiveQuantization: {
|
|
882
|
+
readonly AUTO: "AUTO";
|
|
883
|
+
readonly HIGH: "HIGH";
|
|
884
|
+
readonly HIGHER: "HIGHER";
|
|
885
|
+
readonly LOW: "LOW";
|
|
886
|
+
readonly MAX: "MAX";
|
|
887
|
+
readonly MEDIUM: "MEDIUM";
|
|
888
|
+
readonly OFF: "OFF";
|
|
889
|
+
};
|
|
890
|
+
export type H265AdaptiveQuantization =
|
|
891
|
+
(typeof H265AdaptiveQuantization)[keyof typeof H265AdaptiveQuantization];
|
|
892
|
+
export declare const H265AlternativeTransferFunction: {
|
|
893
|
+
readonly INSERT: "INSERT";
|
|
894
|
+
readonly OMIT: "OMIT";
|
|
895
|
+
};
|
|
896
|
+
export type H265AlternativeTransferFunction =
|
|
897
|
+
(typeof H265AlternativeTransferFunction)[keyof typeof H265AlternativeTransferFunction];
|
|
898
|
+
export declare const H265ColorMetadata: {
|
|
899
|
+
readonly IGNORE: "IGNORE";
|
|
900
|
+
readonly INSERT: "INSERT";
|
|
901
|
+
};
|
|
902
|
+
export type H265ColorMetadata =
|
|
903
|
+
(typeof H265ColorMetadata)[keyof typeof H265ColorMetadata];
|
|
779
904
|
export interface DolbyVision81Settings {}
|
|
780
905
|
export interface H265ColorSpaceSettings {
|
|
781
906
|
ColorSpacePassthroughSettings?: ColorSpacePassthroughSettings;
|
|
@@ -787,60 +912,75 @@ export interface H265ColorSpaceSettings {
|
|
|
787
912
|
export interface H265FilterSettings {
|
|
788
913
|
TemporalFilterSettings?: TemporalFilterSettings;
|
|
789
914
|
}
|
|
790
|
-
export declare
|
|
791
|
-
DISABLED
|
|
792
|
-
ENABLED
|
|
793
|
-
}
|
|
794
|
-
export
|
|
795
|
-
|
|
796
|
-
|
|
797
|
-
|
|
798
|
-
|
|
799
|
-
|
|
800
|
-
|
|
801
|
-
|
|
802
|
-
|
|
803
|
-
|
|
804
|
-
|
|
805
|
-
|
|
806
|
-
|
|
807
|
-
|
|
808
|
-
|
|
809
|
-
|
|
810
|
-
|
|
811
|
-
|
|
812
|
-
|
|
813
|
-
|
|
814
|
-
|
|
815
|
-
|
|
816
|
-
|
|
817
|
-
|
|
818
|
-
|
|
819
|
-
|
|
820
|
-
|
|
821
|
-
|
|
822
|
-
}
|
|
823
|
-
export
|
|
824
|
-
|
|
825
|
-
|
|
826
|
-
|
|
827
|
-
|
|
828
|
-
|
|
829
|
-
|
|
830
|
-
|
|
831
|
-
|
|
832
|
-
|
|
833
|
-
|
|
834
|
-
|
|
835
|
-
|
|
836
|
-
|
|
837
|
-
|
|
838
|
-
|
|
839
|
-
|
|
840
|
-
|
|
841
|
-
|
|
842
|
-
|
|
843
|
-
|
|
915
|
+
export declare const H265FlickerAq: {
|
|
916
|
+
readonly DISABLED: "DISABLED";
|
|
917
|
+
readonly ENABLED: "ENABLED";
|
|
918
|
+
};
|
|
919
|
+
export type H265FlickerAq = (typeof H265FlickerAq)[keyof typeof H265FlickerAq];
|
|
920
|
+
export declare const H265GopSizeUnits: {
|
|
921
|
+
readonly FRAMES: "FRAMES";
|
|
922
|
+
readonly SECONDS: "SECONDS";
|
|
923
|
+
};
|
|
924
|
+
export type H265GopSizeUnits =
|
|
925
|
+
(typeof H265GopSizeUnits)[keyof typeof H265GopSizeUnits];
|
|
926
|
+
export declare const H265Level: {
|
|
927
|
+
readonly H265_LEVEL_1: "H265_LEVEL_1";
|
|
928
|
+
readonly H265_LEVEL_2: "H265_LEVEL_2";
|
|
929
|
+
readonly H265_LEVEL_2_1: "H265_LEVEL_2_1";
|
|
930
|
+
readonly H265_LEVEL_3: "H265_LEVEL_3";
|
|
931
|
+
readonly H265_LEVEL_3_1: "H265_LEVEL_3_1";
|
|
932
|
+
readonly H265_LEVEL_4: "H265_LEVEL_4";
|
|
933
|
+
readonly H265_LEVEL_4_1: "H265_LEVEL_4_1";
|
|
934
|
+
readonly H265_LEVEL_5: "H265_LEVEL_5";
|
|
935
|
+
readonly H265_LEVEL_5_1: "H265_LEVEL_5_1";
|
|
936
|
+
readonly H265_LEVEL_5_2: "H265_LEVEL_5_2";
|
|
937
|
+
readonly H265_LEVEL_6: "H265_LEVEL_6";
|
|
938
|
+
readonly H265_LEVEL_6_1: "H265_LEVEL_6_1";
|
|
939
|
+
readonly H265_LEVEL_6_2: "H265_LEVEL_6_2";
|
|
940
|
+
readonly H265_LEVEL_AUTO: "H265_LEVEL_AUTO";
|
|
941
|
+
};
|
|
942
|
+
export type H265Level = (typeof H265Level)[keyof typeof H265Level];
|
|
943
|
+
export declare const H265LookAheadRateControl: {
|
|
944
|
+
readonly HIGH: "HIGH";
|
|
945
|
+
readonly LOW: "LOW";
|
|
946
|
+
readonly MEDIUM: "MEDIUM";
|
|
947
|
+
};
|
|
948
|
+
export type H265LookAheadRateControl =
|
|
949
|
+
(typeof H265LookAheadRateControl)[keyof typeof H265LookAheadRateControl];
|
|
950
|
+
export declare const H265Profile: {
|
|
951
|
+
readonly MAIN: "MAIN";
|
|
952
|
+
readonly MAIN_10BIT: "MAIN_10BIT";
|
|
953
|
+
};
|
|
954
|
+
export type H265Profile = (typeof H265Profile)[keyof typeof H265Profile];
|
|
955
|
+
export declare const H265RateControlMode: {
|
|
956
|
+
readonly CBR: "CBR";
|
|
957
|
+
readonly MULTIPLEX: "MULTIPLEX";
|
|
958
|
+
readonly QVBR: "QVBR";
|
|
959
|
+
};
|
|
960
|
+
export type H265RateControlMode =
|
|
961
|
+
(typeof H265RateControlMode)[keyof typeof H265RateControlMode];
|
|
962
|
+
export declare const H265ScanType: {
|
|
963
|
+
readonly INTERLACED: "INTERLACED";
|
|
964
|
+
readonly PROGRESSIVE: "PROGRESSIVE";
|
|
965
|
+
};
|
|
966
|
+
export type H265ScanType = (typeof H265ScanType)[keyof typeof H265ScanType];
|
|
967
|
+
export declare const H265SceneChangeDetect: {
|
|
968
|
+
readonly DISABLED: "DISABLED";
|
|
969
|
+
readonly ENABLED: "ENABLED";
|
|
970
|
+
};
|
|
971
|
+
export type H265SceneChangeDetect =
|
|
972
|
+
(typeof H265SceneChangeDetect)[keyof typeof H265SceneChangeDetect];
|
|
973
|
+
export declare const H265Tier: {
|
|
974
|
+
readonly HIGH: "HIGH";
|
|
975
|
+
readonly MAIN: "MAIN";
|
|
976
|
+
};
|
|
977
|
+
export type H265Tier = (typeof H265Tier)[keyof typeof H265Tier];
|
|
978
|
+
export declare const H265TimecodeInsertionBehavior: {
|
|
979
|
+
readonly DISABLED: "DISABLED";
|
|
980
|
+
readonly PIC_TIMING_SEI: "PIC_TIMING_SEI";
|
|
981
|
+
};
|
|
982
|
+
export type H265TimecodeInsertionBehavior =
|
|
983
|
+
(typeof H265TimecodeInsertionBehavior)[keyof typeof H265TimecodeInsertionBehavior];
|
|
844
984
|
export interface H265Settings {
|
|
845
985
|
AdaptiveQuantization?: H265AdaptiveQuantization | string;
|
|
846
986
|
AfdSignaling?: AfdSignaling | string;
|
|
@@ -873,44 +1013,59 @@ export interface H265Settings {
|
|
|
873
1013
|
TimecodeInsertion?: H265TimecodeInsertionBehavior | string;
|
|
874
1014
|
TimecodeBurninSettings?: TimecodeBurninSettings;
|
|
875
1015
|
}
|
|
876
|
-
export declare
|
|
877
|
-
AUTO
|
|
878
|
-
HIGH
|
|
879
|
-
LOW
|
|
880
|
-
MEDIUM
|
|
881
|
-
OFF
|
|
882
|
-
}
|
|
883
|
-
export
|
|
884
|
-
|
|
885
|
-
|
|
886
|
-
|
|
887
|
-
|
|
888
|
-
|
|
889
|
-
|
|
890
|
-
|
|
891
|
-
export declare
|
|
892
|
-
|
|
893
|
-
|
|
894
|
-
}
|
|
1016
|
+
export declare const Mpeg2AdaptiveQuantization: {
|
|
1017
|
+
readonly AUTO: "AUTO";
|
|
1018
|
+
readonly HIGH: "HIGH";
|
|
1019
|
+
readonly LOW: "LOW";
|
|
1020
|
+
readonly MEDIUM: "MEDIUM";
|
|
1021
|
+
readonly OFF: "OFF";
|
|
1022
|
+
};
|
|
1023
|
+
export type Mpeg2AdaptiveQuantization =
|
|
1024
|
+
(typeof Mpeg2AdaptiveQuantization)[keyof typeof Mpeg2AdaptiveQuantization];
|
|
1025
|
+
export declare const Mpeg2ColorMetadata: {
|
|
1026
|
+
readonly IGNORE: "IGNORE";
|
|
1027
|
+
readonly INSERT: "INSERT";
|
|
1028
|
+
};
|
|
1029
|
+
export type Mpeg2ColorMetadata =
|
|
1030
|
+
(typeof Mpeg2ColorMetadata)[keyof typeof Mpeg2ColorMetadata];
|
|
1031
|
+
export declare const Mpeg2ColorSpace: {
|
|
1032
|
+
readonly AUTO: "AUTO";
|
|
1033
|
+
readonly PASSTHROUGH: "PASSTHROUGH";
|
|
1034
|
+
};
|
|
1035
|
+
export type Mpeg2ColorSpace =
|
|
1036
|
+
(typeof Mpeg2ColorSpace)[keyof typeof Mpeg2ColorSpace];
|
|
1037
|
+
export declare const Mpeg2DisplayRatio: {
|
|
1038
|
+
readonly DISPLAYRATIO16X9: "DISPLAYRATIO16X9";
|
|
1039
|
+
readonly DISPLAYRATIO4X3: "DISPLAYRATIO4X3";
|
|
1040
|
+
};
|
|
1041
|
+
export type Mpeg2DisplayRatio =
|
|
1042
|
+
(typeof Mpeg2DisplayRatio)[keyof typeof Mpeg2DisplayRatio];
|
|
895
1043
|
export interface Mpeg2FilterSettings {
|
|
896
1044
|
TemporalFilterSettings?: TemporalFilterSettings;
|
|
897
1045
|
}
|
|
898
|
-
export declare
|
|
899
|
-
FRAMES
|
|
900
|
-
SECONDS
|
|
901
|
-
}
|
|
902
|
-
export
|
|
903
|
-
|
|
904
|
-
|
|
905
|
-
|
|
906
|
-
|
|
907
|
-
|
|
908
|
-
|
|
909
|
-
|
|
910
|
-
|
|
911
|
-
|
|
912
|
-
|
|
913
|
-
|
|
1046
|
+
export declare const Mpeg2GopSizeUnits: {
|
|
1047
|
+
readonly FRAMES: "FRAMES";
|
|
1048
|
+
readonly SECONDS: "SECONDS";
|
|
1049
|
+
};
|
|
1050
|
+
export type Mpeg2GopSizeUnits =
|
|
1051
|
+
(typeof Mpeg2GopSizeUnits)[keyof typeof Mpeg2GopSizeUnits];
|
|
1052
|
+
export declare const Mpeg2ScanType: {
|
|
1053
|
+
readonly INTERLACED: "INTERLACED";
|
|
1054
|
+
readonly PROGRESSIVE: "PROGRESSIVE";
|
|
1055
|
+
};
|
|
1056
|
+
export type Mpeg2ScanType = (typeof Mpeg2ScanType)[keyof typeof Mpeg2ScanType];
|
|
1057
|
+
export declare const Mpeg2SubGopLength: {
|
|
1058
|
+
readonly DYNAMIC: "DYNAMIC";
|
|
1059
|
+
readonly FIXED: "FIXED";
|
|
1060
|
+
};
|
|
1061
|
+
export type Mpeg2SubGopLength =
|
|
1062
|
+
(typeof Mpeg2SubGopLength)[keyof typeof Mpeg2SubGopLength];
|
|
1063
|
+
export declare const Mpeg2TimecodeInsertionBehavior: {
|
|
1064
|
+
readonly DISABLED: "DISABLED";
|
|
1065
|
+
readonly GOP_TIMECODE: "GOP_TIMECODE";
|
|
1066
|
+
};
|
|
1067
|
+
export type Mpeg2TimecodeInsertionBehavior =
|
|
1068
|
+
(typeof Mpeg2TimecodeInsertionBehavior)[keyof typeof Mpeg2TimecodeInsertionBehavior];
|
|
914
1069
|
export interface Mpeg2Settings {
|
|
915
1070
|
AdaptiveQuantization?: Mpeg2AdaptiveQuantization | string;
|
|
916
1071
|
AfdSignaling?: AfdSignaling | string;
|
|
@@ -936,15 +1091,19 @@ export interface VideoCodecSettings {
|
|
|
936
1091
|
H265Settings?: H265Settings;
|
|
937
1092
|
Mpeg2Settings?: Mpeg2Settings;
|
|
938
1093
|
}
|
|
939
|
-
export declare
|
|
940
|
-
NONE
|
|
941
|
-
PASSTHROUGH
|
|
942
|
-
RESPOND
|
|
943
|
-
}
|
|
944
|
-
export
|
|
945
|
-
|
|
946
|
-
|
|
947
|
-
|
|
1094
|
+
export declare const VideoDescriptionRespondToAfd: {
|
|
1095
|
+
readonly NONE: "NONE";
|
|
1096
|
+
readonly PASSTHROUGH: "PASSTHROUGH";
|
|
1097
|
+
readonly RESPOND: "RESPOND";
|
|
1098
|
+
};
|
|
1099
|
+
export type VideoDescriptionRespondToAfd =
|
|
1100
|
+
(typeof VideoDescriptionRespondToAfd)[keyof typeof VideoDescriptionRespondToAfd];
|
|
1101
|
+
export declare const VideoDescriptionScalingBehavior: {
|
|
1102
|
+
readonly DEFAULT: "DEFAULT";
|
|
1103
|
+
readonly STRETCH_TO_OUTPUT: "STRETCH_TO_OUTPUT";
|
|
1104
|
+
};
|
|
1105
|
+
export type VideoDescriptionScalingBehavior =
|
|
1106
|
+
(typeof VideoDescriptionScalingBehavior)[keyof typeof VideoDescriptionScalingBehavior];
|
|
948
1107
|
export interface VideoDescription {
|
|
949
1108
|
CodecSettings?: VideoCodecSettings;
|
|
950
1109
|
Height?: number;
|
|
@@ -954,9 +1113,10 @@ export interface VideoDescription {
|
|
|
954
1113
|
Sharpness?: number;
|
|
955
1114
|
Width?: number;
|
|
956
1115
|
}
|
|
957
|
-
export declare
|
|
958
|
-
image_jpeg
|
|
959
|
-
}
|
|
1116
|
+
export declare const AcceptHeader: {
|
|
1117
|
+
readonly image_jpeg: "image/jpeg";
|
|
1118
|
+
};
|
|
1119
|
+
export type AcceptHeader = (typeof AcceptHeader)[keyof typeof AcceptHeader];
|
|
960
1120
|
export interface AcceptInputDeviceTransferRequest {
|
|
961
1121
|
InputDeviceId: string | undefined;
|
|
962
1122
|
}
|
|
@@ -1028,10 +1188,12 @@ export declare class UnprocessableEntityException extends __BaseException {
|
|
|
1028
1188
|
opts: __ExceptionOptionType<UnprocessableEntityException, __BaseException>
|
|
1029
1189
|
);
|
|
1030
1190
|
}
|
|
1031
|
-
export declare
|
|
1032
|
-
DISABLED
|
|
1033
|
-
ENABLED
|
|
1034
|
-
}
|
|
1191
|
+
export declare const AvailBlankingState: {
|
|
1192
|
+
readonly DISABLED: "DISABLED";
|
|
1193
|
+
readonly ENABLED: "ENABLED";
|
|
1194
|
+
};
|
|
1195
|
+
export type AvailBlankingState =
|
|
1196
|
+
(typeof AvailBlankingState)[keyof typeof AvailBlankingState];
|
|
1035
1197
|
export interface AvailBlanking {
|
|
1036
1198
|
AvailBlankingImage?: InputLocation;
|
|
1037
1199
|
State?: AvailBlankingState | string;
|
|
@@ -1044,14 +1206,18 @@ export interface Esam {
|
|
|
1044
1206
|
Username?: string;
|
|
1045
1207
|
ZoneIdentity?: string;
|
|
1046
1208
|
}
|
|
1047
|
-
export declare
|
|
1048
|
-
FOLLOW
|
|
1049
|
-
IGNORE
|
|
1050
|
-
}
|
|
1051
|
-
export
|
|
1052
|
-
|
|
1053
|
-
|
|
1054
|
-
|
|
1209
|
+
export declare const Scte35SpliceInsertNoRegionalBlackoutBehavior: {
|
|
1210
|
+
readonly FOLLOW: "FOLLOW";
|
|
1211
|
+
readonly IGNORE: "IGNORE";
|
|
1212
|
+
};
|
|
1213
|
+
export type Scte35SpliceInsertNoRegionalBlackoutBehavior =
|
|
1214
|
+
(typeof Scte35SpliceInsertNoRegionalBlackoutBehavior)[keyof typeof Scte35SpliceInsertNoRegionalBlackoutBehavior];
|
|
1215
|
+
export declare const Scte35SpliceInsertWebDeliveryAllowedBehavior: {
|
|
1216
|
+
readonly FOLLOW: "FOLLOW";
|
|
1217
|
+
readonly IGNORE: "IGNORE";
|
|
1218
|
+
};
|
|
1219
|
+
export type Scte35SpliceInsertWebDeliveryAllowedBehavior =
|
|
1220
|
+
(typeof Scte35SpliceInsertWebDeliveryAllowedBehavior)[keyof typeof Scte35SpliceInsertWebDeliveryAllowedBehavior];
|
|
1055
1221
|
export interface Scte35SpliceInsert {
|
|
1056
1222
|
AdAvailOffset?: number;
|
|
1057
1223
|
NoRegionalBlackoutFlag?:
|
|
@@ -1061,14 +1227,18 @@ export interface Scte35SpliceInsert {
|
|
|
1061
1227
|
| Scte35SpliceInsertWebDeliveryAllowedBehavior
|
|
1062
1228
|
| string;
|
|
1063
1229
|
}
|
|
1064
|
-
export declare
|
|
1065
|
-
FOLLOW
|
|
1066
|
-
IGNORE
|
|
1067
|
-
}
|
|
1068
|
-
export
|
|
1069
|
-
|
|
1070
|
-
|
|
1071
|
-
|
|
1230
|
+
export declare const Scte35AposNoRegionalBlackoutBehavior: {
|
|
1231
|
+
readonly FOLLOW: "FOLLOW";
|
|
1232
|
+
readonly IGNORE: "IGNORE";
|
|
1233
|
+
};
|
|
1234
|
+
export type Scte35AposNoRegionalBlackoutBehavior =
|
|
1235
|
+
(typeof Scte35AposNoRegionalBlackoutBehavior)[keyof typeof Scte35AposNoRegionalBlackoutBehavior];
|
|
1236
|
+
export declare const Scte35AposWebDeliveryAllowedBehavior: {
|
|
1237
|
+
readonly FOLLOW: "FOLLOW";
|
|
1238
|
+
readonly IGNORE: "IGNORE";
|
|
1239
|
+
};
|
|
1240
|
+
export type Scte35AposWebDeliveryAllowedBehavior =
|
|
1241
|
+
(typeof Scte35AposWebDeliveryAllowedBehavior)[keyof typeof Scte35AposWebDeliveryAllowedBehavior];
|
|
1072
1242
|
export interface Scte35TimeSignalApos {
|
|
1073
1243
|
AdAvailOffset?: number;
|
|
1074
1244
|
NoRegionalBlackoutFlag?: Scte35AposNoRegionalBlackoutBehavior | string;
|
|
@@ -1129,14 +1299,18 @@ export interface BatchUpdateScheduleResponse {
|
|
|
1129
1299
|
Creates?: BatchScheduleActionCreateResult;
|
|
1130
1300
|
Deletes?: BatchScheduleActionDeleteResult;
|
|
1131
1301
|
}
|
|
1132
|
-
export declare
|
|
1133
|
-
DISABLED
|
|
1134
|
-
ENABLED
|
|
1135
|
-
}
|
|
1136
|
-
export
|
|
1137
|
-
|
|
1138
|
-
|
|
1139
|
-
|
|
1302
|
+
export declare const BlackoutSlateNetworkEndBlackout: {
|
|
1303
|
+
readonly DISABLED: "DISABLED";
|
|
1304
|
+
readonly ENABLED: "ENABLED";
|
|
1305
|
+
};
|
|
1306
|
+
export type BlackoutSlateNetworkEndBlackout =
|
|
1307
|
+
(typeof BlackoutSlateNetworkEndBlackout)[keyof typeof BlackoutSlateNetworkEndBlackout];
|
|
1308
|
+
export declare const BlackoutSlateState: {
|
|
1309
|
+
readonly DISABLED: "DISABLED";
|
|
1310
|
+
readonly ENABLED: "ENABLED";
|
|
1311
|
+
};
|
|
1312
|
+
export type BlackoutSlateState =
|
|
1313
|
+
(typeof BlackoutSlateState)[keyof typeof BlackoutSlateState];
|
|
1140
1314
|
export interface BlackoutSlate {
|
|
1141
1315
|
BlackoutSlateImage?: InputLocation;
|
|
1142
1316
|
NetworkEndBlackout?: BlackoutSlateNetworkEndBlackout | string;
|
|
@@ -1148,23 +1322,29 @@ export interface CancelInputDeviceTransferRequest {
|
|
|
1148
1322
|
InputDeviceId: string | undefined;
|
|
1149
1323
|
}
|
|
1150
1324
|
export interface CancelInputDeviceTransferResponse {}
|
|
1151
|
-
export declare
|
|
1152
|
-
DISABLED
|
|
1153
|
-
ENABLED
|
|
1154
|
-
}
|
|
1325
|
+
export declare const FeatureActivationsInputPrepareScheduleActions: {
|
|
1326
|
+
readonly DISABLED: "DISABLED";
|
|
1327
|
+
readonly ENABLED: "ENABLED";
|
|
1328
|
+
};
|
|
1329
|
+
export type FeatureActivationsInputPrepareScheduleActions =
|
|
1330
|
+
(typeof FeatureActivationsInputPrepareScheduleActions)[keyof typeof FeatureActivationsInputPrepareScheduleActions];
|
|
1155
1331
|
export interface FeatureActivations {
|
|
1156
1332
|
InputPrepareScheduleActions?:
|
|
1157
1333
|
| FeatureActivationsInputPrepareScheduleActions
|
|
1158
1334
|
| string;
|
|
1159
1335
|
}
|
|
1160
|
-
export declare
|
|
1161
|
-
NONE
|
|
1162
|
-
SWITCH_AND_LOOP_INPUTS
|
|
1163
|
-
}
|
|
1164
|
-
export
|
|
1165
|
-
|
|
1166
|
-
|
|
1167
|
-
|
|
1336
|
+
export declare const GlobalConfigurationInputEndAction: {
|
|
1337
|
+
readonly NONE: "NONE";
|
|
1338
|
+
readonly SWITCH_AND_LOOP_INPUTS: "SWITCH_AND_LOOP_INPUTS";
|
|
1339
|
+
};
|
|
1340
|
+
export type GlobalConfigurationInputEndAction =
|
|
1341
|
+
(typeof GlobalConfigurationInputEndAction)[keyof typeof GlobalConfigurationInputEndAction];
|
|
1342
|
+
export declare const InputLossImageType: {
|
|
1343
|
+
readonly COLOR: "COLOR";
|
|
1344
|
+
readonly SLATE: "SLATE";
|
|
1345
|
+
};
|
|
1346
|
+
export type InputLossImageType =
|
|
1347
|
+
(typeof InputLossImageType)[keyof typeof InputLossImageType];
|
|
1168
1348
|
export interface InputLossBehavior {
|
|
1169
1349
|
BlackFrameMsec?: number;
|
|
1170
1350
|
InputLossImageColor?: string;
|
|
@@ -1172,18 +1352,24 @@ export interface InputLossBehavior {
|
|
|
1172
1352
|
InputLossImageType?: InputLossImageType | string;
|
|
1173
1353
|
RepeatFrameMsec?: number;
|
|
1174
1354
|
}
|
|
1175
|
-
export declare
|
|
1176
|
-
EPOCH_LOCKING
|
|
1177
|
-
PIPELINE_LOCKING
|
|
1178
|
-
}
|
|
1179
|
-
export
|
|
1180
|
-
|
|
1181
|
-
|
|
1182
|
-
|
|
1183
|
-
|
|
1184
|
-
|
|
1185
|
-
|
|
1186
|
-
|
|
1355
|
+
export declare const GlobalConfigurationOutputLockingMode: {
|
|
1356
|
+
readonly EPOCH_LOCKING: "EPOCH_LOCKING";
|
|
1357
|
+
readonly PIPELINE_LOCKING: "PIPELINE_LOCKING";
|
|
1358
|
+
};
|
|
1359
|
+
export type GlobalConfigurationOutputLockingMode =
|
|
1360
|
+
(typeof GlobalConfigurationOutputLockingMode)[keyof typeof GlobalConfigurationOutputLockingMode];
|
|
1361
|
+
export declare const GlobalConfigurationOutputTimingSource: {
|
|
1362
|
+
readonly INPUT_CLOCK: "INPUT_CLOCK";
|
|
1363
|
+
readonly SYSTEM_CLOCK: "SYSTEM_CLOCK";
|
|
1364
|
+
};
|
|
1365
|
+
export type GlobalConfigurationOutputTimingSource =
|
|
1366
|
+
(typeof GlobalConfigurationOutputTimingSource)[keyof typeof GlobalConfigurationOutputTimingSource];
|
|
1367
|
+
export declare const GlobalConfigurationLowFramerateInputs: {
|
|
1368
|
+
readonly DISABLED: "DISABLED";
|
|
1369
|
+
readonly ENABLED: "ENABLED";
|
|
1370
|
+
};
|
|
1371
|
+
export type GlobalConfigurationLowFramerateInputs =
|
|
1372
|
+
(typeof GlobalConfigurationLowFramerateInputs)[keyof typeof GlobalConfigurationLowFramerateInputs];
|
|
1187
1373
|
export interface GlobalConfiguration {
|
|
1188
1374
|
InitialAudioGain?: number;
|
|
1189
1375
|
InputEndAction?: GlobalConfigurationInputEndAction | string;
|
|
@@ -1192,10 +1378,12 @@ export interface GlobalConfiguration {
|
|
|
1192
1378
|
OutputTimingSource?: GlobalConfigurationOutputTimingSource | string;
|
|
1193
1379
|
SupportLowFramerateInputs?: GlobalConfigurationLowFramerateInputs | string;
|
|
1194
1380
|
}
|
|
1195
|
-
export declare
|
|
1196
|
-
DISABLED
|
|
1197
|
-
ENABLED
|
|
1198
|
-
}
|
|
1381
|
+
export declare const MotionGraphicsInsertion: {
|
|
1382
|
+
readonly DISABLED: "DISABLED";
|
|
1383
|
+
readonly ENABLED: "ENABLED";
|
|
1384
|
+
};
|
|
1385
|
+
export type MotionGraphicsInsertion =
|
|
1386
|
+
(typeof MotionGraphicsInsertion)[keyof typeof MotionGraphicsInsertion];
|
|
1199
1387
|
export interface HtmlMotionGraphicsSettings {}
|
|
1200
1388
|
export interface MotionGraphicsSettings {
|
|
1201
1389
|
HtmlMotionGraphicsSettings?: HtmlMotionGraphicsSettings;
|
|
@@ -1204,19 +1392,23 @@ export interface MotionGraphicsConfiguration {
|
|
|
1204
1392
|
MotionGraphicsInsertion?: MotionGraphicsInsertion | string;
|
|
1205
1393
|
MotionGraphicsSettings: MotionGraphicsSettings | undefined;
|
|
1206
1394
|
}
|
|
1207
|
-
export declare
|
|
1208
|
-
DISABLED
|
|
1209
|
-
ENABLED
|
|
1210
|
-
}
|
|
1395
|
+
export declare const NielsenPcmToId3TaggingState: {
|
|
1396
|
+
readonly DISABLED: "DISABLED";
|
|
1397
|
+
readonly ENABLED: "ENABLED";
|
|
1398
|
+
};
|
|
1399
|
+
export type NielsenPcmToId3TaggingState =
|
|
1400
|
+
(typeof NielsenPcmToId3TaggingState)[keyof typeof NielsenPcmToId3TaggingState];
|
|
1211
1401
|
export interface NielsenConfiguration {
|
|
1212
1402
|
DistributorId?: string;
|
|
1213
1403
|
NielsenPcmToId3Tagging?: NielsenPcmToId3TaggingState | string;
|
|
1214
1404
|
}
|
|
1215
|
-
export declare
|
|
1216
|
-
EMBEDDED
|
|
1217
|
-
SYSTEMCLOCK
|
|
1218
|
-
ZEROBASED
|
|
1219
|
-
}
|
|
1405
|
+
export declare const TimecodeConfigSource: {
|
|
1406
|
+
readonly EMBEDDED: "EMBEDDED";
|
|
1407
|
+
readonly SYSTEMCLOCK: "SYSTEMCLOCK";
|
|
1408
|
+
readonly ZEROBASED: "ZEROBASED";
|
|
1409
|
+
};
|
|
1410
|
+
export type TimecodeConfigSource =
|
|
1411
|
+
(typeof TimecodeConfigSource)[keyof typeof TimecodeConfigSource];
|
|
1220
1412
|
export interface TimecodeConfig {
|
|
1221
1413
|
Source: TimecodeConfigSource | string | undefined;
|
|
1222
1414
|
SyncThreshold?: number;
|
|
@@ -1259,9 +1451,10 @@ export interface ClaimDeviceRequest {
|
|
|
1259
1451
|
Id?: string;
|
|
1260
1452
|
}
|
|
1261
1453
|
export interface ClaimDeviceResponse {}
|
|
1262
|
-
export declare
|
|
1263
|
-
image_jpeg
|
|
1264
|
-
}
|
|
1454
|
+
export declare const ContentType: {
|
|
1455
|
+
readonly image_jpeg: "image/jpeg";
|
|
1456
|
+
};
|
|
1457
|
+
export type ContentType = (typeof ContentType)[keyof typeof ContentType];
|
|
1265
1458
|
export interface MaintenanceCreateSettings {
|
|
1266
1459
|
MaintenanceDay?: MaintenanceDay | string;
|
|
1267
1460
|
MaintenanceStartTime?: string;
|
|
@@ -1345,11 +1538,13 @@ export interface Multiplex {
|
|
|
1345
1538
|
export interface CreateMultiplexResponse {
|
|
1346
1539
|
Multiplex?: Multiplex;
|
|
1347
1540
|
}
|
|
1348
|
-
export declare
|
|
1349
|
-
CURRENTLY_ACTIVE
|
|
1350
|
-
PIPELINE_0
|
|
1351
|
-
PIPELINE_1
|
|
1352
|
-
}
|
|
1541
|
+
export declare const PreferredChannelPipeline: {
|
|
1542
|
+
readonly CURRENTLY_ACTIVE: "CURRENTLY_ACTIVE";
|
|
1543
|
+
readonly PIPELINE_0: "PIPELINE_0";
|
|
1544
|
+
readonly PIPELINE_1: "PIPELINE_1";
|
|
1545
|
+
};
|
|
1546
|
+
export type PreferredChannelPipeline =
|
|
1547
|
+
(typeof PreferredChannelPipeline)[keyof typeof PreferredChannelPipeline];
|
|
1353
1548
|
export interface MultiplexProgramServiceDescriptor {
|
|
1354
1549
|
ProviderName: string | undefined;
|
|
1355
1550
|
ServiceName: string | undefined;
|
|
@@ -1780,10 +1975,12 @@ export interface PurchaseOfferingRequest {
|
|
|
1780
1975
|
export interface PurchaseOfferingResponse {
|
|
1781
1976
|
Reservation?: Reservation;
|
|
1782
1977
|
}
|
|
1783
|
-
export declare
|
|
1784
|
-
NO
|
|
1785
|
-
YES
|
|
1786
|
-
}
|
|
1978
|
+
export declare const RebootInputDeviceForce: {
|
|
1979
|
+
readonly NO: "NO";
|
|
1980
|
+
readonly YES: "YES";
|
|
1981
|
+
};
|
|
1982
|
+
export type RebootInputDeviceForce =
|
|
1983
|
+
(typeof RebootInputDeviceForce)[keyof typeof RebootInputDeviceForce];
|
|
1787
1984
|
export interface RebootInputDeviceRequest {
|
|
1788
1985
|
Force?: RebootInputDeviceForce | string;
|
|
1789
1986
|
InputDeviceId: string | undefined;
|