@aws-sdk/client-mediaconvert 3.47.0 → 3.49.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.
@@ -1,5 +1,100 @@
1
1
  import { MetadataBearer as $MetadataBearer, SmithyException as __SmithyException } from "@aws-sdk/types";
2
- import { AccelerationSettings, AccelerationStatus, AudioDescription, AutomatedEncodingSettings, AvailBlanking, BillingTagsSource, CaptionDescription, CaptionDescriptionPreset, CmfcAudioDuration, CmfcSettings, ContainerType, Endpoint, EsamSettings, ExtendedDataServices, F4vSettings, Hdr10Metadata, HopDestination, Id3Insertion, ImageInserter, Input, InputTemplate, JobMessages, JobPhase, KantarWatermarkSettings, M2tsSettings, M3u8Settings, MotionImageInserter, MovClapAtom, NielsenConfiguration, NielsenNonLinearWatermarkSettings, OutputGroupDetail, OutputGroupSettings, QueueTransition, Rectangle } from "./models_0";
2
+ import { AccelerationSettings, AccelerationStatus, AudioDescription, AutomatedEncodingSettings, AvailBlanking, BillingTagsSource, CaptionDescription, CaptionDescriptionPreset, CmfcAudioDuration, CmfcSettings, ContainerType, Endpoint, EsamSettings, ExtendedDataServices, F4vSettings, Hdr10Metadata, HopDestination, Id3Insertion, ImageInserter, Input, InputTemplate, JobMessages, JobPhase, KantarWatermarkSettings, M2tsSettings, M3u8AudioDuration, M3u8DataPtsControl, M3u8NielsenId3, M3u8PcrControl, M3u8Scte35Source, MotionImageInserter, NielsenConfiguration, NielsenNonLinearWatermarkSettings, OutputGroupDetail, OutputGroupSettings, QueueTransition, Rectangle } from "./models_0";
3
+ export declare enum TimedMetadata {
4
+ NONE = "NONE",
5
+ PASSTHROUGH = "PASSTHROUGH"
6
+ }
7
+ /**
8
+ * These settings relate to the MPEG-2 transport stream (MPEG2-TS) container for the MPEG2-TS segments in your HLS outputs.
9
+ */
10
+ export interface M3u8Settings {
11
+ /**
12
+ * Specify this setting only when your output will be consumed by a downstream repackaging workflow that is sensitive to very small duration differences between video and audio. For this situation, choose Match video duration (MATCH_VIDEO_DURATION). In all other cases, keep the default value, Default codec duration (DEFAULT_CODEC_DURATION). When you choose Match video duration, MediaConvert pads the output audio streams with silence or trims them to ensure that the total duration of each audio stream is at least as long as the total duration of the video stream. After padding or trimming, the audio stream duration is no more than one frame longer than the video stream. MediaConvert applies audio padding or trimming only to the end of the last segment of the output. For unsegmented outputs, MediaConvert adds padding only to the end of the file. When you keep the default value, any minor discrepancies between audio and video duration will depend on your output audio codec.
13
+ */
14
+ AudioDuration?: M3u8AudioDuration | string;
15
+ /**
16
+ * The number of audio frames to insert for each PES packet.
17
+ */
18
+ AudioFramesPerPes?: number;
19
+ /**
20
+ * Packet Identifier (PID) of the elementary audio stream(s) in the transport stream. Multiple values are accepted, and can be entered in ranges and/or by comma separation.
21
+ */
22
+ AudioPids?: number[];
23
+ /**
24
+ * If you select ALIGN_TO_VIDEO, MediaConvert writes captions and data packets with Presentation Timestamp (PTS) values greater than or equal to the first video packet PTS (MediaConvert drops captions and data packets with lesser PTS values). Keep the default value (AUTO) to allow all PTS values.
25
+ */
26
+ DataPTSControl?: M3u8DataPtsControl | string;
27
+ /**
28
+ * Specify the maximum time, in milliseconds, between Program Clock References (PCRs) inserted into the transport stream.
29
+ */
30
+ MaxPcrInterval?: number;
31
+ /**
32
+ * If INSERT, Nielsen inaudible tones for media tracking will be detected in the input audio and an equivalent ID3 tag will be inserted in the output.
33
+ */
34
+ NielsenId3?: M3u8NielsenId3 | string;
35
+ /**
36
+ * The number of milliseconds between instances of this table in the output transport stream.
37
+ */
38
+ PatInterval?: number;
39
+ /**
40
+ * When set to PCR_EVERY_PES_PACKET a Program Clock Reference value is inserted for every Packetized Elementary Stream (PES) header. This parameter is effective only when the PCR PID is the same as the video or audio elementary stream.
41
+ */
42
+ PcrControl?: M3u8PcrControl | string;
43
+ /**
44
+ * Packet Identifier (PID) of the Program Clock Reference (PCR) in the transport stream. When no value is given, the encoder will assign the same value as the Video PID.
45
+ */
46
+ PcrPid?: number;
47
+ /**
48
+ * The number of milliseconds between instances of this table in the output transport stream.
49
+ */
50
+ PmtInterval?: number;
51
+ /**
52
+ * Packet Identifier (PID) for the Program Map Table (PMT) in the transport stream.
53
+ */
54
+ PmtPid?: number;
55
+ /**
56
+ * Packet Identifier (PID) of the private metadata stream in the transport stream.
57
+ */
58
+ PrivateMetadataPid?: number;
59
+ /**
60
+ * The value of the program number field in the Program Map Table.
61
+ */
62
+ ProgramNumber?: number;
63
+ /**
64
+ * Packet Identifier (PID) of the SCTE-35 stream in the transport stream.
65
+ */
66
+ Scte35Pid?: number;
67
+ /**
68
+ * For SCTE-35 markers from your input-- Choose Passthrough (PASSTHROUGH) if you want SCTE-35 markers that appear in your input to also appear in this output. Choose None (NONE) if you don't want SCTE-35 markers in this output. For SCTE-35 markers from an ESAM XML document-- Choose None (NONE) if you don't want manifest conditioning. Choose Passthrough (PASSTHROUGH) and choose Ad markers (adMarkers) if you do want manifest conditioning. In both cases, also provide the ESAM XML as a string in the setting Signal processing notification XML (sccXml).
69
+ */
70
+ Scte35Source?: M3u8Scte35Source | string;
71
+ /**
72
+ * Applies to HLS outputs. Use this setting to specify whether the service inserts the ID3 timed metadata from the input in this output.
73
+ */
74
+ TimedMetadata?: TimedMetadata | string;
75
+ /**
76
+ * Packet Identifier (PID) of the timed metadata stream in the transport stream.
77
+ */
78
+ TimedMetadataPid?: number;
79
+ /**
80
+ * The value of the transport stream ID field in the Program Map Table.
81
+ */
82
+ TransportStreamId?: number;
83
+ /**
84
+ * Packet Identifier (PID) of the elementary video stream in the transport stream.
85
+ */
86
+ VideoPid?: number;
87
+ }
88
+ export declare namespace M3u8Settings {
89
+ /**
90
+ * @internal
91
+ */
92
+ const filterSensitiveLog: (obj: M3u8Settings) => any;
93
+ }
94
+ export declare enum MovClapAtom {
95
+ EXCLUDE = "EXCLUDE",
96
+ INCLUDE = "INCLUDE"
97
+ }
3
98
  export declare enum MovCslgAtom {
4
99
  EXCLUDE = "EXCLUDE",
5
100
  INCLUDE = "INCLUDE"
@@ -114,6 +209,10 @@ export declare enum MpdScte35Source {
114
209
  NONE = "NONE",
115
210
  PASSTHROUGH = "PASSTHROUGH"
116
211
  }
212
+ export declare enum MpdTimedMetadata {
213
+ NONE = "NONE",
214
+ PASSTHROUGH = "PASSTHROUGH"
215
+ }
117
216
  /**
118
217
  * These settings relate to the fragmented MP4 container for the segments in your DASH outputs.
119
218
  */
@@ -138,6 +237,10 @@ export interface MpdSettings {
138
237
  * Ignore this setting unless you have SCTE-35 markers in your input video file. Choose Passthrough (PASSTHROUGH) if you want SCTE-35 markers that appear in your input to also appear in this output. Choose None (NONE) if you don't want those SCTE-35 markers in this output.
139
238
  */
140
239
  Scte35Source?: MpdScte35Source | string;
240
+ /**
241
+ * Applies to DASH outputs. Use this setting to specify whether the service inserts the ID3 timed metadata from the input in this output.
242
+ */
243
+ TimedMetadata?: MpdTimedMetadata | string;
141
244
  }
142
245
  export declare namespace MpdSettings {
143
246
  /**
@@ -337,6 +440,10 @@ export declare enum Av1AdaptiveQuantization {
337
440
  MEDIUM = "MEDIUM",
338
441
  OFF = "OFF"
339
442
  }
443
+ export declare enum Av1BitDepth {
444
+ BIT_10 = "BIT_10",
445
+ BIT_8 = "BIT_8"
446
+ }
340
447
  export declare enum Av1FramerateControl {
341
448
  INITIALIZE_FROM_SOURCE = "INITIALIZE_FROM_SOURCE",
342
449
  SPECIFIED = "SPECIFIED"
@@ -380,6 +487,10 @@ export interface Av1Settings {
380
487
  * Specify the strength of any adaptive quantization filters that you enable. The value that you choose here applies to Spatial adaptive quantization (spatialAdaptiveQuantization).
381
488
  */
382
489
  AdaptiveQuantization?: Av1AdaptiveQuantization | string;
490
+ /**
491
+ * Specify the Bit depth (Av1BitDepth). You can choose 8-bit (BIT_8) or 10-bit (BIT_10).
492
+ */
493
+ BitDepth?: Av1BitDepth | string;
383
494
  /**
384
495
  * If you are using the console, use the Framerate setting to specify the frame rate for this output. If you want to keep the same frame rate as the input video, choose Follow source. If you want to do frame rate conversion, choose a frame rate from the dropdown list or choose Custom. The framerates shown in the dropdown list are decimal approximations of fractions. If you choose Custom, specify your frame rate as a fraction. If you are creating your transcoding job specification as a JSON file without the console, use FramerateControl to specify which value the service uses for the frame rate for this output. Choose INITIALIZE_FROM_SOURCE if you want the service to use the frame rate from the input. Choose SPECIFIED if you want the service to use the frame rate you specify in the settings FramerateNumerator and FramerateDenominator.
385
496
  */
@@ -900,6 +1011,7 @@ export declare namespace H264Settings {
900
1011
  const filterSensitiveLog: (obj: H264Settings) => any;
901
1012
  }
902
1013
  export declare enum H265AdaptiveQuantization {
1014
+ AUTO = "AUTO",
903
1015
  HIGH = "HIGH",
904
1016
  HIGHER = "HIGHER",
905
1017
  LOW = "LOW",
@@ -1059,7 +1171,7 @@ export declare enum H265WriteMp4PackagingType {
1059
1171
  */
1060
1172
  export interface H265Settings {
1061
1173
  /**
1062
- * Specify the strength of any adaptive quantization filters that you enable. The value that you choose here applies to the following settings: Flicker adaptive quantization (flickerAdaptiveQuantization), Spatial adaptive quantization (spatialAdaptiveQuantization), and Temporal adaptive quantization (temporalAdaptiveQuantization).
1174
+ * When you set Adaptive Quantization (H265AdaptiveQuantization) to Auto (AUTO), or leave blank, MediaConvert automatically applies quantization to improve the video quality of your output. Set Adaptive Quantization to Low (LOW), Medium (MEDIUM), High (HIGH), Higher (HIGHER), or Max (MAX) to manually control the strength of the quantization filter. When you do, you can specify a value for Spatial Adaptive Quantization (H265SpatialAdaptiveQuantization), Temporal Adaptive Quantization (H265TemporalAdaptiveQuantization), and Flicker Adaptive Quantization (H265FlickerAdaptiveQuantization), to further control the quantization filter. Set Adaptive Quantization to Off (OFF) to apply no quantization to your output.
1063
1175
  */
1064
1176
  AdaptiveQuantization?: H265AdaptiveQuantization | string;
1065
1177
  /**
@@ -4216,107 +4328,3 @@ export declare namespace TagResourceResponse {
4216
4328
  */
4217
4329
  const filterSensitiveLog: (obj: TagResourceResponse) => any;
4218
4330
  }
4219
- export interface UntagResourceRequest {
4220
- /**
4221
- * The Amazon Resource Name (ARN) of the resource that you want to remove tags from. To get the ARN, send a GET request with the resource name.
4222
- */
4223
- Arn: string | undefined;
4224
- /**
4225
- * The keys of the tags that you want to remove from the resource.
4226
- */
4227
- TagKeys?: string[];
4228
- }
4229
- export declare namespace UntagResourceRequest {
4230
- /**
4231
- * @internal
4232
- */
4233
- const filterSensitiveLog: (obj: UntagResourceRequest) => any;
4234
- }
4235
- export interface UntagResourceResponse {
4236
- }
4237
- export declare namespace UntagResourceResponse {
4238
- /**
4239
- * @internal
4240
- */
4241
- const filterSensitiveLog: (obj: UntagResourceResponse) => any;
4242
- }
4243
- export interface UpdateJobTemplateRequest {
4244
- /**
4245
- * Accelerated transcoding can significantly speed up jobs with long, visually complex content. Outputs that use this feature incur pro-tier pricing. For information about feature limitations, see the AWS Elemental MediaConvert User Guide.
4246
- */
4247
- AccelerationSettings?: AccelerationSettings;
4248
- /**
4249
- * The new category for the job template, if you are changing it.
4250
- */
4251
- Category?: string;
4252
- /**
4253
- * The new description for the job template, if you are changing it.
4254
- */
4255
- Description?: string;
4256
- /**
4257
- * Optional list of hop destinations.
4258
- */
4259
- HopDestinations?: HopDestination[];
4260
- /**
4261
- * The name of the job template you are modifying
4262
- */
4263
- Name: string | undefined;
4264
- /**
4265
- * Specify the relative priority for this job. In any given queue, the service begins processing the job with the highest value first. When more than one job has the same priority, the service begins processing the job that you submitted first. If you don't specify a priority, the service uses the default value 0.
4266
- */
4267
- Priority?: number;
4268
- /**
4269
- * The new queue for the job template, if you are changing it.
4270
- */
4271
- Queue?: string;
4272
- /**
4273
- * JobTemplateSettings contains all the transcode settings saved in the template that will be applied to jobs created from it.
4274
- */
4275
- Settings?: JobTemplateSettings;
4276
- /**
4277
- * Specify how often MediaConvert sends STATUS_UPDATE events to Amazon CloudWatch Events. Set the interval, in seconds, between status updates. MediaConvert sends an update at this interval from the time the service begins processing your job to the time it completes the transcode or encounters an error.
4278
- */
4279
- StatusUpdateInterval?: StatusUpdateInterval | string;
4280
- }
4281
- export declare namespace UpdateJobTemplateRequest {
4282
- /**
4283
- * @internal
4284
- */
4285
- const filterSensitiveLog: (obj: UpdateJobTemplateRequest) => any;
4286
- }
4287
- export interface UpdateJobTemplateResponse {
4288
- /**
4289
- * A job template is a pre-made set of encoding instructions that you can use to quickly create a job.
4290
- */
4291
- JobTemplate?: JobTemplate;
4292
- }
4293
- export declare namespace UpdateJobTemplateResponse {
4294
- /**
4295
- * @internal
4296
- */
4297
- const filterSensitiveLog: (obj: UpdateJobTemplateResponse) => any;
4298
- }
4299
- export interface UpdatePresetRequest {
4300
- /**
4301
- * The new category for the preset, if you are changing it.
4302
- */
4303
- Category?: string;
4304
- /**
4305
- * The new description for the preset, if you are changing it.
4306
- */
4307
- Description?: string;
4308
- /**
4309
- * The name of the preset you are modifying.
4310
- */
4311
- Name: string | undefined;
4312
- /**
4313
- * Settings for preset
4314
- */
4315
- Settings?: PresetSettings;
4316
- }
4317
- export declare namespace UpdatePresetRequest {
4318
- /**
4319
- * @internal
4320
- */
4321
- const filterSensitiveLog: (obj: UpdatePresetRequest) => any;
4322
- }
@@ -1,4 +1,109 @@
1
- import { Preset, Queue, QueueStatus, ReservationPlanSettings } from "./models_1";
1
+ import { AccelerationSettings, HopDestination } from "./models_0";
2
+ import { JobTemplate, JobTemplateSettings, Preset, PresetSettings, Queue, QueueStatus, ReservationPlanSettings, StatusUpdateInterval } from "./models_1";
3
+ export interface UntagResourceRequest {
4
+ /**
5
+ * The Amazon Resource Name (ARN) of the resource that you want to remove tags from. To get the ARN, send a GET request with the resource name.
6
+ */
7
+ Arn: string | undefined;
8
+ /**
9
+ * The keys of the tags that you want to remove from the resource.
10
+ */
11
+ TagKeys?: string[];
12
+ }
13
+ export declare namespace UntagResourceRequest {
14
+ /**
15
+ * @internal
16
+ */
17
+ const filterSensitiveLog: (obj: UntagResourceRequest) => any;
18
+ }
19
+ export interface UntagResourceResponse {
20
+ }
21
+ export declare namespace UntagResourceResponse {
22
+ /**
23
+ * @internal
24
+ */
25
+ const filterSensitiveLog: (obj: UntagResourceResponse) => any;
26
+ }
27
+ export interface UpdateJobTemplateRequest {
28
+ /**
29
+ * Accelerated transcoding can significantly speed up jobs with long, visually complex content. Outputs that use this feature incur pro-tier pricing. For information about feature limitations, see the AWS Elemental MediaConvert User Guide.
30
+ */
31
+ AccelerationSettings?: AccelerationSettings;
32
+ /**
33
+ * The new category for the job template, if you are changing it.
34
+ */
35
+ Category?: string;
36
+ /**
37
+ * The new description for the job template, if you are changing it.
38
+ */
39
+ Description?: string;
40
+ /**
41
+ * Optional list of hop destinations.
42
+ */
43
+ HopDestinations?: HopDestination[];
44
+ /**
45
+ * The name of the job template you are modifying
46
+ */
47
+ Name: string | undefined;
48
+ /**
49
+ * Specify the relative priority for this job. In any given queue, the service begins processing the job with the highest value first. When more than one job has the same priority, the service begins processing the job that you submitted first. If you don't specify a priority, the service uses the default value 0.
50
+ */
51
+ Priority?: number;
52
+ /**
53
+ * The new queue for the job template, if you are changing it.
54
+ */
55
+ Queue?: string;
56
+ /**
57
+ * JobTemplateSettings contains all the transcode settings saved in the template that will be applied to jobs created from it.
58
+ */
59
+ Settings?: JobTemplateSettings;
60
+ /**
61
+ * Specify how often MediaConvert sends STATUS_UPDATE events to Amazon CloudWatch Events. Set the interval, in seconds, between status updates. MediaConvert sends an update at this interval from the time the service begins processing your job to the time it completes the transcode or encounters an error.
62
+ */
63
+ StatusUpdateInterval?: StatusUpdateInterval | string;
64
+ }
65
+ export declare namespace UpdateJobTemplateRequest {
66
+ /**
67
+ * @internal
68
+ */
69
+ const filterSensitiveLog: (obj: UpdateJobTemplateRequest) => any;
70
+ }
71
+ export interface UpdateJobTemplateResponse {
72
+ /**
73
+ * A job template is a pre-made set of encoding instructions that you can use to quickly create a job.
74
+ */
75
+ JobTemplate?: JobTemplate;
76
+ }
77
+ export declare namespace UpdateJobTemplateResponse {
78
+ /**
79
+ * @internal
80
+ */
81
+ const filterSensitiveLog: (obj: UpdateJobTemplateResponse) => any;
82
+ }
83
+ export interface UpdatePresetRequest {
84
+ /**
85
+ * The new category for the preset, if you are changing it.
86
+ */
87
+ Category?: string;
88
+ /**
89
+ * The new description for the preset, if you are changing it.
90
+ */
91
+ Description?: string;
92
+ /**
93
+ * The name of the preset you are modifying.
94
+ */
95
+ Name: string | undefined;
96
+ /**
97
+ * Settings for preset
98
+ */
99
+ Settings?: PresetSettings;
100
+ }
101
+ export declare namespace UpdatePresetRequest {
102
+ /**
103
+ * @internal
104
+ */
105
+ const filterSensitiveLog: (obj: UpdatePresetRequest) => any;
106
+ }
2
107
  export interface UpdatePresetResponse {
3
108
  /**
4
109
  * A preset is a collection of preconfigured media conversion settings that you want MediaConvert to apply to the output during the conversion process.
@@ -1,7 +1,7 @@
1
1
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
2
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
3
  import { MediaConvertClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConvertClient";
4
- import { UntagResourceRequest, UntagResourceResponse } from "../models/models_1";
4
+ import { UntagResourceRequest, UntagResourceResponse } from "../models/models_2";
5
5
  export interface UntagResourceCommandInput extends UntagResourceRequest {
6
6
  }
7
7
  export interface UntagResourceCommandOutput extends UntagResourceResponse, __MetadataBearer {
@@ -1,7 +1,7 @@
1
1
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
2
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
3
  import { MediaConvertClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConvertClient";
4
- import { UpdateJobTemplateRequest, UpdateJobTemplateResponse } from "../models/models_1";
4
+ import { UpdateJobTemplateRequest, UpdateJobTemplateResponse } from "../models/models_2";
5
5
  export interface UpdateJobTemplateCommandInput extends UpdateJobTemplateRequest {
6
6
  }
7
7
  export interface UpdateJobTemplateCommandOutput extends UpdateJobTemplateResponse, __MetadataBearer {
@@ -1,8 +1,7 @@
1
1
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
2
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
3
  import { MediaConvertClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConvertClient";
4
- import { UpdatePresetRequest } from "../models/models_1";
5
- import { UpdatePresetResponse } from "../models/models_2";
4
+ import { UpdatePresetRequest, UpdatePresetResponse } from "../models/models_2";
6
5
  export interface UpdatePresetCommandInput extends UpdatePresetRequest {
7
6
  }
8
7
  export interface UpdatePresetCommandOutput extends UpdatePresetResponse, __MetadataBearer {
@@ -704,6 +704,7 @@ export declare enum LanguageCode {
704
704
  SQI = "SQI",
705
705
  SRB = "SRB",
706
706
  SRD = "SRD",
707
+ SRP = "SRP",
707
708
  SSW = "SSW",
708
709
  SUN = "SUN",
709
710
  SWA = "SWA",
@@ -1066,6 +1067,10 @@ export declare namespace EmbeddedDestinationSettings {
1066
1067
 
1067
1068
  const filterSensitiveLog: (obj: EmbeddedDestinationSettings) => any;
1068
1069
  }
1070
+ export declare enum ImscAccessibilitySubs {
1071
+ DISABLED = "DISABLED",
1072
+ ENABLED = "ENABLED"
1073
+ }
1069
1074
  export declare enum ImscStylePassthrough {
1070
1075
  DISABLED = "DISABLED",
1071
1076
  ENABLED = "ENABLED"
@@ -1073,6 +1078,8 @@ export declare enum ImscStylePassthrough {
1073
1078
 
1074
1079
  export interface ImscDestinationSettings {
1075
1080
 
1081
+ Accessibility?: ImscAccessibilitySubs | string;
1082
+
1076
1083
  StylePassthrough?: ImscStylePassthrough | string;
1077
1084
  }
1078
1085
  export declare namespace ImscDestinationSettings {
@@ -1139,6 +1146,10 @@ export declare namespace TtmlDestinationSettings {
1139
1146
 
1140
1147
  const filterSensitiveLog: (obj: TtmlDestinationSettings) => any;
1141
1148
  }
1149
+ export declare enum WebvttAccessibilitySubs {
1150
+ DISABLED = "DISABLED",
1151
+ ENABLED = "ENABLED"
1152
+ }
1142
1153
  export declare enum WebvttStylePassthrough {
1143
1154
  DISABLED = "DISABLED",
1144
1155
  ENABLED = "ENABLED"
@@ -1146,6 +1157,8 @@ export declare enum WebvttStylePassthrough {
1146
1157
 
1147
1158
  export interface WebvttDestinationSettings {
1148
1159
 
1160
+ Accessibility?: WebvttAccessibilitySubs | string;
1161
+
1149
1162
  StylePassthrough?: WebvttStylePassthrough | string;
1150
1163
  }
1151
1164
  export declare namespace WebvttDestinationSettings {
@@ -1743,6 +1756,8 @@ export interface Input {
1743
1756
 
1744
1757
  DenoiseFilter?: InputDenoiseFilter | string;
1745
1758
 
1759
+ DolbyVisionMetadataXml?: string;
1760
+
1746
1761
  FileInput?: string;
1747
1762
 
1748
1763
  FilterEnable?: InputFilterEnable | string;
@@ -1794,6 +1809,8 @@ export interface InputTemplate {
1794
1809
 
1795
1810
  DenoiseFilter?: InputDenoiseFilter | string;
1796
1811
 
1812
+ DolbyVisionMetadataXml?: string;
1813
+
1797
1814
  FilterEnable?: InputFilterEnable | string;
1798
1815
 
1799
1816
  FilterStrength?: number;
@@ -2811,6 +2828,10 @@ export declare enum CmfcScte35Source {
2811
2828
  NONE = "NONE",
2812
2829
  PASSTHROUGH = "PASSTHROUGH"
2813
2830
  }
2831
+ export declare enum CmfcTimedMetadata {
2832
+ NONE = "NONE",
2833
+ PASSTHROUGH = "PASSTHROUGH"
2834
+ }
2814
2835
 
2815
2836
  export interface CmfcSettings {
2816
2837
 
@@ -2829,6 +2850,8 @@ export interface CmfcSettings {
2829
2850
  Scte35Esam?: CmfcScte35Esam | string;
2830
2851
 
2831
2852
  Scte35Source?: CmfcScte35Source | string;
2853
+
2854
+ TimedMetadata?: CmfcTimedMetadata | string;
2832
2855
  }
2833
2856
  export declare namespace CmfcSettings {
2834
2857
 
@@ -3075,56 +3098,3 @@ export declare enum M3u8Scte35Source {
3075
3098
  NONE = "NONE",
3076
3099
  PASSTHROUGH = "PASSTHROUGH"
3077
3100
  }
3078
- export declare enum TimedMetadata {
3079
- NONE = "NONE",
3080
- PASSTHROUGH = "PASSTHROUGH"
3081
- }
3082
-
3083
- export interface M3u8Settings {
3084
-
3085
- AudioDuration?: M3u8AudioDuration | string;
3086
-
3087
- AudioFramesPerPes?: number;
3088
-
3089
- AudioPids?: number[];
3090
-
3091
- DataPTSControl?: M3u8DataPtsControl | string;
3092
-
3093
- MaxPcrInterval?: number;
3094
-
3095
- NielsenId3?: M3u8NielsenId3 | string;
3096
-
3097
- PatInterval?: number;
3098
-
3099
- PcrControl?: M3u8PcrControl | string;
3100
-
3101
- PcrPid?: number;
3102
-
3103
- PmtInterval?: number;
3104
-
3105
- PmtPid?: number;
3106
-
3107
- PrivateMetadataPid?: number;
3108
-
3109
- ProgramNumber?: number;
3110
-
3111
- Scte35Pid?: number;
3112
-
3113
- Scte35Source?: M3u8Scte35Source | string;
3114
-
3115
- TimedMetadata?: TimedMetadata | string;
3116
-
3117
- TimedMetadataPid?: number;
3118
-
3119
- TransportStreamId?: number;
3120
-
3121
- VideoPid?: number;
3122
- }
3123
- export declare namespace M3u8Settings {
3124
-
3125
- const filterSensitiveLog: (obj: M3u8Settings) => any;
3126
- }
3127
- export declare enum MovClapAtom {
3128
- EXCLUDE = "EXCLUDE",
3129
- INCLUDE = "INCLUDE"
3130
- }