@aws-sdk/client-mediaconvert 3.428.0 → 3.430.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-types/models/models_0.d.ts +197 -197
- package/dist-types/models/models_1.d.ts +240 -240
- package/dist-types/models/models_2.d.ts +16 -16
- package/dist-types/ts3.4/models/models_0.d.ts +197 -205
- package/dist-types/ts3.4/models/models_1.d.ts +240 -242
- package/dist-types/ts3.4/models/models_2.d.ts +16 -16
- package/package.json +11 -11
|
@@ -24,7 +24,7 @@ export interface AllowedRenditionSize {
|
|
|
24
24
|
* @public
|
|
25
25
|
* Set to ENABLED to force a rendition to be included.
|
|
26
26
|
*/
|
|
27
|
-
Required?: RequiredFlag
|
|
27
|
+
Required?: RequiredFlag;
|
|
28
28
|
/**
|
|
29
29
|
* @public
|
|
30
30
|
* Use Width to define the video resolution width, in pixels, for this rule.
|
|
@@ -78,7 +78,7 @@ export interface AudioChannelTaggingSettings {
|
|
|
78
78
|
* @public
|
|
79
79
|
* You can add a tag for this mono-channel audio track to mimic its placement in a multi-channel layout. For example, if this track is the left surround channel, choose Left surround (LS).
|
|
80
80
|
*/
|
|
81
|
-
ChannelTag?: AudioChannelTag
|
|
81
|
+
ChannelTag?: AudioChannelTag;
|
|
82
82
|
}
|
|
83
83
|
/**
|
|
84
84
|
* @public
|
|
@@ -139,12 +139,12 @@ export interface AudioNormalizationSettings {
|
|
|
139
139
|
* @public
|
|
140
140
|
* Choose one of the following audio normalization algorithms: ITU-R BS.1770-1: Ungated loudness. A measurement of ungated average loudness for an entire piece of content, suitable for measurement of short-form content under ATSC recommendation A/85. Supports up to 5.1 audio channels. ITU-R BS.1770-2: Gated loudness. A measurement of gated average loudness compliant with the requirements of EBU-R128. Supports up to 5.1 audio channels. ITU-R BS.1770-3: Modified peak. The same loudness measurement algorithm as 1770-2, with an updated true peak measurement. ITU-R BS.1770-4: Higher channel count. Allows for more audio channels than the other algorithms, including configurations such as 7.1.
|
|
141
141
|
*/
|
|
142
|
-
Algorithm?: AudioNormalizationAlgorithm
|
|
142
|
+
Algorithm?: AudioNormalizationAlgorithm;
|
|
143
143
|
/**
|
|
144
144
|
* @public
|
|
145
145
|
* When enabled the output audio is corrected using the chosen algorithm. If disabled, the audio will be measured but not adjusted.
|
|
146
146
|
*/
|
|
147
|
-
AlgorithmControl?: AudioNormalizationAlgorithmControl
|
|
147
|
+
AlgorithmControl?: AudioNormalizationAlgorithmControl;
|
|
148
148
|
/**
|
|
149
149
|
* @public
|
|
150
150
|
* Content measuring above this level will be corrected to the target level. Content measuring below this level will not be corrected.
|
|
@@ -154,12 +154,12 @@ export interface AudioNormalizationSettings {
|
|
|
154
154
|
* @public
|
|
155
155
|
* If set to LOG, log each output's audio track loudness to a CSV file.
|
|
156
156
|
*/
|
|
157
|
-
LoudnessLogging?: AudioNormalizationLoudnessLogging
|
|
157
|
+
LoudnessLogging?: AudioNormalizationLoudnessLogging;
|
|
158
158
|
/**
|
|
159
159
|
* @public
|
|
160
160
|
* If set to TRUE_PEAK, calculate and log the TruePeak for each output's audio track loudness.
|
|
161
161
|
*/
|
|
162
|
-
PeakCalculation?: AudioNormalizationPeakCalculation
|
|
162
|
+
PeakCalculation?: AudioNormalizationPeakCalculation;
|
|
163
163
|
/**
|
|
164
164
|
* @public
|
|
165
165
|
* When you use Audio normalization, optionally use this setting to specify a target loudness. If you don't specify a value here, the encoder chooses a value for you, based on the algorithm that you choose for Algorithm. If you choose algorithm 1770-1, the encoder will choose -24 LKFS; otherwise, the encoder will choose -23 LKFS.
|
|
@@ -282,7 +282,7 @@ export interface AacSettings {
|
|
|
282
282
|
* @public
|
|
283
283
|
* Choose BROADCASTER_MIXED_AD when the input contains pre-mixed main audio + audio description (AD) as a stereo pair. The value for AudioType will be set to 3, which signals to downstream systems that this stream contains "broadcaster mixed AD". Note that the input received by the encoder must contain pre-mixed audio; the encoder does not perform the mixing. When you choose BROADCASTER_MIXED_AD, the encoder ignores any values you provide in AudioType and FollowInputAudioType. Choose NORMAL when the input does not contain pre-mixed audio + audio description (AD). In this case, the encoder will use any values you provide for AudioType and FollowInputAudioType.
|
|
284
284
|
*/
|
|
285
|
-
AudioDescriptionBroadcasterMix?: AacAudioDescriptionBroadcasterMix
|
|
285
|
+
AudioDescriptionBroadcasterMix?: AacAudioDescriptionBroadcasterMix;
|
|
286
286
|
/**
|
|
287
287
|
* @public
|
|
288
288
|
* Specify the average bitrate in bits per second. The set of valid values for this setting is: 6000, 8000, 10000, 12000, 14000, 16000, 20000, 24000, 28000, 32000, 40000, 48000, 56000, 64000, 80000, 96000, 112000, 128000, 160000, 192000, 224000, 256000, 288000, 320000, 384000, 448000, 512000, 576000, 640000, 768000, 896000, 1024000. The value you set is also constrained by the values that you choose for Profile, Bitrate control mode, and Sample rate. Default values depend on Bitrate control mode and Profile.
|
|
@@ -292,22 +292,22 @@ export interface AacSettings {
|
|
|
292
292
|
* @public
|
|
293
293
|
* AAC Profile.
|
|
294
294
|
*/
|
|
295
|
-
CodecProfile?: AacCodecProfile
|
|
295
|
+
CodecProfile?: AacCodecProfile;
|
|
296
296
|
/**
|
|
297
297
|
* @public
|
|
298
298
|
* The Coding mode that you specify determines the number of audio channels and the audio channel layout metadata in your AAC output. Valid coding modes depend on the Rate control mode and Profile that you select. The following list shows the number of audio channels and channel layout for each coding mode. * 1.0 Audio Description (Receiver Mix): One channel, C. Includes audio description data from your stereo input. For more information see ETSI TS 101 154 Annex E. * 1.0 Mono: One channel, C. * 2.0 Stereo: Two channels, L, R. * 5.1 Surround: Six channels, C, L, R, Ls, Rs, LFE.
|
|
299
299
|
*/
|
|
300
|
-
CodingMode?: AacCodingMode
|
|
300
|
+
CodingMode?: AacCodingMode;
|
|
301
301
|
/**
|
|
302
302
|
* @public
|
|
303
303
|
* Rate Control Mode.
|
|
304
304
|
*/
|
|
305
|
-
RateControlMode?: AacRateControlMode
|
|
305
|
+
RateControlMode?: AacRateControlMode;
|
|
306
306
|
/**
|
|
307
307
|
* @public
|
|
308
308
|
* Enables LATM/LOAS AAC output. Note that if you use LATM/LOAS AAC in an output, you must choose "No container" for the output container.
|
|
309
309
|
*/
|
|
310
|
-
RawFormat?: AacRawFormat
|
|
310
|
+
RawFormat?: AacRawFormat;
|
|
311
311
|
/**
|
|
312
312
|
* @public
|
|
313
313
|
* Specify the Sample rate in Hz. Valid sample rates depend on the Profile and Coding mode that you select. The following list shows valid sample rates for each Profile and Coding mode. * LC Profile, Coding mode 1.0, 2.0, and Receiver Mix: 8000, 12000, 16000, 22050, 24000, 32000, 44100, 48000, 88200, 96000. * LC Profile, Coding mode 5.1: 32000, 44100, 48000, 96000. * HEV1 Profile, Coding mode 1.0 and Receiver Mix: 22050, 24000, 32000, 44100, 48000. * HEV1 Profile, Coding mode 2.0 and 5.1: 32000, 44100, 48000, 96000. * HEV2 Profile, Coding mode 2.0: 22050, 24000, 32000, 44100, 48000.
|
|
@@ -317,12 +317,12 @@ export interface AacSettings {
|
|
|
317
317
|
* @public
|
|
318
318
|
* Use MPEG-2 AAC instead of MPEG-4 AAC audio for raw or MPEG-2 Transport Stream containers.
|
|
319
319
|
*/
|
|
320
|
-
Specification?: AacSpecification
|
|
320
|
+
Specification?: AacSpecification;
|
|
321
321
|
/**
|
|
322
322
|
* @public
|
|
323
323
|
* VBR Quality Level - Only used if rate_control_mode is VBR.
|
|
324
324
|
*/
|
|
325
|
-
VbrQuality?: AacVbrQuality
|
|
325
|
+
VbrQuality?: AacVbrQuality;
|
|
326
326
|
}
|
|
327
327
|
/**
|
|
328
328
|
* @public
|
|
@@ -438,12 +438,12 @@ export interface Ac3Settings {
|
|
|
438
438
|
* @public
|
|
439
439
|
* Specify the bitstream mode for the AC-3 stream that the encoder emits. For more information about the AC3 bitstream mode, see ATSC A/52-2012 (Annex E).
|
|
440
440
|
*/
|
|
441
|
-
BitstreamMode?: Ac3BitstreamMode
|
|
441
|
+
BitstreamMode?: Ac3BitstreamMode;
|
|
442
442
|
/**
|
|
443
443
|
* @public
|
|
444
444
|
* Dolby Digital coding mode. Determines number of channels.
|
|
445
445
|
*/
|
|
446
|
-
CodingMode?: Ac3CodingMode
|
|
446
|
+
CodingMode?: Ac3CodingMode;
|
|
447
447
|
/**
|
|
448
448
|
* @public
|
|
449
449
|
* Sets the dialnorm for the output. If blank and input audio is Dolby Digital, dialnorm will be passed through.
|
|
@@ -453,27 +453,27 @@ export interface Ac3Settings {
|
|
|
453
453
|
* @public
|
|
454
454
|
* Choose the Dolby Digital dynamic range control (DRC) profile that MediaConvert uses when encoding the metadata in the Dolby Digital stream for the line operating mode. Related setting: When you use this setting, MediaConvert ignores any value you provide for Dynamic range compression profile. For information about the Dolby Digital DRC operating modes and profiles, see the Dynamic Range Control chapter of the Dolby Metadata Guide at https://developer.dolby.com/globalassets/professional/documents/dolby-metadata-guide.pdf.
|
|
455
455
|
*/
|
|
456
|
-
DynamicRangeCompressionLine?: Ac3DynamicRangeCompressionLine
|
|
456
|
+
DynamicRangeCompressionLine?: Ac3DynamicRangeCompressionLine;
|
|
457
457
|
/**
|
|
458
458
|
* @public
|
|
459
459
|
* When you want to add Dolby dynamic range compression (DRC) signaling to your output stream, we recommend that you use the mode-specific settings instead of Dynamic range compression profile. The mode-specific settings are Dynamic range compression profile, line mode and Dynamic range compression profile, RF mode. Note that when you specify values for all three settings, MediaConvert ignores the value of this setting in favor of the mode-specific settings. If you do use this setting instead of the mode-specific settings, choose None to leave out DRC signaling. Keep the default Film standard to set the profile to Dolby's film standard profile for all operating modes.
|
|
460
460
|
*/
|
|
461
|
-
DynamicRangeCompressionProfile?: Ac3DynamicRangeCompressionProfile
|
|
461
|
+
DynamicRangeCompressionProfile?: Ac3DynamicRangeCompressionProfile;
|
|
462
462
|
/**
|
|
463
463
|
* @public
|
|
464
464
|
* Choose the Dolby Digital dynamic range control (DRC) profile that MediaConvert uses when encoding the metadata in the Dolby Digital stream for the RF operating mode. Related setting: When you use this setting, MediaConvert ignores any value you provide for Dynamic range compression profile. For information about the Dolby Digital DRC operating modes and profiles, see the Dynamic Range Control chapter of the Dolby Metadata Guide at https://developer.dolby.com/globalassets/professional/documents/dolby-metadata-guide.pdf.
|
|
465
465
|
*/
|
|
466
|
-
DynamicRangeCompressionRf?: Ac3DynamicRangeCompressionRf
|
|
466
|
+
DynamicRangeCompressionRf?: Ac3DynamicRangeCompressionRf;
|
|
467
467
|
/**
|
|
468
468
|
* @public
|
|
469
469
|
* Applies a 120Hz lowpass filter to the LFE channel prior to encoding. Only valid with 3_2_LFE coding mode.
|
|
470
470
|
*/
|
|
471
|
-
LfeFilter?: Ac3LfeFilter
|
|
471
|
+
LfeFilter?: Ac3LfeFilter;
|
|
472
472
|
/**
|
|
473
473
|
* @public
|
|
474
474
|
* When set to FOLLOW_INPUT, encoder metadata will be sourced from the DD, DD+, or DolbyE decoder that supplied this audio data. If audio was not supplied from one of these streams, then the static metadata settings will be used.
|
|
475
475
|
*/
|
|
476
|
-
MetadataControl?: Ac3MetadataControl
|
|
476
|
+
MetadataControl?: Ac3MetadataControl;
|
|
477
477
|
/**
|
|
478
478
|
* @public
|
|
479
479
|
* This value is always 48000. It represents the sample rate in Hz.
|
|
@@ -672,37 +672,37 @@ export interface Eac3AtmosSettings {
|
|
|
672
672
|
* @public
|
|
673
673
|
* Specify the bitstream mode for the E-AC-3 stream that the encoder emits. For more information about the EAC3 bitstream mode, see ATSC A/52-2012 (Annex E).
|
|
674
674
|
*/
|
|
675
|
-
BitstreamMode?: Eac3AtmosBitstreamMode
|
|
675
|
+
BitstreamMode?: Eac3AtmosBitstreamMode;
|
|
676
676
|
/**
|
|
677
677
|
* @public
|
|
678
678
|
* The coding mode for Dolby Digital Plus JOC (Atmos).
|
|
679
679
|
*/
|
|
680
|
-
CodingMode?: Eac3AtmosCodingMode
|
|
680
|
+
CodingMode?: Eac3AtmosCodingMode;
|
|
681
681
|
/**
|
|
682
682
|
* @public
|
|
683
683
|
* Enable Dolby Dialogue Intelligence to adjust loudness based on dialogue analysis.
|
|
684
684
|
*/
|
|
685
|
-
DialogueIntelligence?: Eac3AtmosDialogueIntelligence
|
|
685
|
+
DialogueIntelligence?: Eac3AtmosDialogueIntelligence;
|
|
686
686
|
/**
|
|
687
687
|
* @public
|
|
688
688
|
* Specify whether MediaConvert should use any downmix metadata from your input file. Keep the default value, Custom to provide downmix values in your job settings. Choose Follow source to use the metadata from your input. Related settings--Use these settings to specify your downmix values: Left only/Right only surround, Left total/Right total surround, Left total/Right total center, Left only/Right only center, and Stereo downmix. When you keep Custom for Downmix control and you don't specify values for the related settings, MediaConvert uses default values for those settings.
|
|
689
689
|
*/
|
|
690
|
-
DownmixControl?: Eac3AtmosDownmixControl
|
|
690
|
+
DownmixControl?: Eac3AtmosDownmixControl;
|
|
691
691
|
/**
|
|
692
692
|
* @public
|
|
693
693
|
* Choose the Dolby dynamic range control (DRC) profile that MediaConvert uses when encoding the metadata in the Dolby stream for the line operating mode. Default value: Film light Related setting: To have MediaConvert use the value you specify here, keep the default value, Custom for the setting Dynamic range control. Otherwise, MediaConvert ignores Dynamic range compression line. For information about the Dolby DRC operating modes and profiles, see the Dynamic Range Control chapter of the Dolby Metadata Guide at https://developer.dolby.com/globalassets/professional/documents/dolby-metadata-guide.pdf.
|
|
694
694
|
*/
|
|
695
|
-
DynamicRangeCompressionLine?: Eac3AtmosDynamicRangeCompressionLine
|
|
695
|
+
DynamicRangeCompressionLine?: Eac3AtmosDynamicRangeCompressionLine;
|
|
696
696
|
/**
|
|
697
697
|
* @public
|
|
698
698
|
* Choose the Dolby dynamic range control (DRC) profile that MediaConvert uses when encoding the metadata in the Dolby stream for the RF operating mode. Default value: Film light Related setting: To have MediaConvert use the value you specify here, keep the default value, Custom for the setting Dynamic range control. Otherwise, MediaConvert ignores Dynamic range compression RF. For information about the Dolby DRC operating modes and profiles, see the Dynamic Range Control chapter of the Dolby Metadata Guide at https://developer.dolby.com/globalassets/professional/documents/dolby-metadata-guide.pdf.
|
|
699
699
|
*/
|
|
700
|
-
DynamicRangeCompressionRf?: Eac3AtmosDynamicRangeCompressionRf
|
|
700
|
+
DynamicRangeCompressionRf?: Eac3AtmosDynamicRangeCompressionRf;
|
|
701
701
|
/**
|
|
702
702
|
* @public
|
|
703
703
|
* Specify whether MediaConvert should use any dynamic range control metadata from your input file. Keep the default value, Custom, to provide dynamic range control values in your job settings. Choose Follow source to use the metadata from your input. Related settings--Use these settings to specify your dynamic range control values: Dynamic range compression line and Dynamic range compression RF. When you keep the value Custom for Dynamic range control and you don't specify values for the related settings, MediaConvert uses default values for those settings.
|
|
704
704
|
*/
|
|
705
|
-
DynamicRangeControl?: Eac3AtmosDynamicRangeControl
|
|
705
|
+
DynamicRangeControl?: Eac3AtmosDynamicRangeControl;
|
|
706
706
|
/**
|
|
707
707
|
* @public
|
|
708
708
|
* Specify a value for the following Dolby Atmos setting: Left only/Right only center mix (Lo/Ro center). MediaConvert uses this value for downmixing. Default value: -3 dB. Valid values: 3.0, 1.5, 0.0, -1.5, -3.0, -4.5, and -6.0. Related setting: How the service uses this value depends on the value that you choose for Stereo downmix. Related setting: To have MediaConvert use this value, keep the default value, Custom for the setting Downmix control. Otherwise, MediaConvert ignores Left only/Right only center.
|
|
@@ -727,7 +727,7 @@ export interface Eac3AtmosSettings {
|
|
|
727
727
|
* @public
|
|
728
728
|
* Choose how the service meters the loudness of your audio.
|
|
729
729
|
*/
|
|
730
|
-
MeteringMode?: Eac3AtmosMeteringMode
|
|
730
|
+
MeteringMode?: Eac3AtmosMeteringMode;
|
|
731
731
|
/**
|
|
732
732
|
* @public
|
|
733
733
|
* This value is always 48000. It represents the sample rate in Hz.
|
|
@@ -742,12 +742,12 @@ export interface Eac3AtmosSettings {
|
|
|
742
742
|
* @public
|
|
743
743
|
* Choose how the service does stereo downmixing. Default value: Not indicated Related setting: To have MediaConvert use this value, keep the default value, Custom for the setting Downmix control. Otherwise, MediaConvert ignores Stereo downmix.
|
|
744
744
|
*/
|
|
745
|
-
StereoDownmix?: Eac3AtmosStereoDownmix
|
|
745
|
+
StereoDownmix?: Eac3AtmosStereoDownmix;
|
|
746
746
|
/**
|
|
747
747
|
* @public
|
|
748
748
|
* Specify whether your input audio has an additional center rear surround channel matrix encoded into your left and right surround channels.
|
|
749
749
|
*/
|
|
750
|
-
SurroundExMode?: Eac3AtmosSurroundExMode
|
|
750
|
+
SurroundExMode?: Eac3AtmosSurroundExMode;
|
|
751
751
|
}
|
|
752
752
|
/**
|
|
753
753
|
* @public
|
|
@@ -942,7 +942,7 @@ export interface Eac3Settings {
|
|
|
942
942
|
* @public
|
|
943
943
|
* If set to ATTENUATE_3_DB, applies a 3 dB attenuation to the surround channels. Only used for 3/2 coding mode.
|
|
944
944
|
*/
|
|
945
|
-
AttenuationControl?: Eac3AttenuationControl
|
|
945
|
+
AttenuationControl?: Eac3AttenuationControl;
|
|
946
946
|
/**
|
|
947
947
|
* @public
|
|
948
948
|
* Specify the average bitrate in bits per second. The bitrate that you specify must be a multiple of 8000 within the allowed minimum and maximum values. Leave blank to use the default bitrate for the coding mode you select according ETSI TS 102 366. Valid bitrates for coding mode 1/0: Default: 96000. Minimum: 32000. Maximum: 3024000. Valid bitrates for coding mode 2/0: Default: 192000. Minimum: 96000. Maximum: 3024000. Valid bitrates for coding mode 3/2: Default: 384000. Minimum: 192000. Maximum: 3024000.
|
|
@@ -952,17 +952,17 @@ export interface Eac3Settings {
|
|
|
952
952
|
* @public
|
|
953
953
|
* Specify the bitstream mode for the E-AC-3 stream that the encoder emits. For more information about the EAC3 bitstream mode, see ATSC A/52-2012 (Annex E).
|
|
954
954
|
*/
|
|
955
|
-
BitstreamMode?: Eac3BitstreamMode
|
|
955
|
+
BitstreamMode?: Eac3BitstreamMode;
|
|
956
956
|
/**
|
|
957
957
|
* @public
|
|
958
958
|
* Dolby Digital Plus coding mode. Determines number of channels.
|
|
959
959
|
*/
|
|
960
|
-
CodingMode?: Eac3CodingMode
|
|
960
|
+
CodingMode?: Eac3CodingMode;
|
|
961
961
|
/**
|
|
962
962
|
* @public
|
|
963
963
|
* Activates a DC highpass filter for all input channels.
|
|
964
964
|
*/
|
|
965
|
-
DcFilter?: Eac3DcFilter
|
|
965
|
+
DcFilter?: Eac3DcFilter;
|
|
966
966
|
/**
|
|
967
967
|
* @public
|
|
968
968
|
* Sets the dialnorm for the output. If blank and input audio is Dolby Digital Plus, dialnorm will be passed through.
|
|
@@ -972,22 +972,22 @@ export interface Eac3Settings {
|
|
|
972
972
|
* @public
|
|
973
973
|
* Choose the Dolby Digital dynamic range control (DRC) profile that MediaConvert uses when encoding the metadata in the Dolby Digital stream for the line operating mode. Related setting: When you use this setting, MediaConvert ignores any value you provide for Dynamic range compression profile. For information about the Dolby Digital DRC operating modes and profiles, see the Dynamic Range Control chapter of the Dolby Metadata Guide at https://developer.dolby.com/globalassets/professional/documents/dolby-metadata-guide.pdf.
|
|
974
974
|
*/
|
|
975
|
-
DynamicRangeCompressionLine?: Eac3DynamicRangeCompressionLine
|
|
975
|
+
DynamicRangeCompressionLine?: Eac3DynamicRangeCompressionLine;
|
|
976
976
|
/**
|
|
977
977
|
* @public
|
|
978
978
|
* Choose the Dolby Digital dynamic range control (DRC) profile that MediaConvert uses when encoding the metadata in the Dolby Digital stream for the RF operating mode. Related setting: When you use this setting, MediaConvert ignores any value you provide for Dynamic range compression profile. For information about the Dolby Digital DRC operating modes and profiles, see the Dynamic Range Control chapter of the Dolby Metadata Guide at https://developer.dolby.com/globalassets/professional/documents/dolby-metadata-guide.pdf.
|
|
979
979
|
*/
|
|
980
|
-
DynamicRangeCompressionRf?: Eac3DynamicRangeCompressionRf
|
|
980
|
+
DynamicRangeCompressionRf?: Eac3DynamicRangeCompressionRf;
|
|
981
981
|
/**
|
|
982
982
|
* @public
|
|
983
983
|
* When encoding 3/2 audio, controls whether the LFE channel is enabled
|
|
984
984
|
*/
|
|
985
|
-
LfeControl?: Eac3LfeControl
|
|
985
|
+
LfeControl?: Eac3LfeControl;
|
|
986
986
|
/**
|
|
987
987
|
* @public
|
|
988
988
|
* Applies a 120Hz lowpass filter to the LFE channel prior to encoding. Only valid with 3_2_LFE coding mode.
|
|
989
989
|
*/
|
|
990
|
-
LfeFilter?: Eac3LfeFilter
|
|
990
|
+
LfeFilter?: Eac3LfeFilter;
|
|
991
991
|
/**
|
|
992
992
|
* @public
|
|
993
993
|
* Specify a value for the following Dolby Digital Plus setting: Left only/Right only center mix. MediaConvert uses this value for downmixing. How the service uses this value depends on the value that you choose for Stereo downmix. Valid values: 3.0, 1.5, 0.0, -1.5, -3.0, -4.5, -6.0, and -60. The value -60 mutes the channel. This setting applies only if you keep the default value of 3/2 - L, R, C, Ls, Rs for the setting Coding mode. If you choose a different value for Coding mode, the service ignores Left only/Right only center.
|
|
@@ -1012,17 +1012,17 @@ export interface Eac3Settings {
|
|
|
1012
1012
|
* @public
|
|
1013
1013
|
* When set to FOLLOW_INPUT, encoder metadata will be sourced from the DD, DD+, or DolbyE decoder that supplied this audio data. If audio was not supplied from one of these streams, then the static metadata settings will be used.
|
|
1014
1014
|
*/
|
|
1015
|
-
MetadataControl?: Eac3MetadataControl
|
|
1015
|
+
MetadataControl?: Eac3MetadataControl;
|
|
1016
1016
|
/**
|
|
1017
1017
|
* @public
|
|
1018
1018
|
* When set to WHEN_POSSIBLE, input DD+ audio will be passed through if it is present on the input. this detection is dynamic over the life of the transcode. Inputs that alternate between DD+ and non-DD+ content will have a consistent DD+ output as the system alternates between passthrough and encoding.
|
|
1019
1019
|
*/
|
|
1020
|
-
PassthroughControl?: Eac3PassthroughControl
|
|
1020
|
+
PassthroughControl?: Eac3PassthroughControl;
|
|
1021
1021
|
/**
|
|
1022
1022
|
* @public
|
|
1023
1023
|
* Controls the amount of phase-shift applied to the surround channels. Only used for 3/2 coding mode.
|
|
1024
1024
|
*/
|
|
1025
|
-
PhaseControl?: Eac3PhaseControl
|
|
1025
|
+
PhaseControl?: Eac3PhaseControl;
|
|
1026
1026
|
/**
|
|
1027
1027
|
* @public
|
|
1028
1028
|
* This value is always 48000. It represents the sample rate in Hz.
|
|
@@ -1032,17 +1032,17 @@ export interface Eac3Settings {
|
|
|
1032
1032
|
* @public
|
|
1033
1033
|
* Choose how the service does stereo downmixing. This setting only applies if you keep the default value of 3/2 - L, R, C, Ls, Rs for the setting Coding mode. If you choose a different value for Coding mode, the service ignores Stereo downmix.
|
|
1034
1034
|
*/
|
|
1035
|
-
StereoDownmix?: Eac3StereoDownmix
|
|
1035
|
+
StereoDownmix?: Eac3StereoDownmix;
|
|
1036
1036
|
/**
|
|
1037
1037
|
* @public
|
|
1038
1038
|
* When encoding 3/2 audio, sets whether an extra center back surround channel is matrix encoded into the left and right surround channels.
|
|
1039
1039
|
*/
|
|
1040
|
-
SurroundExMode?: Eac3SurroundExMode
|
|
1040
|
+
SurroundExMode?: Eac3SurroundExMode;
|
|
1041
1041
|
/**
|
|
1042
1042
|
* @public
|
|
1043
1043
|
* When encoding 2/0 audio, sets whether Dolby Surround is matrix encoded into the two channels.
|
|
1044
1044
|
*/
|
|
1045
|
-
SurroundMode?: Eac3SurroundMode
|
|
1045
|
+
SurroundMode?: Eac3SurroundMode;
|
|
1046
1046
|
}
|
|
1047
1047
|
/**
|
|
1048
1048
|
* @public
|
|
@@ -1117,7 +1117,7 @@ export interface Mp3Settings {
|
|
|
1117
1117
|
* @public
|
|
1118
1118
|
* Specify whether the service encodes this MP3 audio output with a constant bitrate (CBR) or a variable bitrate (VBR).
|
|
1119
1119
|
*/
|
|
1120
|
-
RateControlMode?: Mp3RateControlMode
|
|
1120
|
+
RateControlMode?: Mp3RateControlMode;
|
|
1121
1121
|
/**
|
|
1122
1122
|
* @public
|
|
1123
1123
|
* Sample rate in hz.
|
|
@@ -1202,7 +1202,7 @@ export interface WavSettings {
|
|
|
1202
1202
|
* @public
|
|
1203
1203
|
* The service defaults to using RIFF for WAV outputs. If your output audio is likely to exceed 4 GB in file size, or if you otherwise need the extended support of the RF64 format, set your output WAV file format to RF64.
|
|
1204
1204
|
*/
|
|
1205
|
-
Format?: WavFormat
|
|
1205
|
+
Format?: WavFormat;
|
|
1206
1206
|
/**
|
|
1207
1207
|
* @public
|
|
1208
1208
|
* Sample rate in Hz.
|
|
@@ -1233,7 +1233,7 @@ export interface AudioCodecSettings {
|
|
|
1233
1233
|
* @public
|
|
1234
1234
|
* Choose the audio codec for this output. Note that the option Dolby Digital passthrough applies only to Dolby Digital and Dolby Digital Plus audio inputs. Make sure that you choose a codec that's supported with your output container: https://docs.aws.amazon.com/mediaconvert/latest/ug/reference-codecs-containers.html#reference-codecs-containers-output-audio For audio-only outputs, make sure that both your input audio codec and your output audio codec are supported for audio-only workflows. For more information, see: https://docs.aws.amazon.com/mediaconvert/latest/ug/reference-codecs-containers-input.html#reference-codecs-containers-input-audio-only and https://docs.aws.amazon.com/mediaconvert/latest/ug/reference-codecs-containers.html#audio-only-output
|
|
1235
1235
|
*/
|
|
1236
|
-
Codec?: AudioCodec
|
|
1236
|
+
Codec?: AudioCodec;
|
|
1237
1237
|
/**
|
|
1238
1238
|
* @public
|
|
1239
1239
|
* Required when you set Codec to the value EAC3_ATMOS.
|
|
@@ -1566,7 +1566,7 @@ export interface AudioDescription {
|
|
|
1566
1566
|
* @public
|
|
1567
1567
|
* When set to FOLLOW_INPUT, if the input contains an ISO 639 audio_type, then that value is passed through to the output. If the input contains no ISO 639 audio_type, the value in Audio Type is included in the output. Otherwise the value in Audio Type is included in the output. Note that this field and audioType are both ignored if audioDescriptionBroadcasterMix is set to BROADCASTER_MIXED_AD.
|
|
1568
1568
|
*/
|
|
1569
|
-
AudioTypeControl?: AudioTypeControl
|
|
1569
|
+
AudioTypeControl?: AudioTypeControl;
|
|
1570
1570
|
/**
|
|
1571
1571
|
* @public
|
|
1572
1572
|
* Settings related to audio encoding. The settings in this group vary depending on the value that you choose for your audio codec.
|
|
@@ -1581,12 +1581,12 @@ export interface AudioDescription {
|
|
|
1581
1581
|
* @public
|
|
1582
1582
|
* Indicates the language of the audio output track. The ISO 639 language specified in the 'Language Code' drop down will be used when 'Follow Input Language Code' is not selected or when 'Follow Input Language Code' is selected but there is no ISO 639 language code specified by the input.
|
|
1583
1583
|
*/
|
|
1584
|
-
LanguageCode?: LanguageCode
|
|
1584
|
+
LanguageCode?: LanguageCode;
|
|
1585
1585
|
/**
|
|
1586
1586
|
* @public
|
|
1587
1587
|
* Specify which source for language code takes precedence for this audio track. When you choose Follow input, the service uses the language code from the input track if it's present. If there's no languge code on the input track, the service uses the code that you specify in the setting Language code. When you choose Use configured, the service uses the language code that you specify.
|
|
1588
1588
|
*/
|
|
1589
|
-
LanguageCodeControl?: AudioLanguageCodeControl
|
|
1589
|
+
LanguageCodeControl?: AudioLanguageCodeControl;
|
|
1590
1590
|
/**
|
|
1591
1591
|
* @public
|
|
1592
1592
|
* Advanced audio remixing settings.
|
|
@@ -1689,7 +1689,7 @@ export interface AutomatedAbrRule {
|
|
|
1689
1689
|
* @public
|
|
1690
1690
|
* Use Min top rendition size to specify a minimum size for the highest resolution in your ABR stack. * The highest resolution in your ABR stack will be equal to or greater than the value that you enter. For example: If you specify 1280x720 the highest resolution in your ABR stack will be equal to or greater than 1280x720. * If you specify a value for Max resolution, the value that you specify for Min top rendition size must be less than, or equal to, Max resolution. Use Min bottom rendition size to specify a minimum size for the lowest resolution in your ABR stack. * The lowest resolution in your ABR stack will be equal to or greater than the value that you enter. For example: If you specify 640x360 the lowest resolution in your ABR stack will be equal to or greater than to 640x360. * If you specify a Min top rendition size rule, the value that you specify for Min bottom rendition size must be less than, or equal to, Min top rendition size. Use Force include renditions to specify one or more resolutions to include your ABR stack. * (Recommended) To optimize automated ABR, specify as few resolutions as possible. * (Required) The number of resolutions that you specify must be equal to, or less than, the Max renditions setting. * If you specify a Min top rendition size rule, specify at least one resolution that is equal to, or greater than, Min top rendition size. * If you specify a Min bottom rendition size rule, only specify resolutions that are equal to, or greater than, Min bottom rendition size. * If you specify a Force include renditions rule, do not specify a separate rule for Allowed renditions. * Note: The ABR stack may include other resolutions that you do not specify here, depending on the Max renditions setting. Use Allowed renditions to specify a list of possible resolutions in your ABR stack. * (Required) The number of resolutions that you specify must be equal to, or greater than, the Max renditions setting. * MediaConvert will create an ABR stack exclusively from the list of resolutions that you specify. * Some resolutions in the Allowed renditions list may not be included, however you can force a resolution to be included by setting Required to ENABLED. * You must specify at least one resolution that is greater than or equal to any resolutions that you specify in Min top rendition size or Min bottom rendition size. * If you specify Allowed renditions, you must not specify a separate rule for Force include renditions.
|
|
1691
1691
|
*/
|
|
1692
|
-
Type?: RuleType
|
|
1692
|
+
Type?: RuleType;
|
|
1693
1693
|
}
|
|
1694
1694
|
/**
|
|
1695
1695
|
* @public
|
|
@@ -1841,17 +1841,17 @@ export interface BurninDestinationSettings {
|
|
|
1841
1841
|
* @public
|
|
1842
1842
|
* Specify the alignment of your captions. If no explicit x_position is provided, setting alignment to centered will placethe captions at the bottom center of the output. Similarly, setting a left alignment willalign captions to the bottom left of the output. If x and y positions are given in conjunction with the alignment parameter, the font will be justified (either left or centered) relative to those coordinates.
|
|
1843
1843
|
*/
|
|
1844
|
-
Alignment?: BurninSubtitleAlignment
|
|
1844
|
+
Alignment?: BurninSubtitleAlignment;
|
|
1845
1845
|
/**
|
|
1846
1846
|
* @public
|
|
1847
1847
|
* Ignore this setting unless Style passthrough is set to Enabled and Font color set to Black, Yellow, Red, Green, Blue, or Hex. Use Apply font color for additional font color controls. When you choose White text only, or leave blank, your font color setting only applies to white text in your input captions. For example, if your font color setting is Yellow, and your input captions have red and white text, your output captions will have red and yellow text. When you choose ALL_TEXT, your font color setting applies to all of your output captions text.
|
|
1848
1848
|
*/
|
|
1849
|
-
ApplyFontColor?: BurninSubtitleApplyFontColor
|
|
1849
|
+
ApplyFontColor?: BurninSubtitleApplyFontColor;
|
|
1850
1850
|
/**
|
|
1851
1851
|
* @public
|
|
1852
1852
|
* Specify the color of the rectangle behind the captions. Leave background color blank and set Style passthrough to enabled to use the background color data from your input captions, if present.
|
|
1853
1853
|
*/
|
|
1854
|
-
BackgroundColor?: BurninSubtitleBackgroundColor
|
|
1854
|
+
BackgroundColor?: BurninSubtitleBackgroundColor;
|
|
1855
1855
|
/**
|
|
1856
1856
|
* @public
|
|
1857
1857
|
* Specify the opacity of the background rectangle. Enter a value from 0 to 255, where 0 is transparent and 255 is opaque. If Style passthrough is set to enabled, leave blank to pass through the background style information in your input captions to your output captions. If Style passthrough is set to disabled, leave blank to use a value of 0 and remove all backgrounds from your output captions.
|
|
@@ -1861,12 +1861,12 @@ export interface BurninDestinationSettings {
|
|
|
1861
1861
|
* @public
|
|
1862
1862
|
* Specify the font that you want the service to use for your burn in captions when your input captions specify a font that MediaConvert doesn't support. When you set Fallback font to best match, or leave blank, MediaConvert uses a supported font that most closely matches the font that your input captions specify. When there are multiple unsupported fonts in your input captions, MediaConvert matches each font with the supported font that matches best. When you explicitly choose a replacement font, MediaConvert uses that font to replace all unsupported fonts from your input.
|
|
1863
1863
|
*/
|
|
1864
|
-
FallbackFont?: BurninSubtitleFallbackFont
|
|
1864
|
+
FallbackFont?: BurninSubtitleFallbackFont;
|
|
1865
1865
|
/**
|
|
1866
1866
|
* @public
|
|
1867
1867
|
* Specify the color of the burned-in captions text. Leave Font color blank and set Style passthrough to enabled to use the font color data from your input captions, if present.
|
|
1868
1868
|
*/
|
|
1869
|
-
FontColor?: BurninSubtitleFontColor
|
|
1869
|
+
FontColor?: BurninSubtitleFontColor;
|
|
1870
1870
|
/**
|
|
1871
1871
|
* @public
|
|
1872
1872
|
* Specify the opacity of the burned-in captions. 255 is opaque; 0 is transparent.
|
|
@@ -1881,7 +1881,7 @@ export interface BurninDestinationSettings {
|
|
|
1881
1881
|
* @public
|
|
1882
1882
|
* Set Font script to Automatically determined, or leave blank, to automatically determine the font script in your input captions. Otherwise, set to Simplified Chinese (HANS) or Traditional Chinese (HANT) if your input font script uses Simplified or Traditional Chinese.
|
|
1883
1883
|
*/
|
|
1884
|
-
FontScript?: FontScript
|
|
1884
|
+
FontScript?: FontScript;
|
|
1885
1885
|
/**
|
|
1886
1886
|
* @public
|
|
1887
1887
|
* Specify the Font size in pixels. Must be a positive integer. Set to 0, or leave blank, for automatic font size.
|
|
@@ -1896,7 +1896,7 @@ export interface BurninDestinationSettings {
|
|
|
1896
1896
|
* @public
|
|
1897
1897
|
* Specify font outline color. Leave Outline color blank and set Style passthrough to enabled to use the font outline color data from your input captions, if present.
|
|
1898
1898
|
*/
|
|
1899
|
-
OutlineColor?: BurninSubtitleOutlineColor
|
|
1899
|
+
OutlineColor?: BurninSubtitleOutlineColor;
|
|
1900
1900
|
/**
|
|
1901
1901
|
* @public
|
|
1902
1902
|
* Specify the Outline size of the caption text, in pixels. Leave Outline size blank and set Style passthrough to enabled to use the outline size data from your input captions, if present.
|
|
@@ -1906,7 +1906,7 @@ export interface BurninDestinationSettings {
|
|
|
1906
1906
|
* @public
|
|
1907
1907
|
* Specify the color of the shadow cast by the captions. Leave Shadow color blank and set Style passthrough to enabled to use the shadow color data from your input captions, if present.
|
|
1908
1908
|
*/
|
|
1909
|
-
ShadowColor?: BurninSubtitleShadowColor
|
|
1909
|
+
ShadowColor?: BurninSubtitleShadowColor;
|
|
1910
1910
|
/**
|
|
1911
1911
|
* @public
|
|
1912
1912
|
* Specify the opacity of the shadow. Enter a value from 0 to 255, where 0 is transparent and 255 is opaque. If Style passthrough is set to Enabled, leave Shadow opacity blank to pass through the shadow style information in your input captions to your output captions. If Style passthrough is set to disabled, leave blank to use a value of 0 and remove all shadows from your output captions.
|
|
@@ -1926,12 +1926,12 @@ export interface BurninDestinationSettings {
|
|
|
1926
1926
|
* @public
|
|
1927
1927
|
* Set Style passthrough to ENABLED to use the available style, color, and position information from your input captions. MediaConvert uses default settings for any missing style and position information in your input captions. Set Style passthrough to DISABLED, or leave blank, to ignore the style and position information from your input captions and use default settings: white text with black outlining, bottom-center positioning, and automatic sizing. Whether you set Style passthrough to enabled or not, you can also choose to manually override any of the individual style and position settings.
|
|
1928
1928
|
*/
|
|
1929
|
-
StylePassthrough?: BurnInSubtitleStylePassthrough
|
|
1929
|
+
StylePassthrough?: BurnInSubtitleStylePassthrough;
|
|
1930
1930
|
/**
|
|
1931
1931
|
* @public
|
|
1932
1932
|
* Specify whether the text spacing in your captions is set by the captions grid, or varies depending on letter width. Choose fixed grid to conform to the spacing specified in the captions file more accurately. Choose proportional to make the text easier to read for closed captions.
|
|
1933
1933
|
*/
|
|
1934
|
-
TeletextSpacing?: BurninSubtitleTeletextSpacing
|
|
1934
|
+
TeletextSpacing?: BurninSubtitleTeletextSpacing;
|
|
1935
1935
|
/**
|
|
1936
1936
|
* @public
|
|
1937
1937
|
* Specify the horizontal position of the captions, relative to the left side of the output in pixels. A value of 10 would result in the captions starting 10 pixels from the left of the output. If no explicit x_position is provided, the horizontal caption position will be determined by the alignment parameter.
|
|
@@ -2127,17 +2127,17 @@ export interface DvbSubDestinationSettings {
|
|
|
2127
2127
|
* @public
|
|
2128
2128
|
* Specify the alignment of your captions. If no explicit x_position is provided, setting alignment to centered will placethe captions at the bottom center of the output. Similarly, setting a left alignment willalign captions to the bottom left of the output. If x and y positions are given in conjunction with the alignment parameter, the font will be justified (either left or centered) relative to those coordinates. Within your job settings, all of your DVB-Sub settings must be identical.
|
|
2129
2129
|
*/
|
|
2130
|
-
Alignment?: DvbSubtitleAlignment
|
|
2130
|
+
Alignment?: DvbSubtitleAlignment;
|
|
2131
2131
|
/**
|
|
2132
2132
|
* @public
|
|
2133
2133
|
* Ignore this setting unless Style Passthrough is set to Enabled and Font color set to Black, Yellow, Red, Green, Blue, or Hex. Use Apply font color for additional font color controls. When you choose White text only, or leave blank, your font color setting only applies to white text in your input captions. For example, if your font color setting is Yellow, and your input captions have red and white text, your output captions will have red and yellow text. When you choose ALL_TEXT, your font color setting applies to all of your output captions text.
|
|
2134
2134
|
*/
|
|
2135
|
-
ApplyFontColor?: DvbSubtitleApplyFontColor
|
|
2135
|
+
ApplyFontColor?: DvbSubtitleApplyFontColor;
|
|
2136
2136
|
/**
|
|
2137
2137
|
* @public
|
|
2138
2138
|
* Specify the color of the rectangle behind the captions. Leave background color blank and set Style passthrough to enabled to use the background color data from your input captions, if present.
|
|
2139
2139
|
*/
|
|
2140
|
-
BackgroundColor?: DvbSubtitleBackgroundColor
|
|
2140
|
+
BackgroundColor?: DvbSubtitleBackgroundColor;
|
|
2141
2141
|
/**
|
|
2142
2142
|
* @public
|
|
2143
2143
|
* Specify the opacity of the background rectangle. Enter a value from 0 to 255, where 0 is transparent and 255 is opaque. If Style passthrough is set to enabled, leave blank to pass through the background style information in your input captions to your output captions. If Style passthrough is set to disabled, leave blank to use a value of 0 and remove all backgrounds from your output captions. Within your job settings, all of your DVB-Sub settings must be identical.
|
|
@@ -2147,7 +2147,7 @@ export interface DvbSubDestinationSettings {
|
|
|
2147
2147
|
* @public
|
|
2148
2148
|
* Specify how MediaConvert handles the display definition segment (DDS). To exclude the DDS from this set of captions: Keep the default, None. To include the DDS: Choose Specified. When you do, also specify the offset coordinates of the display window with DDS x-coordinate and DDS y-coordinate. To include the DDS, but not include display window data: Choose No display window. When you do, you can write position metadata to the page composition segment (PCS) with DDS x-coordinate and DDS y-coordinate. For video resolutions with a height of 576 pixels or less, MediaConvert doesn't include the DDS, regardless of the value you choose for DDS handling. All burn-in and DVB-Sub font settings must match.
|
|
2149
2149
|
*/
|
|
2150
|
-
DdsHandling?: DvbddsHandling
|
|
2150
|
+
DdsHandling?: DvbddsHandling;
|
|
2151
2151
|
/**
|
|
2152
2152
|
* @public
|
|
2153
2153
|
* Use this setting, along with DDS y-coordinate, to specify the upper left corner of the display definition segment (DDS) display window. With this setting, specify the distance, in pixels, between the left side of the frame and the left side of the DDS display window. Keep the default value, 0, to have MediaConvert automatically choose this offset. Related setting: When you use this setting, you must set DDS handling to a value other than None. MediaConvert uses these values to determine whether to write page position data to the DDS or to the page composition segment. All burn-in and DVB-Sub font settings must match.
|
|
@@ -2162,12 +2162,12 @@ export interface DvbSubDestinationSettings {
|
|
|
2162
2162
|
* @public
|
|
2163
2163
|
* Specify the font that you want the service to use for your burn in captions when your input captions specify a font that MediaConvert doesn't support. When you set Fallback font to best match, or leave blank, MediaConvert uses a supported font that most closely matches the font that your input captions specify. When there are multiple unsupported fonts in your input captions, MediaConvert matches each font with the supported font that matches best. When you explicitly choose a replacement font, MediaConvert uses that font to replace all unsupported fonts from your input.
|
|
2164
2164
|
*/
|
|
2165
|
-
FallbackFont?: DvbSubSubtitleFallbackFont
|
|
2165
|
+
FallbackFont?: DvbSubSubtitleFallbackFont;
|
|
2166
2166
|
/**
|
|
2167
2167
|
* @public
|
|
2168
2168
|
* Specify the color of the captions text. Leave Font color blank and set Style passthrough to enabled to use the font color data from your input captions, if present. Within your job settings, all of your DVB-Sub settings must be identical.
|
|
2169
2169
|
*/
|
|
2170
|
-
FontColor?: DvbSubtitleFontColor
|
|
2170
|
+
FontColor?: DvbSubtitleFontColor;
|
|
2171
2171
|
/**
|
|
2172
2172
|
* @public
|
|
2173
2173
|
* Specify the opacity of the burned-in captions. 255 is opaque; 0 is transparent.
|
|
@@ -2184,7 +2184,7 @@ export interface DvbSubDestinationSettings {
|
|
|
2184
2184
|
* @public
|
|
2185
2185
|
* Set Font script to Automatically determined, or leave blank, to automatically determine the font script in your input captions. Otherwise, set to Simplified Chinese (HANS) or Traditional Chinese (HANT) if your input font script uses Simplified or Traditional Chinese. Within your job settings, all of your DVB-Sub settings must be identical.
|
|
2186
2186
|
*/
|
|
2187
|
-
FontScript?: FontScript
|
|
2187
|
+
FontScript?: FontScript;
|
|
2188
2188
|
/**
|
|
2189
2189
|
* @public
|
|
2190
2190
|
* Specify the Font size in pixels. Must be a positive integer. Set to 0, or leave blank, for automatic font size. Within your job settings, all of your DVB-Sub settings must be identical.
|
|
@@ -2204,7 +2204,7 @@ export interface DvbSubDestinationSettings {
|
|
|
2204
2204
|
* @public
|
|
2205
2205
|
* Specify font outline color. Leave Outline color blank and set Style passthrough to enabled to use the font outline color data from your input captions, if present. Within your job settings, all of your DVB-Sub settings must be identical.
|
|
2206
2206
|
*/
|
|
2207
|
-
OutlineColor?: DvbSubtitleOutlineColor
|
|
2207
|
+
OutlineColor?: DvbSubtitleOutlineColor;
|
|
2208
2208
|
/**
|
|
2209
2209
|
* @public
|
|
2210
2210
|
* Specify the Outline size of the caption text, in pixels. Leave Outline size blank and set Style passthrough to enabled to use the outline size data from your input captions, if present. Within your job settings, all of your DVB-Sub settings must be identical.
|
|
@@ -2214,7 +2214,7 @@ export interface DvbSubDestinationSettings {
|
|
|
2214
2214
|
* @public
|
|
2215
2215
|
* Specify the color of the shadow cast by the captions. Leave Shadow color blank and set Style passthrough to enabled to use the shadow color data from your input captions, if present. Within your job settings, all of your DVB-Sub settings must be identical.
|
|
2216
2216
|
*/
|
|
2217
|
-
ShadowColor?: DvbSubtitleShadowColor
|
|
2217
|
+
ShadowColor?: DvbSubtitleShadowColor;
|
|
2218
2218
|
/**
|
|
2219
2219
|
* @public
|
|
2220
2220
|
* Specify the opacity of the shadow. Enter a value from 0 to 255, where 0 is transparent and 255 is opaque. If Style passthrough is set to Enabled, leave Shadow opacity blank to pass through the shadow style information in your input captions to your output captions. If Style passthrough is set to disabled, leave blank to use a value of 0 and remove all shadows from your output captions. Within your job settings, all of your DVB-Sub settings must be identical.
|
|
@@ -2234,17 +2234,17 @@ export interface DvbSubDestinationSettings {
|
|
|
2234
2234
|
* @public
|
|
2235
2235
|
* Set Style passthrough to ENABLED to use the available style, color, and position information from your input captions. MediaConvert uses default settings for any missing style and position information in your input captions. Set Style passthrough to DISABLED, or leave blank, to ignore the style and position information from your input captions and use default settings: white text with black outlining, bottom-center positioning, and automatic sizing. Whether you set Style passthrough to enabled or not, you can also choose to manually override any of the individual style and position settings.
|
|
2236
2236
|
*/
|
|
2237
|
-
StylePassthrough?: DvbSubtitleStylePassthrough
|
|
2237
|
+
StylePassthrough?: DvbSubtitleStylePassthrough;
|
|
2238
2238
|
/**
|
|
2239
2239
|
* @public
|
|
2240
2240
|
* Specify whether your DVB subtitles are standard or for hearing impaired. Choose hearing impaired if your subtitles include audio descriptions and dialogue. Choose standard if your subtitles include only dialogue.
|
|
2241
2241
|
*/
|
|
2242
|
-
SubtitlingType?: DvbSubtitlingType
|
|
2242
|
+
SubtitlingType?: DvbSubtitlingType;
|
|
2243
2243
|
/**
|
|
2244
2244
|
* @public
|
|
2245
2245
|
* Specify whether the Text spacing in your captions is set by the captions grid, or varies depending on letter width. Choose fixed grid to conform to the spacing specified in the captions file more accurately. Choose proportional to make the text easier to read for closed captions. Within your job settings, all of your DVB-Sub settings must be identical.
|
|
2246
2246
|
*/
|
|
2247
|
-
TeletextSpacing?: DvbSubtitleTeletextSpacing
|
|
2247
|
+
TeletextSpacing?: DvbSubtitleTeletextSpacing;
|
|
2248
2248
|
/**
|
|
2249
2249
|
* @public
|
|
2250
2250
|
* Specify the width, in pixels, of this set of DVB-Sub captions. The default value is 720 pixels. Related setting: When you use this setting, you must set DDS handling to a value other than None. All burn-in and DVB-Sub font settings must match.
|
|
@@ -2310,12 +2310,12 @@ export interface ImscDestinationSettings {
|
|
|
2310
2310
|
* @public
|
|
2311
2311
|
* If the IMSC captions track is intended to provide accessibility for people who are deaf or hard of hearing: Set Accessibility subtitles to Enabled. When you do, MediaConvert adds accessibility attributes to your output HLS or DASH manifest. For HLS manifests, MediaConvert adds the following accessibility attributes under EXT-X-MEDIA for this track: CHARACTERISTICS="public.accessibility.describes-spoken-dialog,public.accessibility.describes-music-and-sound" and AUTOSELECT="YES". For DASH manifests, MediaConvert adds the following in the adaptation set for this track: <Accessibility schemeIdUri="urn:mpeg:dash:role:2011" value="caption"/>. If the captions track is not intended to provide such accessibility: Keep the default value, Disabled. When you do, for DASH manifests, MediaConvert instead adds the following in the adaptation set for this track: <Role schemeIDUri="urn:mpeg:dash:role:2011" value="subtitle"/>.
|
|
2312
2312
|
*/
|
|
2313
|
-
Accessibility?: ImscAccessibilitySubs
|
|
2313
|
+
Accessibility?: ImscAccessibilitySubs;
|
|
2314
2314
|
/**
|
|
2315
2315
|
* @public
|
|
2316
2316
|
* Keep this setting enabled to have MediaConvert use the font style and position information from the captions source in the output. This option is available only when your input captions are IMSC, SMPTE-TT, or TTML. Disable this setting for simplified output captions.
|
|
2317
2317
|
*/
|
|
2318
|
-
StylePassthrough?: ImscStylePassthrough
|
|
2318
|
+
StylePassthrough?: ImscStylePassthrough;
|
|
2319
2319
|
}
|
|
2320
2320
|
/**
|
|
2321
2321
|
* @public
|
|
@@ -2341,7 +2341,7 @@ export interface SccDestinationSettings {
|
|
|
2341
2341
|
* @public
|
|
2342
2342
|
* Set Framerate to make sure that the captions and the video are synchronized in the output. Specify a frame rate that matches the frame rate of the associated video. If the video frame rate is 29.97, choose 29.97 dropframe only if the video has video_insertion=true and drop_frame_timecode=true; otherwise, choose 29.97 non-dropframe.
|
|
2343
2343
|
*/
|
|
2344
|
-
Framerate?: SccDestinationFramerate
|
|
2344
|
+
Framerate?: SccDestinationFramerate;
|
|
2345
2345
|
}
|
|
2346
2346
|
/**
|
|
2347
2347
|
* @public
|
|
@@ -2364,7 +2364,7 @@ export interface SrtDestinationSettings {
|
|
|
2364
2364
|
* @public
|
|
2365
2365
|
* Set Style passthrough to ENABLED to use the available style, color, and position information from your input captions. MediaConvert uses default settings for any missing style and position information in your input captions. Set Style passthrough to DISABLED, or leave blank, to ignore the style and position information from your input captions and use simplified output captions.
|
|
2366
2366
|
*/
|
|
2367
|
-
StylePassthrough?: SrtStylePassthrough
|
|
2367
|
+
StylePassthrough?: SrtStylePassthrough;
|
|
2368
2368
|
}
|
|
2369
2369
|
/**
|
|
2370
2370
|
* @public
|
|
@@ -2395,7 +2395,7 @@ export interface TeletextDestinationSettings {
|
|
|
2395
2395
|
* @public
|
|
2396
2396
|
* Specify the page types for this Teletext page. If you don't specify a value here, the service sets the page type to the default value Subtitle. If you pass through the entire set of Teletext data, don't use this field. When you pass through a set of Teletext pages, your output has the same page types as your input.
|
|
2397
2397
|
*/
|
|
2398
|
-
PageTypes?:
|
|
2398
|
+
PageTypes?: TeletextPageType[];
|
|
2399
2399
|
}
|
|
2400
2400
|
/**
|
|
2401
2401
|
* @public
|
|
@@ -2418,7 +2418,7 @@ export interface TtmlDestinationSettings {
|
|
|
2418
2418
|
* @public
|
|
2419
2419
|
* Pass through style and position information from a TTML-like input source (TTML, IMSC, SMPTE-TT) to the TTML output.
|
|
2420
2420
|
*/
|
|
2421
|
-
StylePassthrough?: TtmlStylePassthrough
|
|
2421
|
+
StylePassthrough?: TtmlStylePassthrough;
|
|
2422
2422
|
}
|
|
2423
2423
|
/**
|
|
2424
2424
|
* @public
|
|
@@ -2454,12 +2454,12 @@ export interface WebvttDestinationSettings {
|
|
|
2454
2454
|
* @public
|
|
2455
2455
|
* If the WebVTT captions track is intended to provide accessibility for people who are deaf or hard of hearing: Set Accessibility subtitles to Enabled. When you do, MediaConvert adds accessibility attributes to your output HLS or DASH manifest. For HLS manifests, MediaConvert adds the following accessibility attributes under EXT-X-MEDIA for this track: CHARACTERISTICS="public.accessibility.describes-spoken-dialog,public.accessibility.describes-music-and-sound" and AUTOSELECT="YES". For DASH manifests, MediaConvert adds the following in the adaptation set for this track: <Accessibility schemeIdUri="urn:mpeg:dash:role:2011" value="caption"/>. If the captions track is not intended to provide such accessibility: Keep the default value, Disabled. When you do, for DASH manifests, MediaConvert instead adds the following in the adaptation set for this track: <Role schemeIDUri="urn:mpeg:dash:role:2011" value="subtitle"/>.
|
|
2456
2456
|
*/
|
|
2457
|
-
Accessibility?: WebvttAccessibilitySubs
|
|
2457
|
+
Accessibility?: WebvttAccessibilitySubs;
|
|
2458
2458
|
/**
|
|
2459
2459
|
* @public
|
|
2460
2460
|
* To use the available style, color, and position information from your input captions: Set Style passthrough to Enabled. MediaConvert uses default settings when style and position information is missing from your input captions. To recreate the input captions exactly: Set Style passthrough to Strict. MediaConvert automatically applies timing adjustments, including adjustments for frame rate conversion, ad avails, and input clipping. Your input captions format must be WebVTT. To ignore the style and position information from your input captions and use simplified output captions: Set Style passthrough to Disabled, or leave blank.
|
|
2461
2461
|
*/
|
|
2462
|
-
StylePassthrough?: WebvttStylePassthrough
|
|
2462
|
+
StylePassthrough?: WebvttStylePassthrough;
|
|
2463
2463
|
}
|
|
2464
2464
|
/**
|
|
2465
2465
|
* @public
|
|
@@ -2475,7 +2475,7 @@ export interface CaptionDestinationSettings {
|
|
|
2475
2475
|
* @public
|
|
2476
2476
|
* Specify the format for this set of captions on this output. The default format is embedded without SCTE-20. Note that your choice of video output container constrains your choice of output captions format. For more information, see https://docs.aws.amazon.com/mediaconvert/latest/ug/captions-support-tables.html. If you are using SCTE-20 and you want to create an output that complies with the SCTE-43 spec, choose SCTE-20 plus embedded. To create a non-compliant output where the embedded captions come first, choose Embedded plus SCTE-20.
|
|
2477
2477
|
*/
|
|
2478
|
-
DestinationType?: CaptionDestinationType
|
|
2478
|
+
DestinationType?: CaptionDestinationType;
|
|
2479
2479
|
/**
|
|
2480
2480
|
* @public
|
|
2481
2481
|
* Settings related to DVB-Sub captions. Set up DVB-Sub captions in the same output as your video. For more information, see https://docs.aws.amazon.com/mediaconvert/latest/ug/dvb-sub-output-captions.html.
|
|
@@ -2541,7 +2541,7 @@ export interface CaptionDescription {
|
|
|
2541
2541
|
* @public
|
|
2542
2542
|
* Specify the language of this captions output track. For most captions output formats, the encoder puts this language information in the output captions metadata. If your output captions format is DVB-Sub or Burn in, the encoder uses this language information to choose the font language for rendering the captions text.
|
|
2543
2543
|
*/
|
|
2544
|
-
LanguageCode?: LanguageCode
|
|
2544
|
+
LanguageCode?: LanguageCode;
|
|
2545
2545
|
/**
|
|
2546
2546
|
* @public
|
|
2547
2547
|
* Specify a label for this set of output captions. For example, "English", "Director commentary", or "track_2". For streaming outputs, MediaConvert passes this information into destination manifests for display on the end-viewer's player device. For outputs in other output groups, the service ignores this setting.
|
|
@@ -2567,7 +2567,7 @@ export interface CaptionDescriptionPreset {
|
|
|
2567
2567
|
* @public
|
|
2568
2568
|
* Specify the language of this captions output track. For most captions output formats, the encoder puts this language information in the output captions metadata. If your output captions format is DVB-Sub or Burn in, the encoder uses this language information to choose the font language for rendering the captions text.
|
|
2569
2569
|
*/
|
|
2570
|
-
LanguageCode?: LanguageCode
|
|
2570
|
+
LanguageCode?: LanguageCode;
|
|
2571
2571
|
/**
|
|
2572
2572
|
* @public
|
|
2573
2573
|
* Specify a label for this set of output captions. For example, "English", "Director commentary", or "track_2". For streaming outputs, MediaConvert passes this information into destination manifests for display on the end-viewer's player device. For outputs in other output groups, the service ignores this setting.
|
|
@@ -2664,7 +2664,7 @@ export interface HlsCaptionLanguageMapping {
|
|
|
2664
2664
|
* @public
|
|
2665
2665
|
* Specify the language, using the ISO 639-2 three-letter code listed at https://www.loc.gov/standards/iso639-2/php/code_list.php.
|
|
2666
2666
|
*/
|
|
2667
|
-
LanguageCode?: LanguageCode
|
|
2667
|
+
LanguageCode?: LanguageCode;
|
|
2668
2668
|
/**
|
|
2669
2669
|
* @public
|
|
2670
2670
|
* Caption language description.
|
|
@@ -2754,12 +2754,12 @@ export interface AdvancedInputFilterSettings {
|
|
|
2754
2754
|
* @public
|
|
2755
2755
|
* Add texture and detail to areas of your input video content that were lost after applying the Advanced input filter. To adaptively add texture and reduce softness: Choose Enabled. To not add any texture: Keep the default value, Disabled. We recommend that you choose Disabled for input video content that doesn't have texture, including screen recordings, computer graphics, or cartoons.
|
|
2756
2756
|
*/
|
|
2757
|
-
AddTexture?: AdvancedInputFilterAddTexture
|
|
2757
|
+
AddTexture?: AdvancedInputFilterAddTexture;
|
|
2758
2758
|
/**
|
|
2759
2759
|
* @public
|
|
2760
2760
|
* Optionally specify the amount of sharpening to apply when you use the Advanced input filter. Sharpening adds contrast to the edges of your video content and can reduce softness. To apply no sharpening: Keep the default value, Off. To apply a minimal amount of sharpening choose Low, or for the maximum choose High.
|
|
2761
2761
|
*/
|
|
2762
|
-
Sharpening?: AdvancedInputFilterSharpen
|
|
2762
|
+
Sharpening?: AdvancedInputFilterSharpen;
|
|
2763
2763
|
}
|
|
2764
2764
|
/**
|
|
2765
2765
|
* @public
|
|
@@ -2812,7 +2812,7 @@ export interface HlsRenditionGroupSettings {
|
|
|
2812
2812
|
* @public
|
|
2813
2813
|
* Optional. Specify ISO 639-2 or ISO 639-3 code in the language property
|
|
2814
2814
|
*/
|
|
2815
|
-
RenditionLanguageCode?: LanguageCode
|
|
2815
|
+
RenditionLanguageCode?: LanguageCode;
|
|
2816
2816
|
/**
|
|
2817
2817
|
* @public
|
|
2818
2818
|
* Optional. Specify media name
|
|
@@ -2842,7 +2842,7 @@ export interface AudioSelector {
|
|
|
2842
2842
|
* @public
|
|
2843
2843
|
* Apply audio timing corrections to help synchronize audio and video in your output. To apply timing corrections, your input must meet the following requirements: * Container: MP4, or MOV, with an accurate time-to-sample (STTS) table. * Audio track: AAC. Choose from the following audio timing correction settings: * Disabled (Default): Apply no correction. * Auto: Recommended for most inputs. MediaConvert analyzes the audio timing in your input and determines which correction setting to use, if needed. * Track: Adjust the duration of each audio frame by a constant amount to align the audio track length with STTS duration. Track-level correction does not affect pitch, and is recommended for tonal audio content such as music. * Frame: Adjust the duration of each audio frame by a variable amount to align audio frames with STTS timestamps. No corrections are made to already-aligned frames. Frame-level correction may affect the pitch of corrected frames, and is recommended for atonal audio content such as speech or percussion.
|
|
2844
2844
|
*/
|
|
2845
|
-
AudioDurationCorrection?: AudioDurationCorrection
|
|
2845
|
+
AudioDurationCorrection?: AudioDurationCorrection;
|
|
2846
2846
|
/**
|
|
2847
2847
|
* @public
|
|
2848
2848
|
* Selects a specific language code from within an audio source, using the ISO 639-2 or ISO 639-3 three-letter language code
|
|
@@ -2852,7 +2852,7 @@ export interface AudioSelector {
|
|
|
2852
2852
|
* @public
|
|
2853
2853
|
* Enable this setting on one audio selector to set it as the default for the job. The service uses this default for outputs where it can't find the specified input audio. If you don't set a default, those outputs have no audio.
|
|
2854
2854
|
*/
|
|
2855
|
-
DefaultSelection?: AudioDefaultSelection
|
|
2855
|
+
DefaultSelection?: AudioDefaultSelection;
|
|
2856
2856
|
/**
|
|
2857
2857
|
* @public
|
|
2858
2858
|
* Specifies audio data from an external file source.
|
|
@@ -2867,7 +2867,7 @@ export interface AudioSelector {
|
|
|
2867
2867
|
* @public
|
|
2868
2868
|
* Selects a specific language code from within an audio source.
|
|
2869
2869
|
*/
|
|
2870
|
-
LanguageCode?: LanguageCode
|
|
2870
|
+
LanguageCode?: LanguageCode;
|
|
2871
2871
|
/**
|
|
2872
2872
|
* @public
|
|
2873
2873
|
* Specifies a time delta in milliseconds to offset the audio from the input video.
|
|
@@ -2892,7 +2892,7 @@ export interface AudioSelector {
|
|
|
2892
2892
|
* @public
|
|
2893
2893
|
* Specifies the type of the audio selector.
|
|
2894
2894
|
*/
|
|
2895
|
-
SelectorType?: AudioSelectorType
|
|
2895
|
+
SelectorType?: AudioSelectorType;
|
|
2896
2896
|
/**
|
|
2897
2897
|
* @public
|
|
2898
2898
|
* Identify a track from the input audio to include in this selector by entering the track index number. To include several tracks in a single audio selector, specify multiple tracks as follows. Using the console, enter a comma-separated list. For example, type "1,2,3" to include tracks 1 through 3.
|
|
@@ -2932,7 +2932,7 @@ export interface AncillarySourceSettings {
|
|
|
2932
2932
|
* @public
|
|
2933
2933
|
* Specify whether this set of input captions appears in your outputs in both 608 and 708 format. If you choose Upconvert, MediaConvert includes the captions data in two ways: it passes the 608 data through using the 608 compatibility bytes fields of the 708 wrapper, and it also translates the 608 data into 708.
|
|
2934
2934
|
*/
|
|
2935
|
-
Convert608To708?: AncillaryConvert608To708
|
|
2935
|
+
Convert608To708?: AncillaryConvert608To708;
|
|
2936
2936
|
/**
|
|
2937
2937
|
* @public
|
|
2938
2938
|
* Specifies the 608 channel number in the ancillary data track from which to extract captions. Unused for passthrough.
|
|
@@ -2942,7 +2942,7 @@ export interface AncillarySourceSettings {
|
|
|
2942
2942
|
* @public
|
|
2943
2943
|
* By default, the service terminates any unterminated captions at the end of each input. If you want the caption to continue onto your next input, disable this setting.
|
|
2944
2944
|
*/
|
|
2945
|
-
TerminateCaptions?: AncillaryTerminateCaptions
|
|
2945
|
+
TerminateCaptions?: AncillaryTerminateCaptions;
|
|
2946
2946
|
}
|
|
2947
2947
|
/**
|
|
2948
2948
|
* @public
|
|
@@ -2988,7 +2988,7 @@ export interface EmbeddedSourceSettings {
|
|
|
2988
2988
|
* @public
|
|
2989
2989
|
* Specify whether this set of input captions appears in your outputs in both 608 and 708 format. If you choose Upconvert, MediaConvert includes the captions data in two ways: it passes the 608 data through using the 608 compatibility bytes fields of the 708 wrapper, and it also translates the 608 data into 708.
|
|
2990
2990
|
*/
|
|
2991
|
-
Convert608To708?: EmbeddedConvert608To708
|
|
2991
|
+
Convert608To708?: EmbeddedConvert608To708;
|
|
2992
2992
|
/**
|
|
2993
2993
|
* @public
|
|
2994
2994
|
* Specifies the 608/708 channel number within the video track from which to extract captions. Unused for passthrough.
|
|
@@ -3003,7 +3003,7 @@ export interface EmbeddedSourceSettings {
|
|
|
3003
3003
|
* @public
|
|
3004
3004
|
* By default, the service terminates any unterminated captions at the end of each input. If you want the caption to continue onto your next input, disable this setting.
|
|
3005
3005
|
*/
|
|
3006
|
-
TerminateCaptions?: EmbeddedTerminateCaptions
|
|
3006
|
+
TerminateCaptions?: EmbeddedTerminateCaptions;
|
|
3007
3007
|
}
|
|
3008
3008
|
/**
|
|
3009
3009
|
* @public
|
|
@@ -3066,12 +3066,12 @@ export interface FileSourceSettings {
|
|
|
3066
3066
|
* @public
|
|
3067
3067
|
* Specify whether this set of input captions appears in your outputs in both 608 and 708 format. If you choose Upconvert, MediaConvert includes the captions data in two ways: it passes the 608 data through using the 608 compatibility bytes fields of the 708 wrapper, and it also translates the 608 data into 708.
|
|
3068
3068
|
*/
|
|
3069
|
-
Convert608To708?: FileSourceConvert608To708
|
|
3069
|
+
Convert608To708?: FileSourceConvert608To708;
|
|
3070
3070
|
/**
|
|
3071
3071
|
* @public
|
|
3072
3072
|
* Choose the presentation style of your input SCC captions. To use the same presentation style as your input: Keep the default value, Disabled. To convert paint-on captions to pop-on: Choose Enabled. We also recommend that you choose Enabled if you notice additional repeated lines in your output captions.
|
|
3073
3073
|
*/
|
|
3074
|
-
ConvertPaintToPop?: CaptionSourceConvertPaintOnToPopOn
|
|
3074
|
+
ConvertPaintToPop?: CaptionSourceConvertPaintOnToPopOn;
|
|
3075
3075
|
/**
|
|
3076
3076
|
* @public
|
|
3077
3077
|
* Ignore this setting unless your input captions format is SCC. To have the service compensate for differing frame rates between your input captions and input video, specify the frame rate of the captions file. Specify this value as a fraction. For example, you might specify 24 / 1 for 24 fps, 25 / 1 for 25 fps, 24000 / 1001 for 23.976 fps, or 30000 / 1001 for 29.97 fps.
|
|
@@ -3091,7 +3091,7 @@ export interface FileSourceSettings {
|
|
|
3091
3091
|
* @public
|
|
3092
3092
|
* When you use the setting Time delta to adjust the sync between your sidecar captions and your video, use this setting to specify the units for the delta that you specify. When you don't specify a value for Time delta units, MediaConvert uses seconds by default.
|
|
3093
3093
|
*/
|
|
3094
|
-
TimeDeltaUnits?: FileSourceTimeDeltaUnits
|
|
3094
|
+
TimeDeltaUnits?: FileSourceTimeDeltaUnits;
|
|
3095
3095
|
}
|
|
3096
3096
|
/**
|
|
3097
3097
|
* @public
|
|
@@ -3153,7 +3153,7 @@ export interface WebvttHlsSourceSettings {
|
|
|
3153
3153
|
* @public
|
|
3154
3154
|
* Optional. Specify ISO 639-2 or ISO 639-3 code in the language property
|
|
3155
3155
|
*/
|
|
3156
|
-
RenditionLanguageCode?: LanguageCode
|
|
3156
|
+
RenditionLanguageCode?: LanguageCode;
|
|
3157
3157
|
/**
|
|
3158
3158
|
* @public
|
|
3159
3159
|
* Optional. Specify media name
|
|
@@ -3189,7 +3189,7 @@ export interface CaptionSourceSettings {
|
|
|
3189
3189
|
* @public
|
|
3190
3190
|
* Use Source to identify the format of your input captions. The service cannot auto-detect caption format.
|
|
3191
3191
|
*/
|
|
3192
|
-
SourceType?: CaptionSourceType
|
|
3192
|
+
SourceType?: CaptionSourceType;
|
|
3193
3193
|
/**
|
|
3194
3194
|
* @public
|
|
3195
3195
|
* Settings specific to Teletext caption sources, including Page number.
|
|
@@ -3220,7 +3220,7 @@ export interface CaptionSelector {
|
|
|
3220
3220
|
* @public
|
|
3221
3221
|
* The specific language to extract from source. If input is SCTE-27, complete this field and/or PID to select the caption language to extract. If input is DVB-Sub and output is Burn-in, complete this field and/or PID to select the caption language to extract. If input is DVB-Sub that is being passed through, omit this field (and PID field); there is no way to extract a specific language with pass-through captions.
|
|
3222
3222
|
*/
|
|
3223
|
-
LanguageCode?: LanguageCode
|
|
3223
|
+
LanguageCode?: LanguageCode;
|
|
3224
3224
|
/**
|
|
3225
3225
|
* @public
|
|
3226
3226
|
* If your input captions are SCC, TTML, STL, SMI, SRT, or IMSC in an xml file, specify the URI of the input captions source file. If your input captions are IMSC in an IMF package, use TrackSourceSettings instead of FileSoureSettings.
|
|
@@ -3287,7 +3287,7 @@ export interface InputDecryptionSettings {
|
|
|
3287
3287
|
* @public
|
|
3288
3288
|
* Specify the encryption mode that you used to encrypt your input files.
|
|
3289
3289
|
*/
|
|
3290
|
-
DecryptionMode?: DecryptionMode
|
|
3290
|
+
DecryptionMode?: DecryptionMode;
|
|
3291
3291
|
/**
|
|
3292
3292
|
* @public
|
|
3293
3293
|
* Warning! Don't provide your encryption key in plaintext. Your job settings could be intercepted, making your encrypted content vulnerable. Specify the encrypted version of the data key that you used to encrypt your content. The data key must be encrypted by AWS Key Management Service (KMS). The key can be 128, 192, or 256 bits.
|
|
@@ -3505,7 +3505,7 @@ export interface VideoOverlayInput {
|
|
|
3505
3505
|
* @public
|
|
3506
3506
|
* Specify the starting timecode for your video overlay. To use the timecode present in your video overlay: Choose Embedded. To use a zerobased timecode: Choose Start at 0. To choose a timecode: Choose Specified start. When you do, enter the starting timecode in Start timecode. If you don't specify a value for Timecode source, MediaConvert uses Embedded by default.
|
|
3507
3507
|
*/
|
|
3508
|
-
TimecodeSource?: InputTimecodeSource
|
|
3508
|
+
TimecodeSource?: InputTimecodeSource;
|
|
3509
3509
|
/**
|
|
3510
3510
|
* @public
|
|
3511
3511
|
* Specify the starting timecode for this video overlay. To use this setting, you must set Timecode source to Specified start.
|
|
@@ -3702,7 +3702,7 @@ export interface VideoSelector {
|
|
|
3702
3702
|
* @public
|
|
3703
3703
|
* Ignore this setting unless this input is a QuickTime animation with an alpha channel. Use this setting to create separate Key and Fill outputs. In each output, specify which part of the input MediaConvert uses. Leave this setting at the default value DISCARD to delete the alpha channel and preserve the video. Set it to REMAP_TO_LUMA to delete the video and map the alpha channel to the luma channel of your outputs.
|
|
3704
3704
|
*/
|
|
3705
|
-
AlphaBehavior?: AlphaBehavior
|
|
3705
|
+
AlphaBehavior?: AlphaBehavior;
|
|
3706
3706
|
/**
|
|
3707
3707
|
* @public
|
|
3708
3708
|
* If your input video has accurate color space metadata, or if you don't know about color space: Keep the default value, Follow. MediaConvert will automatically detect your input color space. If your input video has metadata indicating the wrong color space, or has missing metadata: Specify the accurate color space here. If your input video is HDR 10 and the SMPTE ST 2086 Mastering Display Color Volume static metadata isn't present in your video stream, or if that metadata is present but not accurate: Choose Force HDR 10. Specify correct values in the input HDR 10 metadata settings. For more information about HDR jobs, see https://docs.aws.amazon.com/console/mediaconvert/hdr. When you specify an input color space, MediaConvert uses the following color space metadata, which includes color primaries, transfer characteristics, and matrix coefficients:
|
|
@@ -3712,17 +3712,17 @@ export interface VideoSelector {
|
|
|
3712
3712
|
* * P3D65 (SDR): Display P3, sRGB, BT.709
|
|
3713
3713
|
* * P3D65 (HDR): Display P3, PQ, BT.709
|
|
3714
3714
|
*/
|
|
3715
|
-
ColorSpace?: ColorSpace
|
|
3715
|
+
ColorSpace?: ColorSpace;
|
|
3716
3716
|
/**
|
|
3717
3717
|
* @public
|
|
3718
3718
|
* There are two sources for color metadata, the input file and the job input settings Color space and HDR master display information settings. The Color space usage setting determines which takes precedence. Choose Force to use color metadata from the input job settings. If you don't specify values for those settings, the service defaults to using metadata from your input. FALLBACK - Choose Fallback to use color metadata from the source when it is present. If there's no color metadata in your input file, the service defaults to using values you specify in the input settings.
|
|
3719
3719
|
*/
|
|
3720
|
-
ColorSpaceUsage?: ColorSpaceUsage
|
|
3720
|
+
ColorSpaceUsage?: ColorSpaceUsage;
|
|
3721
3721
|
/**
|
|
3722
3722
|
* @public
|
|
3723
3723
|
* Set Embedded timecode override to Use MDPM when your AVCHD input contains timecode tag data in the Modified Digital Video Pack Metadata. When you do, we recommend you also set Timecode source to Embedded. Leave Embedded timecode override blank, or set to None, when your input does not contain MDPM timecode.
|
|
3724
3724
|
*/
|
|
3725
|
-
EmbeddedTimecodeOverride?: EmbeddedTimecodeOverride
|
|
3725
|
+
EmbeddedTimecodeOverride?: EmbeddedTimecodeOverride;
|
|
3726
3726
|
/**
|
|
3727
3727
|
* @public
|
|
3728
3728
|
* Use these settings to provide HDR 10 metadata that is missing or inaccurate in your input video. Appropriate values vary depending on the input video and must be provided by a color grader. The color grader generates these values during the HDR 10 mastering process. The valid range for each of these settings is 0 to 50,000. Each increment represents 0.00002 in CIE1931 color coordinate. Related settings - When you specify these values, you must also set Color space to HDR 10. To specify whether the the values you specify here take precedence over the values in the metadata of your input file, set Color space usage. To specify whether color metadata is included in an output, set Color metadata. For more information about MediaConvert HDR jobs, see https://docs.aws.amazon.com/console/mediaconvert/hdr.
|
|
@@ -3732,7 +3732,7 @@ export interface VideoSelector {
|
|
|
3732
3732
|
* @public
|
|
3733
3733
|
* Use this setting if your input has video and audio durations that don't align, and your output or player has strict alignment requirements. Examples: Input audio track has a delayed start. Input video track ends before audio ends. When you set Pad video to Black, MediaConvert generates black video frames so that output video and audio durations match. Black video frames are added at the beginning or end, depending on your input. To keep the default behavior and not generate black video, set Pad video to Disabled or leave blank.
|
|
3734
3734
|
*/
|
|
3735
|
-
PadVideo?: PadVideo
|
|
3735
|
+
PadVideo?: PadVideo;
|
|
3736
3736
|
/**
|
|
3737
3737
|
* @public
|
|
3738
3738
|
* Use PID to select specific video data from an input file. Specify this value as an integer; the system automatically converts it to the hexidecimal value. For example, 257 selects PID 0x101. A PID, or packet identifier, is an identifier for a set of data in an MPEG-2 transport stream container.
|
|
@@ -3747,12 +3747,12 @@ export interface VideoSelector {
|
|
|
3747
3747
|
* @public
|
|
3748
3748
|
* Use Rotate to specify how the service rotates your video. You can choose automatic rotation or specify a rotation. You can specify a clockwise rotation of 0, 90, 180, or 270 degrees. If your input video container is .mov or .mp4 and your input has rotation metadata, you can choose Automatic to have the service rotate your video according to the rotation specified in the metadata. The rotation must be within one degree of 90, 180, or 270 degrees. If the rotation metadata specifies any other rotation, the service will default to no rotation. By default, the service does no rotation, even if your input video has rotation metadata. The service doesn't pass through rotation metadata.
|
|
3749
3749
|
*/
|
|
3750
|
-
Rotate?: InputRotate
|
|
3750
|
+
Rotate?: InputRotate;
|
|
3751
3751
|
/**
|
|
3752
3752
|
* @public
|
|
3753
3753
|
* If the sample range metadata in your input video is accurate, or if you don't know about sample range, keep the default value, Follow, for this setting. When you do, the service automatically detects your input sample range. If your input video has metadata indicating the wrong sample range, specify the accurate sample range here. When you do, MediaConvert ignores any sample range information in the input metadata. Regardless of whether MediaConvert uses the input sample range or the sample range that you specify, MediaConvert uses the sample range for transcoding and also writes it to the output metadata.
|
|
3754
3754
|
*/
|
|
3755
|
-
SampleRange?: InputSampleRange
|
|
3755
|
+
SampleRange?: InputSampleRange;
|
|
3756
3756
|
}
|
|
3757
3757
|
/**
|
|
3758
3758
|
* @public
|
|
@@ -3763,7 +3763,7 @@ export interface Input {
|
|
|
3763
3763
|
* @public
|
|
3764
3764
|
* Use to remove noise, blocking, blurriness, or ringing from your input as a pre-filter step before encoding. The Advanced input filter removes more types of compression artifacts and is an improvement when compared to basic Deblock and Denoise filters. To remove video compression artifacts from your input and improve the video quality: Choose Enabled. Additionally, this filter can help increase the video quality of your output relative to its bitrate, since noisy inputs are more complex and require more bits to encode. To help restore loss of detail after applying the filter, you can optionally add texture or sharpening as an additional step. Jobs that use this feature incur pro-tier pricing. To not apply advanced input filtering: Choose Disabled. Note that you can still apply basic filtering with Deblock and Denoise.
|
|
3765
3765
|
*/
|
|
3766
|
-
AdvancedInputFilter?: AdvancedInputFilter
|
|
3766
|
+
AdvancedInputFilter?: AdvancedInputFilter;
|
|
3767
3767
|
/**
|
|
3768
3768
|
* @public
|
|
3769
3769
|
* Optional settings for Advanced input filter when you set Advanced input filter to Enabled.
|
|
@@ -3793,7 +3793,7 @@ export interface Input {
|
|
|
3793
3793
|
* @public
|
|
3794
3794
|
* Enable Deblock to produce smoother motion in the output. Default is disabled. Only manually controllable for MPEG2 and uncompressed video inputs.
|
|
3795
3795
|
*/
|
|
3796
|
-
DeblockFilter?: InputDeblockFilter
|
|
3796
|
+
DeblockFilter?: InputDeblockFilter;
|
|
3797
3797
|
/**
|
|
3798
3798
|
* @public
|
|
3799
3799
|
* Settings for decrypting any input files that you encrypt before you upload them to Amazon S3. MediaConvert can decrypt files only when you use AWS Key Management Service (KMS) to encrypt the data key that you use to encrypt your content.
|
|
@@ -3803,7 +3803,7 @@ export interface Input {
|
|
|
3803
3803
|
* @public
|
|
3804
3804
|
* Enable Denoise to filter noise from the input. Default is disabled. Only applicable to MPEG2, H.264, H.265, and uncompressed video inputs.
|
|
3805
3805
|
*/
|
|
3806
|
-
DenoiseFilter?: InputDenoiseFilter
|
|
3806
|
+
DenoiseFilter?: InputDenoiseFilter;
|
|
3807
3807
|
/**
|
|
3808
3808
|
* @public
|
|
3809
3809
|
* Use this setting only when your video source has Dolby Vision studio mastering metadata that is carried in a separate XML file. Specify the Amazon S3 location for the metadata XML file. MediaConvert uses this file to provide global and frame-level metadata for Dolby Vision preprocessing. When you specify a file here and your input also has interleaved global and frame level metadata, MediaConvert ignores the interleaved metadata and uses only the the metadata from this external XML file. Note that your IAM service role must grant MediaConvert read permissions to this file. For more information, see https://docs.aws.amazon.com/mediaconvert/latest/ug/iam-role.html.
|
|
@@ -3818,7 +3818,7 @@ export interface Input {
|
|
|
3818
3818
|
* @public
|
|
3819
3819
|
* Specify whether to apply input filtering to improve the video quality of your input. To apply filtering depending on your input type and quality: Choose Auto. To apply no filtering: Choose Disable. To apply filtering regardless of your input type and quality: Choose Force. When you do, you must also specify a value for Filter strength.
|
|
3820
3820
|
*/
|
|
3821
|
-
FilterEnable?: InputFilterEnable
|
|
3821
|
+
FilterEnable?: InputFilterEnable;
|
|
3822
3822
|
/**
|
|
3823
3823
|
* @public
|
|
3824
3824
|
* Specify the strength of the input filter. To apply an automatic amount of filtering based the compression artifacts measured in your input: We recommend that you leave Filter strength blank and set Filter enable to Auto. To manually apply filtering: Enter a value from 1 to 5, where 1 is the least amount of filtering and 5 is the most. The value that you enter applies to the strength of the Deblock or Denoise filters, or to the strength of the Advanced input filter.
|
|
@@ -3838,7 +3838,7 @@ export interface Input {
|
|
|
3838
3838
|
* @public
|
|
3839
3839
|
* When you have a progressive segmented frame (PsF) input, use this setting to flag the input as PsF. MediaConvert doesn't automatically detect PsF. Therefore, flagging your input as PsF results in better preservation of video quality when you do deinterlacing and frame rate conversion. If you don't specify, the default value is Auto. Auto is the correct setting for all inputs that are not PsF. Don't set this value to PsF when your input is interlaced. Doing so creates horizontal interlacing artifacts.
|
|
3840
3840
|
*/
|
|
3841
|
-
InputScanType?: InputScanType
|
|
3841
|
+
InputScanType?: InputScanType;
|
|
3842
3842
|
/**
|
|
3843
3843
|
* @public
|
|
3844
3844
|
* Use Selection placement to define the video area in your output frame. The area outside of the rectangle that you specify here is black. If you specify a value here, it will override any value that you specify in the output setting Selection placement. If you specify a value here, this will override any AFD values in your input, even if you set Respond to AFD to Respond. If you specify a value here, this will ignore anything that you specify for the setting Scaling Behavior.
|
|
@@ -3855,7 +3855,7 @@ export interface Input {
|
|
|
3855
3855
|
* * Ignore PSI - Scan all PIDs for audio and video.
|
|
3856
3856
|
* * Use PSI - Scan only PSI data.
|
|
3857
3857
|
*/
|
|
3858
|
-
PsiControl?: InputPsiControl
|
|
3858
|
+
PsiControl?: InputPsiControl;
|
|
3859
3859
|
/**
|
|
3860
3860
|
* @public
|
|
3861
3861
|
* Provide a list of any necessary supplemental IMPs. You need supplemental IMPs if the CPL that you're using for your input is in an incomplete IMP. Specify either the supplemental IMP directories with a trailing slash or the ASSETMAP.xml files. For example ["s3://bucket/ov/", "s3://bucket/vf2/ASSETMAP.xml"]. You don't need to specify the IMP that contains your input CPL, because the service automatically detects it.
|
|
@@ -3865,7 +3865,7 @@ export interface Input {
|
|
|
3865
3865
|
* @public
|
|
3866
3866
|
* Use this Timecode source setting, located under the input settings, to specify how the service counts input video frames. This input frame count affects only the behavior of features that apply to a single input at a time, such as input clipping and synchronizing some captions formats. Choose Embedded to use the timecodes in your input video. Choose Start at zero to start the first frame at zero. Choose Specified start to start the first frame at the timecode that you specify in the setting Start timecode. If you don't specify a value for Timecode source, the service will use Embedded by default. For more information about timecodes, see https://docs.aws.amazon.com/console/mediaconvert/timecode.
|
|
3867
3867
|
*/
|
|
3868
|
-
TimecodeSource?: InputTimecodeSource
|
|
3868
|
+
TimecodeSource?: InputTimecodeSource;
|
|
3869
3869
|
/**
|
|
3870
3870
|
* @public
|
|
3871
3871
|
* Specify the timecode that you want the service to use for this input's initial frame. To use this setting, you must set the Timecode source setting, located under the input settings, to Specified start. For more information about timecodes, see https://docs.aws.amazon.com/console/mediaconvert/timecode.
|
|
@@ -3896,7 +3896,7 @@ export interface InputTemplate {
|
|
|
3896
3896
|
* @public
|
|
3897
3897
|
* Use to remove noise, blocking, blurriness, or ringing from your input as a pre-filter step before encoding. The Advanced input filter removes more types of compression artifacts and is an improvement when compared to basic Deblock and Denoise filters. To remove video compression artifacts from your input and improve the video quality: Choose Enabled. Additionally, this filter can help increase the video quality of your output relative to its bitrate, since noisy inputs are more complex and require more bits to encode. To help restore loss of detail after applying the filter, you can optionally add texture or sharpening as an additional step. Jobs that use this feature incur pro-tier pricing. To not apply advanced input filtering: Choose Disabled. Note that you can still apply basic filtering with Deblock and Denoise.
|
|
3898
3898
|
*/
|
|
3899
|
-
AdvancedInputFilter?: AdvancedInputFilter
|
|
3899
|
+
AdvancedInputFilter?: AdvancedInputFilter;
|
|
3900
3900
|
/**
|
|
3901
3901
|
* @public
|
|
3902
3902
|
* Optional settings for Advanced input filter when you set Advanced input filter to Enabled.
|
|
@@ -3926,12 +3926,12 @@ export interface InputTemplate {
|
|
|
3926
3926
|
* @public
|
|
3927
3927
|
* Enable Deblock to produce smoother motion in the output. Default is disabled. Only manually controllable for MPEG2 and uncompressed video inputs.
|
|
3928
3928
|
*/
|
|
3929
|
-
DeblockFilter?: InputDeblockFilter
|
|
3929
|
+
DeblockFilter?: InputDeblockFilter;
|
|
3930
3930
|
/**
|
|
3931
3931
|
* @public
|
|
3932
3932
|
* Enable Denoise to filter noise from the input. Default is disabled. Only applicable to MPEG2, H.264, H.265, and uncompressed video inputs.
|
|
3933
3933
|
*/
|
|
3934
|
-
DenoiseFilter?: InputDenoiseFilter
|
|
3934
|
+
DenoiseFilter?: InputDenoiseFilter;
|
|
3935
3935
|
/**
|
|
3936
3936
|
* @public
|
|
3937
3937
|
* Use this setting only when your video source has Dolby Vision studio mastering metadata that is carried in a separate XML file. Specify the Amazon S3 location for the metadata XML file. MediaConvert uses this file to provide global and frame-level metadata for Dolby Vision preprocessing. When you specify a file here and your input also has interleaved global and frame level metadata, MediaConvert ignores the interleaved metadata and uses only the the metadata from this external XML file. Note that your IAM service role must grant MediaConvert read permissions to this file. For more information, see https://docs.aws.amazon.com/mediaconvert/latest/ug/iam-role.html.
|
|
@@ -3941,7 +3941,7 @@ export interface InputTemplate {
|
|
|
3941
3941
|
* @public
|
|
3942
3942
|
* Specify whether to apply input filtering to improve the video quality of your input. To apply filtering depending on your input type and quality: Choose Auto. To apply no filtering: Choose Disable. To apply filtering regardless of your input type and quality: Choose Force. When you do, you must also specify a value for Filter strength.
|
|
3943
3943
|
*/
|
|
3944
|
-
FilterEnable?: InputFilterEnable
|
|
3944
|
+
FilterEnable?: InputFilterEnable;
|
|
3945
3945
|
/**
|
|
3946
3946
|
* @public
|
|
3947
3947
|
* Specify the strength of the input filter. To apply an automatic amount of filtering based the compression artifacts measured in your input: We recommend that you leave Filter strength blank and set Filter enable to Auto. To manually apply filtering: Enter a value from 1 to 5, where 1 is the least amount of filtering and 5 is the most. The value that you enter applies to the strength of the Deblock or Denoise filters, or to the strength of the Advanced input filter.
|
|
@@ -3961,7 +3961,7 @@ export interface InputTemplate {
|
|
|
3961
3961
|
* @public
|
|
3962
3962
|
* When you have a progressive segmented frame (PsF) input, use this setting to flag the input as PsF. MediaConvert doesn't automatically detect PsF. Therefore, flagging your input as PsF results in better preservation of video quality when you do deinterlacing and frame rate conversion. If you don't specify, the default value is Auto. Auto is the correct setting for all inputs that are not PsF. Don't set this value to PsF when your input is interlaced. Doing so creates horizontal interlacing artifacts.
|
|
3963
3963
|
*/
|
|
3964
|
-
InputScanType?: InputScanType
|
|
3964
|
+
InputScanType?: InputScanType;
|
|
3965
3965
|
/**
|
|
3966
3966
|
* @public
|
|
3967
3967
|
* Use Selection placement to define the video area in your output frame. The area outside of the rectangle that you specify here is black. If you specify a value here, it will override any value that you specify in the output setting Selection placement. If you specify a value here, this will override any AFD values in your input, even if you set Respond to AFD to Respond. If you specify a value here, this will ignore anything that you specify for the setting Scaling Behavior.
|
|
@@ -3978,12 +3978,12 @@ export interface InputTemplate {
|
|
|
3978
3978
|
* * Ignore PSI - Scan all PIDs for audio and video.
|
|
3979
3979
|
* * Use PSI - Scan only PSI data.
|
|
3980
3980
|
*/
|
|
3981
|
-
PsiControl?: InputPsiControl
|
|
3981
|
+
PsiControl?: InputPsiControl;
|
|
3982
3982
|
/**
|
|
3983
3983
|
* @public
|
|
3984
3984
|
* Use this Timecode source setting, located under the input settings, to specify how the service counts input video frames. This input frame count affects only the behavior of features that apply to a single input at a time, such as input clipping and synchronizing some captions formats. Choose Embedded to use the timecodes in your input video. Choose Start at zero to start the first frame at zero. Choose Specified start to start the first frame at the timecode that you specify in the setting Start timecode. If you don't specify a value for Timecode source, the service will use Embedded by default. For more information about timecodes, see https://docs.aws.amazon.com/console/mediaconvert/timecode.
|
|
3985
3985
|
*/
|
|
3986
|
-
TimecodeSource?: InputTimecodeSource
|
|
3986
|
+
TimecodeSource?: InputTimecodeSource;
|
|
3987
3987
|
/**
|
|
3988
3988
|
* @public
|
|
3989
3989
|
* Specify the timecode that you want the service to use for this input's initial frame. To use this setting, you must set the Timecode source setting, located under the input settings, to Specified start. For more information about timecodes, see https://docs.aws.amazon.com/console/mediaconvert/timecode.
|
|
@@ -4022,7 +4022,7 @@ export interface AccelerationSettings {
|
|
|
4022
4022
|
* @public
|
|
4023
4023
|
* Specify the conditions when the service will run your job with accelerated transcoding.
|
|
4024
4024
|
*/
|
|
4025
|
-
Mode: AccelerationMode |
|
|
4025
|
+
Mode: AccelerationMode | undefined;
|
|
4026
4026
|
}
|
|
4027
4027
|
/**
|
|
4028
4028
|
* @public
|
|
@@ -4232,12 +4232,12 @@ export interface ExtendedDataServices {
|
|
|
4232
4232
|
* @public
|
|
4233
4233
|
* The action to take on copy and redistribution control XDS packets. If you select PASSTHROUGH, packets will not be changed. If you select STRIP, any packets will be removed in output captions.
|
|
4234
4234
|
*/
|
|
4235
|
-
CopyProtectionAction?: CopyProtectionAction
|
|
4235
|
+
CopyProtectionAction?: CopyProtectionAction;
|
|
4236
4236
|
/**
|
|
4237
4237
|
* @public
|
|
4238
4238
|
* The action to take on content advisory XDS packets. If you select PASSTHROUGH, packets will not be changed. If you select STRIP, any packets will be removed in output captions.
|
|
4239
4239
|
*/
|
|
4240
|
-
VchipAction?: VchipAction
|
|
4240
|
+
VchipAction?: VchipAction;
|
|
4241
4241
|
}
|
|
4242
4242
|
/**
|
|
4243
4243
|
* @public
|
|
@@ -4385,7 +4385,7 @@ export interface MotionImageInserter {
|
|
|
4385
4385
|
* @public
|
|
4386
4386
|
* Choose the type of motion graphic asset that you are providing for your overlay. You can choose either a .mov file or a series of .png files.
|
|
4387
4387
|
*/
|
|
4388
|
-
InsertionMode?: MotionImageInsertionMode
|
|
4388
|
+
InsertionMode?: MotionImageInsertionMode;
|
|
4389
4389
|
/**
|
|
4390
4390
|
* @public
|
|
4391
4391
|
* Use Offset to specify the placement of your motion graphic overlay on the video frame. Specify in pixels, from the upper-left corner of the frame. If you don't specify an offset, the service scales your overlay to the full size of the frame. Otherwise, the service inserts the overlay at its native resolution and scales the size up or down with any video scaling.
|
|
@@ -4395,7 +4395,7 @@ export interface MotionImageInserter {
|
|
|
4395
4395
|
* @public
|
|
4396
4396
|
* Specify whether your motion graphic overlay repeats on a loop or plays only once.
|
|
4397
4397
|
*/
|
|
4398
|
-
Playback?: MotionImagePlayback
|
|
4398
|
+
Playback?: MotionImagePlayback;
|
|
4399
4399
|
/**
|
|
4400
4400
|
* @public
|
|
4401
4401
|
* Specify when the motion overlay begins. Use timecode format (HH:MM:SS:FF or HH:MM:SS;FF). Make sure that the timecode you provide here takes into account how you have set up your timecode configuration under both job settings and input settings. The simplest way to do that is to set both to start at 0. If you need to set up your job to follow timecodes embedded in your source that don't start at zero, make sure that you specify a start time that is after the first embedded timecode. For more information, see https://docs.aws.amazon.com/mediaconvert/latest/ug/setting-up-timecode.html
|
|
@@ -4464,7 +4464,7 @@ export interface NielsenNonLinearWatermarkSettings {
|
|
|
4464
4464
|
* @public
|
|
4465
4465
|
* Choose the type of Nielsen watermarks that you want in your outputs. When you choose NAES 2 and NW, you must provide a value for the setting SID. When you choose CBET, you must provide a value for the setting CSID. When you choose NAES 2, NW, and CBET, you must provide values for both of these settings.
|
|
4466
4466
|
*/
|
|
4467
|
-
ActiveWatermarkProcess?: NielsenActiveWatermarkProcessType
|
|
4467
|
+
ActiveWatermarkProcess?: NielsenActiveWatermarkProcessType;
|
|
4468
4468
|
/**
|
|
4469
4469
|
* @public
|
|
4470
4470
|
* Optional. Use this setting when you want the service to include an ADI file in the Nielsen metadata .zip file. To provide an ADI file, store it in Amazon S3 and provide a URL to it here. The URL should be in the following format: S3://bucket/path/ADI-file. For more information about the metadata .zip file, see the setting Metadata destination.
|
|
@@ -4504,7 +4504,7 @@ export interface NielsenNonLinearWatermarkSettings {
|
|
|
4504
4504
|
* @public
|
|
4505
4505
|
* Required. Specify whether your source content already contains Nielsen non-linear watermarks. When you set this value to Watermarked, the service fails the job. Nielsen requires that you add non-linear watermarking to only clean content that doesn't already have non-linear Nielsen watermarks.
|
|
4506
4506
|
*/
|
|
4507
|
-
SourceWatermarkStatus?: NielsenSourceWatermarkStatusType
|
|
4507
|
+
SourceWatermarkStatus?: NielsenSourceWatermarkStatusType;
|
|
4508
4508
|
/**
|
|
4509
4509
|
* @public
|
|
4510
4510
|
* Specify the endpoint for the TIC server that you have deployed and configured in the AWS Cloud. Required for all Nielsen non-linear watermarking. MediaConvert can't connect directly to a TIC server. Instead, you must use API Gateway to provide a RESTful interface between MediaConvert and a TIC server that you deploy in your AWS account. For more information on deploying a TIC server in your AWS account and the required API Gateway, contact Nielsen support.
|
|
@@ -4514,7 +4514,7 @@ export interface NielsenNonLinearWatermarkSettings {
|
|
|
4514
4514
|
* @public
|
|
4515
4515
|
* To create assets that have the same TIC values in each audio track, keep the default value Share TICs. To create assets that have unique TIC values for each audio track, choose Use unique TICs.
|
|
4516
4516
|
*/
|
|
4517
|
-
UniqueTicPerAudioTrack?: NielsenUniqueTicPerAudioTrackType
|
|
4517
|
+
UniqueTicPerAudioTrack?: NielsenUniqueTicPerAudioTrackType;
|
|
4518
4518
|
}
|
|
4519
4519
|
/**
|
|
4520
4520
|
* @public
|
|
@@ -4613,7 +4613,7 @@ export interface S3DestinationAccessControl {
|
|
|
4613
4613
|
* @public
|
|
4614
4614
|
* Choose an Amazon S3 canned ACL for MediaConvert to apply to this output.
|
|
4615
4615
|
*/
|
|
4616
|
-
CannedAcl?: S3ObjectCannedAcl
|
|
4616
|
+
CannedAcl?: S3ObjectCannedAcl;
|
|
4617
4617
|
}
|
|
4618
4618
|
/**
|
|
4619
4619
|
* @public
|
|
@@ -4636,7 +4636,7 @@ export interface S3EncryptionSettings {
|
|
|
4636
4636
|
* @public
|
|
4637
4637
|
* Specify how you want your data keys managed. AWS uses data keys to encrypt your content. AWS also encrypts the data keys themselves, using a customer master key (CMK), and then stores the encrypted data keys alongside your encrypted content. Use this setting to specify which AWS service manages the CMK. For simplest set up, choose Amazon S3. If you want your master key to be managed by AWS Key Management Service (KMS), choose AWS KMS. By default, when you choose AWS KMS, KMS uses the AWS managed customer master key (CMK) associated with Amazon S3 to encrypt your data keys. You can optionally choose to specify a different, customer managed CMK. Do so by specifying the Amazon Resource Name (ARN) of the key for the setting KMS ARN.
|
|
4638
4638
|
*/
|
|
4639
|
-
EncryptionType?: S3ServerSideEncryptionType
|
|
4639
|
+
EncryptionType?: S3ServerSideEncryptionType;
|
|
4640
4640
|
/**
|
|
4641
4641
|
* @public
|
|
4642
4642
|
* Optionally, specify the encryption context that you want to use alongside your KMS key. AWS KMS uses this encryption context as additional authenticated data (AAD) to support authenticated encryption. This value must be a base64-encoded UTF-8 string holding JSON which represents a string-string map. To use this setting, you must also set Server-side encryption to AWS KMS. For more information about encryption context, see: https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#encrypt_context.
|
|
@@ -4684,7 +4684,7 @@ export interface S3DestinationSettings {
|
|
|
4684
4684
|
* @public
|
|
4685
4685
|
* Specify the S3 storage class to use for this output. To use your destination's default storage class: Keep the default value, Not set. For more information about S3 storage classes, see https://docs.aws.amazon.com/AmazonS3/latest/userguide/storage-class-intro.html
|
|
4686
4686
|
*/
|
|
4687
|
-
StorageClass?: S3StorageClass
|
|
4687
|
+
StorageClass?: S3StorageClass;
|
|
4688
4688
|
}
|
|
4689
4689
|
/**
|
|
4690
4690
|
* @public
|
|
@@ -4804,12 +4804,12 @@ export interface CmafEncryptionSettings {
|
|
|
4804
4804
|
* @public
|
|
4805
4805
|
* Specify the encryption scheme that you want the service to use when encrypting your CMAF segments. Choose AES-CBC subsample or AES_CTR.
|
|
4806
4806
|
*/
|
|
4807
|
-
EncryptionMethod?: CmafEncryptionType
|
|
4807
|
+
EncryptionMethod?: CmafEncryptionType;
|
|
4808
4808
|
/**
|
|
4809
4809
|
* @public
|
|
4810
4810
|
* When you use DRM with CMAF outputs, choose whether the service writes the 128-bit encryption initialization vector in the HLS and DASH manifests.
|
|
4811
4811
|
*/
|
|
4812
|
-
InitializationVectorInManifest?: CmafInitializationVectorInManifest
|
|
4812
|
+
InitializationVectorInManifest?: CmafInitializationVectorInManifest;
|
|
4813
4813
|
/**
|
|
4814
4814
|
* @public
|
|
4815
4815
|
* If your output group type is CMAF, use these settings when doing DRM encryption with a SPEKE-compliant key provider. If your output group type is HLS, DASH, or Microsoft Smooth, use the SpekeKeyProvider settings instead.
|
|
@@ -4824,7 +4824,7 @@ export interface CmafEncryptionSettings {
|
|
|
4824
4824
|
* @public
|
|
4825
4825
|
* Specify whether your DRM encryption key is static or from a key provider that follows the SPEKE standard. For more information about SPEKE, see https://docs.aws.amazon.com/speke/latest/documentation/what-is-speke.html.
|
|
4826
4826
|
*/
|
|
4827
|
-
Type?: CmafKeyProviderType
|
|
4827
|
+
Type?: CmafKeyProviderType;
|
|
4828
4828
|
}
|
|
4829
4829
|
/**
|
|
4830
4830
|
* @public
|
|
@@ -4861,7 +4861,7 @@ export interface CmafImageBasedTrickPlaySettings {
|
|
|
4861
4861
|
* @public
|
|
4862
4862
|
* The cadence MediaConvert follows for generating thumbnails. If set to FOLLOW_IFRAME, MediaConvert generates thumbnails for each IDR frame in the output (matching the GOP cadence). If set to FOLLOW_CUSTOM, MediaConvert generates thumbnails according to the interval you specify in thumbnailInterval.
|
|
4863
4863
|
*/
|
|
4864
|
-
IntervalCadence?: CmafIntervalCadence
|
|
4864
|
+
IntervalCadence?: CmafIntervalCadence;
|
|
4865
4865
|
/**
|
|
4866
4866
|
* @public
|
|
4867
4867
|
* Height of each thumbnail within each tile image, in pixels. Leave blank to maintain aspect ratio with thumbnail width. If following the aspect ratio would lead to a total tile height greater than 4096, then the job will be rejected. Must be divisible by 2.
|
|
@@ -5063,17 +5063,17 @@ export interface CmafGroupSettings {
|
|
|
5063
5063
|
* @public
|
|
5064
5064
|
* Disable this setting only when your workflow requires the #EXT-X-ALLOW-CACHE:no tag. Otherwise, keep the default value Enabled and control caching in your video distribution set up. For example, use the Cache-Control http header.
|
|
5065
5065
|
*/
|
|
5066
|
-
ClientCache?: CmafClientCache
|
|
5066
|
+
ClientCache?: CmafClientCache;
|
|
5067
5067
|
/**
|
|
5068
5068
|
* @public
|
|
5069
5069
|
* Specification to use (RFC-6381 or the default RFC-4281) during m3u8 playlist generation.
|
|
5070
5070
|
*/
|
|
5071
|
-
CodecSpecification?: CmafCodecSpecification
|
|
5071
|
+
CodecSpecification?: CmafCodecSpecification;
|
|
5072
5072
|
/**
|
|
5073
5073
|
* @public
|
|
5074
5074
|
* Specify how MediaConvert writes SegmentTimeline in your output DASH manifest. To write a SegmentTimeline in each video Representation: Keep the default value, Basic. To write a common SegmentTimeline in the video AdaptationSet: Choose Compact. Note that MediaConvert will still write a SegmentTimeline in any Representation that does not share a common timeline. To write a video AdaptationSet for each different output framerate, and a common SegmentTimeline in each AdaptationSet: Choose Distinct.
|
|
5075
5075
|
*/
|
|
5076
|
-
DashManifestStyle?: DashManifestStyle
|
|
5076
|
+
DashManifestStyle?: DashManifestStyle;
|
|
5077
5077
|
/**
|
|
5078
5078
|
* @public
|
|
5079
5079
|
* Use Destination to specify the S3 output location and the output filename base. Destination accepts format identifiers. If you do not specify the base filename in the URI, the service will use the filename of the input file. If your job has multiple inputs, the service uses the filename of the first input file.
|
|
@@ -5098,7 +5098,7 @@ export interface CmafGroupSettings {
|
|
|
5098
5098
|
* @public
|
|
5099
5099
|
* Specify whether MediaConvert generates images for trick play. Keep the default value, None, to not generate any images. Choose Thumbnail to generate tiled thumbnails. Choose Thumbnail and full frame to generate tiled thumbnails and full-resolution images of single frames. When you enable Write HLS manifest, MediaConvert creates a child manifest for each set of images that you generate and adds corresponding entries to the parent manifest. When you enable Write DASH manifest, MediaConvert adds an entry in the .mpd manifest for each set of images that you generate. A common application for these images is Roku trick mode. The thumbnails and full-frame images that MediaConvert creates with this feature are compatible with this Roku specification: https://developer.roku.com/docs/developer-program/media-playback/trick-mode/hls-and-dash.md
|
|
5100
5100
|
*/
|
|
5101
|
-
ImageBasedTrickPlay?: CmafImageBasedTrickPlay
|
|
5101
|
+
ImageBasedTrickPlay?: CmafImageBasedTrickPlay;
|
|
5102
5102
|
/**
|
|
5103
5103
|
* @public
|
|
5104
5104
|
* Tile and thumbnail settings applicable when imageBasedTrickPlay is ADVANCED
|
|
@@ -5108,12 +5108,12 @@ export interface CmafGroupSettings {
|
|
|
5108
5108
|
* @public
|
|
5109
5109
|
* When set to GZIP, compresses HLS playlist.
|
|
5110
5110
|
*/
|
|
5111
|
-
ManifestCompression?: CmafManifestCompression
|
|
5111
|
+
ManifestCompression?: CmafManifestCompression;
|
|
5112
5112
|
/**
|
|
5113
5113
|
* @public
|
|
5114
5114
|
* Indicates whether the output manifest should use floating point values for segment duration.
|
|
5115
5115
|
*/
|
|
5116
|
-
ManifestDurationFormat?: CmafManifestDurationFormat
|
|
5116
|
+
ManifestDurationFormat?: CmafManifestDurationFormat;
|
|
5117
5117
|
/**
|
|
5118
5118
|
* @public
|
|
5119
5119
|
* Minimum time of initially buffered media that is needed to ensure smooth playout.
|
|
@@ -5128,22 +5128,22 @@ export interface CmafGroupSettings {
|
|
|
5128
5128
|
* @public
|
|
5129
5129
|
* Specify how the value for bandwidth is determined for each video Representation in your output MPD manifest. We recommend that you choose a MPD manifest bandwidth type that is compatible with your downstream player configuration. Max: Use the same value that you specify for Max bitrate in the video output, in bits per second. Average: Use the calculated average bitrate of the encoded video output, in bits per second.
|
|
5130
5130
|
*/
|
|
5131
|
-
MpdManifestBandwidthType?: CmafMpdManifestBandwidthType
|
|
5131
|
+
MpdManifestBandwidthType?: CmafMpdManifestBandwidthType;
|
|
5132
5132
|
/**
|
|
5133
5133
|
* @public
|
|
5134
5134
|
* Specify whether your DASH profile is on-demand or main. When you choose Main profile, the service signals urn:mpeg:dash:profile:isoff-main:2011 in your .mpd DASH manifest. When you choose On-demand, the service signals urn:mpeg:dash:profile:isoff-on-demand:2011 in your .mpd. When you choose On-demand, you must also set the output group setting Segment control to Single file.
|
|
5135
5135
|
*/
|
|
5136
|
-
MpdProfile?: CmafMpdProfile
|
|
5136
|
+
MpdProfile?: CmafMpdProfile;
|
|
5137
5137
|
/**
|
|
5138
5138
|
* @public
|
|
5139
5139
|
* Use this setting only when your output video stream has B-frames, which causes the initial presentation time stamp (PTS) to be offset from the initial decode time stamp (DTS). Specify how MediaConvert handles PTS when writing time stamps in output DASH manifests. Choose Match initial PTS when you want MediaConvert to use the initial PTS as the first time stamp in the manifest. Choose Zero-based to have MediaConvert ignore the initial PTS in the video stream and instead write the initial time stamp as zero in the manifest. For outputs that don't have B-frames, the time stamps in your DASH manifests start at zero regardless of your choice here.
|
|
5140
5140
|
*/
|
|
5141
|
-
PtsOffsetHandlingForBFrames?: CmafPtsOffsetHandlingForBFrames
|
|
5141
|
+
PtsOffsetHandlingForBFrames?: CmafPtsOffsetHandlingForBFrames;
|
|
5142
5142
|
/**
|
|
5143
5143
|
* @public
|
|
5144
5144
|
* When set to SINGLE_FILE, a single output file is generated, which is internally segmented using the Fragment Length and Segment Length. When set to SEGMENTED_FILES, separate segment files will be created.
|
|
5145
5145
|
*/
|
|
5146
|
-
SegmentControl?: CmafSegmentControl
|
|
5146
|
+
SegmentControl?: CmafSegmentControl;
|
|
5147
5147
|
/**
|
|
5148
5148
|
* @public
|
|
5149
5149
|
* Specify the length, in whole seconds, of each segment. When you don't specify a value, MediaConvert defaults to 10. Related settings: Use Segment length control to specify whether the encoder enforces this value strictly. Use Segment control to specify whether MediaConvert creates separate segment files or one content file that has metadata to mark the segment boundaries.
|
|
@@ -5153,37 +5153,37 @@ export interface CmafGroupSettings {
|
|
|
5153
5153
|
* @public
|
|
5154
5154
|
* Specify how you want MediaConvert to determine the segment length. Choose Exact to have the encoder use the exact length that you specify with the setting Segment length. This might result in extra I-frames. Choose Multiple of GOP to have the encoder round up the segment lengths to match the next GOP boundary.
|
|
5155
5155
|
*/
|
|
5156
|
-
SegmentLengthControl?: CmafSegmentLengthControl
|
|
5156
|
+
SegmentLengthControl?: CmafSegmentLengthControl;
|
|
5157
5157
|
/**
|
|
5158
5158
|
* @public
|
|
5159
5159
|
* Include or exclude RESOLUTION attribute for video in EXT-X-STREAM-INF tag of variant manifest.
|
|
5160
5160
|
*/
|
|
5161
|
-
StreamInfResolution?: CmafStreamInfResolution
|
|
5161
|
+
StreamInfResolution?: CmafStreamInfResolution;
|
|
5162
5162
|
/**
|
|
5163
5163
|
* @public
|
|
5164
5164
|
* When set to LEGACY, the segment target duration is always rounded up to the nearest integer value above its current value in seconds. When set to SPEC\\_COMPLIANT, the segment target duration is rounded up to the nearest integer value if fraction seconds are greater than or equal to 0.5 (>= 0.5) and rounded down if less than 0.5 (< 0.5). You may need to use LEGACY if your client needs to ensure that the target duration is always longer than the actual duration of the segment. Some older players may experience interrupted playback when the actual duration of a track in a segment is longer than the target duration.
|
|
5165
5165
|
*/
|
|
5166
|
-
TargetDurationCompatibilityMode?: CmafTargetDurationCompatibilityMode
|
|
5166
|
+
TargetDurationCompatibilityMode?: CmafTargetDurationCompatibilityMode;
|
|
5167
5167
|
/**
|
|
5168
5168
|
* @public
|
|
5169
5169
|
* Specify the video sample composition time offset mode in the output fMP4 TRUN box. For wider player compatibility, set Video composition offsets to Unsigned or leave blank. The earliest presentation time may be greater than zero, and sample composition time offsets will increment using unsigned integers. For strict fMP4 video and audio timing, set Video composition offsets to Signed. The earliest presentation time will be equal to zero, and sample composition time offsets will increment using signed integers.
|
|
5170
5170
|
*/
|
|
5171
|
-
VideoCompositionOffsets?: CmafVideoCompositionOffsets
|
|
5171
|
+
VideoCompositionOffsets?: CmafVideoCompositionOffsets;
|
|
5172
5172
|
/**
|
|
5173
5173
|
* @public
|
|
5174
5174
|
* When set to ENABLED, a DASH MPD manifest will be generated for this output.
|
|
5175
5175
|
*/
|
|
5176
|
-
WriteDashManifest?: CmafWriteDASHManifest
|
|
5176
|
+
WriteDashManifest?: CmafWriteDASHManifest;
|
|
5177
5177
|
/**
|
|
5178
5178
|
* @public
|
|
5179
5179
|
* When set to ENABLED, an Apple HLS manifest will be generated for this output.
|
|
5180
5180
|
*/
|
|
5181
|
-
WriteHlsManifest?: CmafWriteHLSManifest
|
|
5181
|
+
WriteHlsManifest?: CmafWriteHLSManifest;
|
|
5182
5182
|
/**
|
|
5183
5183
|
* @public
|
|
5184
5184
|
* When you enable Precise segment duration in DASH manifests, your DASH manifest shows precise segment durations. The segment duration information appears inside the SegmentTimeline element, inside SegmentTemplate at the Representation level. When this feature isn't enabled, the segment durations in your DASH manifest are approximate. The segment duration information appears in the duration attribute of the SegmentTemplate element.
|
|
5185
5185
|
*/
|
|
5186
|
-
WriteSegmentTimelineInRepresentation?: CmafWriteSegmentTimelineInRepresentation
|
|
5186
|
+
WriteSegmentTimelineInRepresentation?: CmafWriteSegmentTimelineInRepresentation;
|
|
5187
5187
|
}
|
|
5188
5188
|
/**
|
|
5189
5189
|
* @public
|
|
@@ -5245,7 +5245,7 @@ export interface DashIsoEncryptionSettings {
|
|
|
5245
5245
|
* @public
|
|
5246
5246
|
* This setting can improve the compatibility of your output with video players on obsolete devices. It applies only to DASH H.264 outputs with DRM encryption. Choose Unencrypted SEI only to correct problems with playback on older devices. Otherwise, keep the default setting CENC v1. If you choose Unencrypted SEI, for that output, the service will exclude the access unit delimiter and will leave the SEI NAL units unencrypted.
|
|
5247
5247
|
*/
|
|
5248
|
-
PlaybackDeviceCompatibility?: DashIsoPlaybackDeviceCompatibility
|
|
5248
|
+
PlaybackDeviceCompatibility?: DashIsoPlaybackDeviceCompatibility;
|
|
5249
5249
|
/**
|
|
5250
5250
|
* @public
|
|
5251
5251
|
* If your output group type is HLS, DASH, or Microsoft Smooth, use these settings when doing DRM encryption with a SPEKE-compliant key provider. If your output group type is CMAF, use the SpekeKeyProviderCmaf settings instead.
|
|
@@ -5299,7 +5299,7 @@ export interface DashIsoImageBasedTrickPlaySettings {
|
|
|
5299
5299
|
* @public
|
|
5300
5300
|
* The cadence MediaConvert follows for generating thumbnails. If set to FOLLOW_IFRAME, MediaConvert generates thumbnails for each IDR frame in the output (matching the GOP cadence). If set to FOLLOW_CUSTOM, MediaConvert generates thumbnails according to the interval you specify in thumbnailInterval.
|
|
5301
5301
|
*/
|
|
5302
|
-
IntervalCadence?: DashIsoIntervalCadence
|
|
5302
|
+
IntervalCadence?: DashIsoIntervalCadence;
|
|
5303
5303
|
/**
|
|
5304
5304
|
* @public
|
|
5305
5305
|
* Height of each thumbnail within each tile image, in pixels. Leave blank to maintain aspect ratio with thumbnail width. If following the aspect ratio would lead to a total tile height greater than 4096, then the job will be rejected. Must be divisible by 2.
|
|
@@ -5424,7 +5424,7 @@ export interface DashIsoGroupSettings {
|
|
|
5424
5424
|
* @public
|
|
5425
5425
|
* Use this setting only when your audio codec is a Dolby one (AC3, EAC3, or Atmos) and your downstream workflow requires that your DASH manifest use the Dolby channel configuration tag, rather than the MPEG one. For example, you might need to use this to make dynamic ad insertion work. Specify which audio channel configuration scheme ID URI MediaConvert writes in your DASH manifest. Keep the default value, MPEG channel configuration, to have MediaConvert write this: urn:mpeg:mpegB:cicp:ChannelConfiguration. Choose Dolby channel configuration to have MediaConvert write this instead: tag:dolby.com,2014:dash:audio_channel_configuration:2011.
|
|
5426
5426
|
*/
|
|
5427
|
-
AudioChannelConfigSchemeIdUri?: DashIsoGroupAudioChannelConfigSchemeIdUri
|
|
5427
|
+
AudioChannelConfigSchemeIdUri?: DashIsoGroupAudioChannelConfigSchemeIdUri;
|
|
5428
5428
|
/**
|
|
5429
5429
|
* @public
|
|
5430
5430
|
* A partial URI prefix that will be put in the manifest (.mpd) file at the top level BaseURL element. Can be used if streams are delivered from a different URL than the manifest file.
|
|
@@ -5434,7 +5434,7 @@ export interface DashIsoGroupSettings {
|
|
|
5434
5434
|
* @public
|
|
5435
5435
|
* Specify how MediaConvert writes SegmentTimeline in your output DASH manifest. To write a SegmentTimeline in each video Representation: Keep the default value, Basic. To write a common SegmentTimeline in the video AdaptationSet: Choose Compact. Note that MediaConvert will still write a SegmentTimeline in any Representation that does not share a common timeline. To write a video AdaptationSet for each different output framerate, and a common SegmentTimeline in each AdaptationSet: Choose Distinct.
|
|
5436
5436
|
*/
|
|
5437
|
-
DashManifestStyle?: DashManifestStyle
|
|
5437
|
+
DashManifestStyle?: DashManifestStyle;
|
|
5438
5438
|
/**
|
|
5439
5439
|
* @public
|
|
5440
5440
|
* Use Destination to specify the S3 output location and the output filename base. Destination accepts format identifiers. If you do not specify the base filename in the URI, the service will use the filename of the input file. If your job has multiple inputs, the service uses the filename of the first input file.
|
|
@@ -5459,12 +5459,12 @@ export interface DashIsoGroupSettings {
|
|
|
5459
5459
|
* @public
|
|
5460
5460
|
* Supports HbbTV specification as indicated
|
|
5461
5461
|
*/
|
|
5462
|
-
HbbtvCompliance?: DashIsoHbbtvCompliance
|
|
5462
|
+
HbbtvCompliance?: DashIsoHbbtvCompliance;
|
|
5463
5463
|
/**
|
|
5464
5464
|
* @public
|
|
5465
5465
|
* Specify whether MediaConvert generates images for trick play. Keep the default value, None, to not generate any images. Choose Thumbnail to generate tiled thumbnails. Choose Thumbnail and full frame to generate tiled thumbnails and full-resolution images of single frames. MediaConvert adds an entry in the .mpd manifest for each set of images that you generate. A common application for these images is Roku trick mode. The thumbnails and full-frame images that MediaConvert creates with this feature are compatible with this Roku specification: https://developer.roku.com/docs/developer-program/media-playback/trick-mode/hls-and-dash.md
|
|
5466
5466
|
*/
|
|
5467
|
-
ImageBasedTrickPlay?: DashIsoImageBasedTrickPlay
|
|
5467
|
+
ImageBasedTrickPlay?: DashIsoImageBasedTrickPlay;
|
|
5468
5468
|
/**
|
|
5469
5469
|
* @public
|
|
5470
5470
|
* Tile and thumbnail settings applicable when imageBasedTrickPlay is ADVANCED
|
|
@@ -5484,22 +5484,22 @@ export interface DashIsoGroupSettings {
|
|
|
5484
5484
|
* @public
|
|
5485
5485
|
* Specify how the value for bandwidth is determined for each video Representation in your output MPD manifest. We recommend that you choose a MPD manifest bandwidth type that is compatible with your downstream player configuration. Max: Use the same value that you specify for Max bitrate in the video output, in bits per second. Average: Use the calculated average bitrate of the encoded video output, in bits per second.
|
|
5486
5486
|
*/
|
|
5487
|
-
MpdManifestBandwidthType?: DashIsoMpdManifestBandwidthType
|
|
5487
|
+
MpdManifestBandwidthType?: DashIsoMpdManifestBandwidthType;
|
|
5488
5488
|
/**
|
|
5489
5489
|
* @public
|
|
5490
5490
|
* Specify whether your DASH profile is on-demand or main. When you choose Main profile, the service signals urn:mpeg:dash:profile:isoff-main:2011 in your .mpd DASH manifest. When you choose On-demand, the service signals urn:mpeg:dash:profile:isoff-on-demand:2011 in your .mpd. When you choose On-demand, you must also set the output group setting Segment control to Single file.
|
|
5491
5491
|
*/
|
|
5492
|
-
MpdProfile?: DashIsoMpdProfile
|
|
5492
|
+
MpdProfile?: DashIsoMpdProfile;
|
|
5493
5493
|
/**
|
|
5494
5494
|
* @public
|
|
5495
5495
|
* Use this setting only when your output video stream has B-frames, which causes the initial presentation time stamp (PTS) to be offset from the initial decode time stamp (DTS). Specify how MediaConvert handles PTS when writing time stamps in output DASH manifests. Choose Match initial PTS when you want MediaConvert to use the initial PTS as the first time stamp in the manifest. Choose Zero-based to have MediaConvert ignore the initial PTS in the video stream and instead write the initial time stamp as zero in the manifest. For outputs that don't have B-frames, the time stamps in your DASH manifests start at zero regardless of your choice here.
|
|
5496
5496
|
*/
|
|
5497
|
-
PtsOffsetHandlingForBFrames?: DashIsoPtsOffsetHandlingForBFrames
|
|
5497
|
+
PtsOffsetHandlingForBFrames?: DashIsoPtsOffsetHandlingForBFrames;
|
|
5498
5498
|
/**
|
|
5499
5499
|
* @public
|
|
5500
5500
|
* When set to SINGLE_FILE, a single output file is generated, which is internally segmented using the Fragment Length and Segment Length. When set to SEGMENTED_FILES, separate segment files will be created.
|
|
5501
5501
|
*/
|
|
5502
|
-
SegmentControl?: DashIsoSegmentControl
|
|
5502
|
+
SegmentControl?: DashIsoSegmentControl;
|
|
5503
5503
|
/**
|
|
5504
5504
|
* @public
|
|
5505
5505
|
* Specify the length, in whole seconds, of each segment. When you don't specify a value, MediaConvert defaults to 30. Related settings: Use Segment length control to specify whether the encoder enforces this value strictly. Use Segment control to specify whether MediaConvert creates separate segment files or one content file that has metadata to mark the segment boundaries.
|
|
@@ -5509,17 +5509,17 @@ export interface DashIsoGroupSettings {
|
|
|
5509
5509
|
* @public
|
|
5510
5510
|
* Specify how you want MediaConvert to determine the segment length. Choose Exact to have the encoder use the exact length that you specify with the setting Segment length. This might result in extra I-frames. Choose Multiple of GOP to have the encoder round up the segment lengths to match the next GOP boundary.
|
|
5511
5511
|
*/
|
|
5512
|
-
SegmentLengthControl?: DashIsoSegmentLengthControl
|
|
5512
|
+
SegmentLengthControl?: DashIsoSegmentLengthControl;
|
|
5513
5513
|
/**
|
|
5514
5514
|
* @public
|
|
5515
5515
|
* Specify the video sample composition time offset mode in the output fMP4 TRUN box. For wider player compatibility, set Video composition offsets to Unsigned or leave blank. The earliest presentation time may be greater than zero, and sample composition time offsets will increment using unsigned integers. For strict fMP4 video and audio timing, set Video composition offsets to Signed. The earliest presentation time will be equal to zero, and sample composition time offsets will increment using signed integers.
|
|
5516
5516
|
*/
|
|
5517
|
-
VideoCompositionOffsets?: DashIsoVideoCompositionOffsets
|
|
5517
|
+
VideoCompositionOffsets?: DashIsoVideoCompositionOffsets;
|
|
5518
5518
|
/**
|
|
5519
5519
|
* @public
|
|
5520
5520
|
* If you get an HTTP error in the 400 range when you play back your DASH output, enable this setting and run your transcoding job again. When you enable this setting, the service writes precise segment durations in the DASH manifest. The segment duration information appears inside the SegmentTimeline element, inside SegmentTemplate at the Representation level. When you don't enable this setting, the service writes approximate segment durations in your DASH manifest.
|
|
5521
5521
|
*/
|
|
5522
|
-
WriteSegmentTimelineInRepresentation?: DashIsoWriteSegmentTimelineInRepresentation
|
|
5522
|
+
WriteSegmentTimelineInRepresentation?: DashIsoWriteSegmentTimelineInRepresentation;
|
|
5523
5523
|
}
|
|
5524
5524
|
/**
|
|
5525
5525
|
* @public
|
|
@@ -5672,17 +5672,17 @@ export interface HlsEncryptionSettings {
|
|
|
5672
5672
|
* @public
|
|
5673
5673
|
* Encrypts the segments with the given encryption scheme. Leave blank to disable. Selecting 'Disabled' in the web interface also disables encryption.
|
|
5674
5674
|
*/
|
|
5675
|
-
EncryptionMethod?: HlsEncryptionType
|
|
5675
|
+
EncryptionMethod?: HlsEncryptionType;
|
|
5676
5676
|
/**
|
|
5677
5677
|
* @public
|
|
5678
5678
|
* The Initialization Vector is a 128-bit number used in conjunction with the key for encrypting blocks. If set to INCLUDE, Initialization Vector is listed in the manifest. Otherwise Initialization Vector is not in the manifest.
|
|
5679
5679
|
*/
|
|
5680
|
-
InitializationVectorInManifest?: HlsInitializationVectorInManifest
|
|
5680
|
+
InitializationVectorInManifest?: HlsInitializationVectorInManifest;
|
|
5681
5681
|
/**
|
|
5682
5682
|
* @public
|
|
5683
5683
|
* Enable this setting to insert the EXT-X-SESSION-KEY element into the master playlist. This allows for offline Apple HLS FairPlay content protection.
|
|
5684
5684
|
*/
|
|
5685
|
-
OfflineEncrypted?: HlsOfflineEncrypted
|
|
5685
|
+
OfflineEncrypted?: HlsOfflineEncrypted;
|
|
5686
5686
|
/**
|
|
5687
5687
|
* @public
|
|
5688
5688
|
* If your output group type is HLS, DASH, or Microsoft Smooth, use these settings when doing DRM encryption with a SPEKE-compliant key provider. If your output group type is CMAF, use the SpekeKeyProviderCmaf settings instead.
|
|
@@ -5697,7 +5697,7 @@ export interface HlsEncryptionSettings {
|
|
|
5697
5697
|
* @public
|
|
5698
5698
|
* Specify whether your DRM encryption key is static or from a key provider that follows the SPEKE standard. For more information about SPEKE, see https://docs.aws.amazon.com/speke/latest/documentation/what-is-speke.html.
|
|
5699
5699
|
*/
|
|
5700
|
-
Type?: HlsKeyProviderType
|
|
5700
|
+
Type?: HlsKeyProviderType;
|
|
5701
5701
|
}
|
|
5702
5702
|
/**
|
|
5703
5703
|
* @public
|
|
@@ -5734,7 +5734,7 @@ export interface HlsImageBasedTrickPlaySettings {
|
|
|
5734
5734
|
* @public
|
|
5735
5735
|
* The cadence MediaConvert follows for generating thumbnails. If set to FOLLOW_IFRAME, MediaConvert generates thumbnails for each IDR frame in the output (matching the GOP cadence). If set to FOLLOW_CUSTOM, MediaConvert generates thumbnails according to the interval you specify in thumbnailInterval.
|
|
5736
5736
|
*/
|
|
5737
|
-
IntervalCadence?: HlsIntervalCadence
|
|
5737
|
+
IntervalCadence?: HlsIntervalCadence;
|
|
5738
5738
|
/**
|
|
5739
5739
|
* @public
|
|
5740
5740
|
* Height of each thumbnail within each tile image, in pixels. Leave blank to maintain aspect ratio with thumbnail width. If following the aspect ratio would lead to a total tile height greater than 4096, then the job will be rejected. Must be divisible by 2.
|
|
@@ -5891,7 +5891,7 @@ export interface HlsGroupSettings {
|
|
|
5891
5891
|
* @public
|
|
5892
5892
|
* Choose one or more ad marker types to decorate your Apple HLS manifest. This setting does not determine whether SCTE-35 markers appear in the outputs themselves.
|
|
5893
5893
|
*/
|
|
5894
|
-
AdMarkers?:
|
|
5894
|
+
AdMarkers?: HlsAdMarkers[];
|
|
5895
5895
|
/**
|
|
5896
5896
|
* @public
|
|
5897
5897
|
* By default, the service creates one top-level .m3u8 HLS manifest for each HLS output group in your job. This default manifest references every output in the output group. To create additional top-level manifests that reference a subset of the outputs in the output group, specify a list of them here.
|
|
@@ -5901,7 +5901,7 @@ export interface HlsGroupSettings {
|
|
|
5901
5901
|
* @public
|
|
5902
5902
|
* Ignore this setting unless you are using FairPlay DRM with Verimatrix and you encounter playback issues. Keep the default value, Include, to output audio-only headers. Choose Exclude to remove the audio-only headers from your audio segments.
|
|
5903
5903
|
*/
|
|
5904
|
-
AudioOnlyHeader?: HlsAudioOnlyHeader
|
|
5904
|
+
AudioOnlyHeader?: HlsAudioOnlyHeader;
|
|
5905
5905
|
/**
|
|
5906
5906
|
* @public
|
|
5907
5907
|
* A partial URI prefix that will be prepended to each output in the media .m3u8 file. Can be used if base manifest is delivered from a different URL than the main .m3u8 file.
|
|
@@ -5916,22 +5916,22 @@ export interface HlsGroupSettings {
|
|
|
5916
5916
|
* @public
|
|
5917
5917
|
* Applies only to 608 Embedded output captions. Insert: Include CLOSED-CAPTIONS lines in the manifest. Specify at least one language in the CC1 Language Code field. One CLOSED-CAPTION line is added for each Language Code you specify. Make sure to specify the languages in the order in which they appear in the original source (if the source is embedded format) or the order of the caption selectors (if the source is other than embedded). Otherwise, languages in the manifest will not match up properly with the output captions. None: Include CLOSED-CAPTIONS=NONE line in the manifest. Omit: Omit any CLOSED-CAPTIONS line from the manifest.
|
|
5918
5918
|
*/
|
|
5919
|
-
CaptionLanguageSetting?: HlsCaptionLanguageSetting
|
|
5919
|
+
CaptionLanguageSetting?: HlsCaptionLanguageSetting;
|
|
5920
5920
|
/**
|
|
5921
5921
|
* @public
|
|
5922
5922
|
* Set Caption segment length control to Match video to create caption segments that align with the video segments from the first video output in this output group. For example, if the video segments are 2 seconds long, your WebVTT segments will also be 2 seconds long. Keep the default setting, Large segments to create caption segments that are 300 seconds long.
|
|
5923
5923
|
*/
|
|
5924
|
-
CaptionSegmentLengthControl?: HlsCaptionSegmentLengthControl
|
|
5924
|
+
CaptionSegmentLengthControl?: HlsCaptionSegmentLengthControl;
|
|
5925
5925
|
/**
|
|
5926
5926
|
* @public
|
|
5927
5927
|
* Disable this setting only when your workflow requires the #EXT-X-ALLOW-CACHE:no tag. Otherwise, keep the default value Enabled and control caching in your video distribution set up. For example, use the Cache-Control http header.
|
|
5928
5928
|
*/
|
|
5929
|
-
ClientCache?: HlsClientCache
|
|
5929
|
+
ClientCache?: HlsClientCache;
|
|
5930
5930
|
/**
|
|
5931
5931
|
* @public
|
|
5932
5932
|
* Specification to use (RFC-6381 or the default RFC-4281) during m3u8 playlist generation.
|
|
5933
5933
|
*/
|
|
5934
|
-
CodecSpecification?: HlsCodecSpecification
|
|
5934
|
+
CodecSpecification?: HlsCodecSpecification;
|
|
5935
5935
|
/**
|
|
5936
5936
|
* @public
|
|
5937
5937
|
* Use Destination to specify the S3 output location and the output filename base. Destination accepts format identifiers. If you do not specify the base filename in the URI, the service will use the filename of the input file. If your job has multiple inputs, the service uses the filename of the first input file.
|
|
@@ -5946,7 +5946,7 @@ export interface HlsGroupSettings {
|
|
|
5946
5946
|
* @public
|
|
5947
5947
|
* Indicates whether segments should be placed in subdirectories.
|
|
5948
5948
|
*/
|
|
5949
|
-
DirectoryStructure?: HlsDirectoryStructure
|
|
5949
|
+
DirectoryStructure?: HlsDirectoryStructure;
|
|
5950
5950
|
/**
|
|
5951
5951
|
* @public
|
|
5952
5952
|
* DRM settings.
|
|
@@ -5956,7 +5956,7 @@ export interface HlsGroupSettings {
|
|
|
5956
5956
|
* @public
|
|
5957
5957
|
* Specify whether MediaConvert generates images for trick play. Keep the default value, None, to not generate any images. Choose Thumbnail to generate tiled thumbnails. Choose Thumbnail and full frame to generate tiled thumbnails and full-resolution images of single frames. MediaConvert creates a child manifest for each set of images that you generate and adds corresponding entries to the parent manifest. A common application for these images is Roku trick mode. The thumbnails and full-frame images that MediaConvert creates with this feature are compatible with this Roku specification: https://developer.roku.com/docs/developer-program/media-playback/trick-mode/hls-and-dash.md
|
|
5958
5958
|
*/
|
|
5959
|
-
ImageBasedTrickPlay?: HlsImageBasedTrickPlay
|
|
5959
|
+
ImageBasedTrickPlay?: HlsImageBasedTrickPlay;
|
|
5960
5960
|
/**
|
|
5961
5961
|
* @public
|
|
5962
5962
|
* Tile and thumbnail settings applicable when imageBasedTrickPlay is ADVANCED
|
|
@@ -5966,12 +5966,12 @@ export interface HlsGroupSettings {
|
|
|
5966
5966
|
* @public
|
|
5967
5967
|
* When set to GZIP, compresses HLS playlist.
|
|
5968
5968
|
*/
|
|
5969
|
-
ManifestCompression?: HlsManifestCompression
|
|
5969
|
+
ManifestCompression?: HlsManifestCompression;
|
|
5970
5970
|
/**
|
|
5971
5971
|
* @public
|
|
5972
5972
|
* Indicates whether the output manifest should use floating point values for segment duration.
|
|
5973
5973
|
*/
|
|
5974
|
-
ManifestDurationFormat?: HlsManifestDurationFormat
|
|
5974
|
+
ManifestDurationFormat?: HlsManifestDurationFormat;
|
|
5975
5975
|
/**
|
|
5976
5976
|
* @public
|
|
5977
5977
|
* Keep this setting at the default value of 0, unless you are troubleshooting a problem with how devices play back the end of your video asset. If you know that player devices are hanging on the final segment of your video because the length of your final segment is too short, use this setting to specify a minimum final segment length, in seconds. Choose a value that is greater than or equal to 1 and less than your segment length. When you specify a value for this setting, the encoder will combine any final segment that is shorter than the length that you specify with the previous segment. For example, your segment length is 3 seconds and your final segment is .5 seconds without a minimum final segment length; when you set the minimum final segment length to 1, your final segment is 3.5 seconds.
|
|
@@ -5986,12 +5986,12 @@ export interface HlsGroupSettings {
|
|
|
5986
5986
|
* @public
|
|
5987
5987
|
* Indicates whether the .m3u8 manifest file should be generated for this HLS output group.
|
|
5988
5988
|
*/
|
|
5989
|
-
OutputSelection?: HlsOutputSelection
|
|
5989
|
+
OutputSelection?: HlsOutputSelection;
|
|
5990
5990
|
/**
|
|
5991
5991
|
* @public
|
|
5992
5992
|
* Includes or excludes EXT-X-PROGRAM-DATE-TIME tag in .m3u8 manifest files. The value is calculated as follows: either the program date and time are initialized using the input timecode source, or the time is initialized using the input timecode source and the date is initialized using the timestamp_offset.
|
|
5993
5993
|
*/
|
|
5994
|
-
ProgramDateTime?: HlsProgramDateTime
|
|
5994
|
+
ProgramDateTime?: HlsProgramDateTime;
|
|
5995
5995
|
/**
|
|
5996
5996
|
* @public
|
|
5997
5997
|
* Period of insertion of EXT-X-PROGRAM-DATE-TIME entry, in seconds.
|
|
@@ -6001,12 +6001,12 @@ export interface HlsGroupSettings {
|
|
|
6001
6001
|
* @public
|
|
6002
6002
|
* Specify whether MediaConvert generates HLS manifests while your job is running or when your job is complete. To generate HLS manifests while your job is running: Choose Enabled. Use if you want to play back your content as soon as it's available. MediaConvert writes the parent and child manifests after the first three media segments are written to your destination S3 bucket. It then writes new updated manifests after each additional segment is written. The parent manifest includes the latest BANDWIDTH and AVERAGE-BANDWIDTH attributes, and child manifests include the latest available media segment. When your job completes, the final child playlists include an EXT-X-ENDLIST tag. To generate HLS manifests only when your job completes: Choose Disabled.
|
|
6003
6003
|
*/
|
|
6004
|
-
ProgressiveWriteHlsManifest?: HlsProgressiveWriteHlsManifest
|
|
6004
|
+
ProgressiveWriteHlsManifest?: HlsProgressiveWriteHlsManifest;
|
|
6005
6005
|
/**
|
|
6006
6006
|
* @public
|
|
6007
6007
|
* When set to SINGLE_FILE, emits program as a single media resource (.ts) file, uses #EXT-X-BYTERANGE tags to index segment for playback.
|
|
6008
6008
|
*/
|
|
6009
|
-
SegmentControl?: HlsSegmentControl
|
|
6009
|
+
SegmentControl?: HlsSegmentControl;
|
|
6010
6010
|
/**
|
|
6011
6011
|
* @public
|
|
6012
6012
|
* Specify the length, in whole seconds, of each segment. When you don't specify a value, MediaConvert defaults to 10. Related settings: Use Segment length control to specify whether the encoder enforces this value strictly. Use Segment control to specify whether MediaConvert creates separate segment files or one content file that has metadata to mark the segment boundaries.
|
|
@@ -6016,7 +6016,7 @@ export interface HlsGroupSettings {
|
|
|
6016
6016
|
* @public
|
|
6017
6017
|
* Specify how you want MediaConvert to determine the segment length. Choose Exact to have the encoder use the exact length that you specify with the setting Segment length. This might result in extra I-frames. Choose Multiple of GOP to have the encoder round up the segment lengths to match the next GOP boundary.
|
|
6018
6018
|
*/
|
|
6019
|
-
SegmentLengthControl?: HlsSegmentLengthControl
|
|
6019
|
+
SegmentLengthControl?: HlsSegmentLengthControl;
|
|
6020
6020
|
/**
|
|
6021
6021
|
* @public
|
|
6022
6022
|
* Specify the number of segments to write to a subdirectory before starting a new one. You must also set Directory structure to Subdirectory per stream for this setting to have an effect.
|
|
@@ -6026,17 +6026,17 @@ export interface HlsGroupSettings {
|
|
|
6026
6026
|
* @public
|
|
6027
6027
|
* Include or exclude RESOLUTION attribute for video in EXT-X-STREAM-INF tag of variant manifest.
|
|
6028
6028
|
*/
|
|
6029
|
-
StreamInfResolution?: HlsStreamInfResolution
|
|
6029
|
+
StreamInfResolution?: HlsStreamInfResolution;
|
|
6030
6030
|
/**
|
|
6031
6031
|
* @public
|
|
6032
6032
|
* When set to LEGACY, the segment target duration is always rounded up to the nearest integer value above its current value in seconds. When set to SPEC\\_COMPLIANT, the segment target duration is rounded up to the nearest integer value if fraction seconds are greater than or equal to 0.5 (>= 0.5) and rounded down if less than 0.5 (< 0.5). You may need to use LEGACY if your client needs to ensure that the target duration is always longer than the actual duration of the segment. Some older players may experience interrupted playback when the actual duration of a track in a segment is longer than the target duration.
|
|
6033
6033
|
*/
|
|
6034
|
-
TargetDurationCompatibilityMode?: HlsTargetDurationCompatibilityMode
|
|
6034
|
+
TargetDurationCompatibilityMode?: HlsTargetDurationCompatibilityMode;
|
|
6035
6035
|
/**
|
|
6036
6036
|
* @public
|
|
6037
6037
|
* Specify the type of the ID3 frame to use for ID3 timestamps in your output. To include ID3 timestamps: Specify PRIV or TDRL and set ID3 metadata to Passthrough. To exclude ID3 timestamps: Set ID3 timestamp frame type to None.
|
|
6038
6038
|
*/
|
|
6039
|
-
TimedMetadataId3Frame?: HlsTimedMetadataId3Frame
|
|
6039
|
+
TimedMetadataId3Frame?: HlsTimedMetadataId3Frame;
|
|
6040
6040
|
/**
|
|
6041
6041
|
* @public
|
|
6042
6042
|
* Specify the interval in seconds to write ID3 timestamps in your output. The first timestamp starts at the output timecode and date, and increases incrementally with each ID3 timestamp. To use the default interval of 10 seconds: Leave blank. To include this metadata in your output: Set ID3 timestamp frame type to PRIV or TDRL, and set ID3 metadata to Passthrough.
|
|
@@ -6125,7 +6125,7 @@ export interface MsSmoothGroupSettings {
|
|
|
6125
6125
|
* @public
|
|
6126
6126
|
* COMBINE_DUPLICATE_STREAMS combines identical audio encoding settings across a Microsoft Smooth output group into a single audio stream.
|
|
6127
6127
|
*/
|
|
6128
|
-
AudioDeduplication?: MsSmoothAudioDeduplication
|
|
6128
|
+
AudioDeduplication?: MsSmoothAudioDeduplication;
|
|
6129
6129
|
/**
|
|
6130
6130
|
* @public
|
|
6131
6131
|
* Use Destination to specify the S3 output location and the output filename base. Destination accepts format identifiers. If you do not specify the base filename in the URI, the service will use the filename of the input file. If your job has multiple inputs, the service uses the filename of the first input file.
|
|
@@ -6150,12 +6150,12 @@ export interface MsSmoothGroupSettings {
|
|
|
6150
6150
|
* @public
|
|
6151
6151
|
* Specify how you want MediaConvert to determine the fragment length. Choose Exact to have the encoder use the exact length that you specify with the setting Fragment length. This might result in extra I-frames. Choose Multiple of GOP to have the encoder round up the segment lengths to match the next GOP boundary.
|
|
6152
6152
|
*/
|
|
6153
|
-
FragmentLengthControl?: MsSmoothFragmentLengthControl
|
|
6153
|
+
FragmentLengthControl?: MsSmoothFragmentLengthControl;
|
|
6154
6154
|
/**
|
|
6155
6155
|
* @public
|
|
6156
6156
|
* Use Manifest encoding to specify the encoding format for the server and client manifest. Valid options are utf8 and utf16.
|
|
6157
6157
|
*/
|
|
6158
|
-
ManifestEncoding?: MsSmoothManifestEncoding
|
|
6158
|
+
ManifestEncoding?: MsSmoothManifestEncoding;
|
|
6159
6159
|
}
|
|
6160
6160
|
/**
|
|
6161
6161
|
* @public
|
|
@@ -6206,7 +6206,7 @@ export interface OutputGroupSettings {
|
|
|
6206
6206
|
* @public
|
|
6207
6207
|
* Type of output group (File group, Apple HLS, DASH ISO, Microsoft Smooth Streaming, CMAF)
|
|
6208
6208
|
*/
|
|
6209
|
-
Type?: OutputGroupType
|
|
6209
|
+
Type?: OutputGroupType;
|
|
6210
6210
|
}
|
|
6211
6211
|
/**
|
|
6212
6212
|
* @public
|