@aws-sdk/client-mediaconvert 3.687.0 → 3.692.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-types/models/models_0.d.ts +623 -623
- package/dist-types/models/models_1.d.ts +573 -573
- package/dist-types/models/models_2.d.ts +128 -128
- package/dist-types/ts3.4/models/models_0.d.ts +644 -622
- package/dist-types/ts3.4/models/models_1.d.ts +579 -571
- package/dist-types/ts3.4/models/models_2.d.ts +128 -128
- package/package.json +35 -35
|
@@ -8,32 +8,32 @@ export interface OutputGroupSettings {
|
|
|
8
8
|
* Settings related to your CMAF output package. For more information, see https://docs.aws.amazon.com/mediaconvert/latest/ug/outputs-file-ABR.html.
|
|
9
9
|
* @public
|
|
10
10
|
*/
|
|
11
|
-
CmafGroupSettings?: CmafGroupSettings;
|
|
11
|
+
CmafGroupSettings?: CmafGroupSettings | undefined;
|
|
12
12
|
/**
|
|
13
13
|
* Settings related to your DASH output package. For more information, see https://docs.aws.amazon.com/mediaconvert/latest/ug/outputs-file-ABR.html.
|
|
14
14
|
* @public
|
|
15
15
|
*/
|
|
16
|
-
DashIsoGroupSettings?: DashIsoGroupSettings;
|
|
16
|
+
DashIsoGroupSettings?: DashIsoGroupSettings | undefined;
|
|
17
17
|
/**
|
|
18
18
|
* Settings related to your File output group. MediaConvert uses this group of settings to generate a single standalone file, rather than a streaming package.
|
|
19
19
|
* @public
|
|
20
20
|
*/
|
|
21
|
-
FileGroupSettings?: FileGroupSettings;
|
|
21
|
+
FileGroupSettings?: FileGroupSettings | undefined;
|
|
22
22
|
/**
|
|
23
23
|
* Settings related to your HLS output package. For more information, see https://docs.aws.amazon.com/mediaconvert/latest/ug/outputs-file-ABR.html.
|
|
24
24
|
* @public
|
|
25
25
|
*/
|
|
26
|
-
HlsGroupSettings?: HlsGroupSettings;
|
|
26
|
+
HlsGroupSettings?: HlsGroupSettings | undefined;
|
|
27
27
|
/**
|
|
28
28
|
* Settings related to your Microsoft Smooth Streaming output package. For more information, see https://docs.aws.amazon.com/mediaconvert/latest/ug/outputs-file-ABR.html.
|
|
29
29
|
* @public
|
|
30
30
|
*/
|
|
31
|
-
MsSmoothGroupSettings?: MsSmoothGroupSettings;
|
|
31
|
+
MsSmoothGroupSettings?: MsSmoothGroupSettings | undefined;
|
|
32
32
|
/**
|
|
33
33
|
* Type of output group (File group, Apple HLS, DASH ISO, Microsoft Smooth Streaming, CMAF)
|
|
34
34
|
* @public
|
|
35
35
|
*/
|
|
36
|
-
Type?: OutputGroupType;
|
|
36
|
+
Type?: OutputGroupType | undefined;
|
|
37
37
|
}
|
|
38
38
|
/**
|
|
39
39
|
* @public
|
|
@@ -166,57 +166,57 @@ export interface CmfcSettings {
|
|
|
166
166
|
* Specify this setting only when your output will be consumed by a downstream repackaging workflow that is sensitive to very small duration differences between video and audio. For this situation, choose Match video duration. In all other cases, keep the default value, Default codec duration. When you choose Match video duration, MediaConvert pads the output audio streams with silence or trims them to ensure that the total duration of each audio stream is at least as long as the total duration of the video stream. After padding or trimming, the audio stream duration is no more than one frame longer than the video stream. MediaConvert applies audio padding or trimming only to the end of the last segment of the output. For unsegmented outputs, MediaConvert adds padding only to the end of the file. When you keep the default value, any minor discrepancies between audio and video duration will depend on your output audio codec.
|
|
167
167
|
* @public
|
|
168
168
|
*/
|
|
169
|
-
AudioDuration?: CmfcAudioDuration;
|
|
169
|
+
AudioDuration?: CmfcAudioDuration | undefined;
|
|
170
170
|
/**
|
|
171
171
|
* Specify the audio rendition group for this audio rendition. Specify up to one value for each audio output in your output group. This value appears in your HLS parent manifest in the EXT-X-MEDIA tag of TYPE=AUDIO, as the value for the GROUP-ID attribute. For example, if you specify "audio_aac_1" for Audio group ID, it appears in your manifest like this: #EXT-X-MEDIA:TYPE=AUDIO,GROUP-ID="audio_aac_1". Related setting: To associate the rendition group that this audio track belongs to with a video rendition, include the same value that you provide here for that video output's setting Audio rendition sets.
|
|
172
172
|
* @public
|
|
173
173
|
*/
|
|
174
|
-
AudioGroupId?: string;
|
|
174
|
+
AudioGroupId?: string | undefined;
|
|
175
175
|
/**
|
|
176
176
|
* List the audio rendition groups that you want included with this video rendition. Use a comma-separated list. For example, say you want to include the audio rendition groups that have the audio group IDs "audio_aac_1" and "audio_dolby". Then you would specify this value: "audio_aac_1,audio_dolby". Related setting: The rendition groups that you include in your comma-separated list should all match values that you specify in the setting Audio group ID for audio renditions in the same output group as this video rendition. Default behavior: If you don't specify anything here and for Audio group ID, MediaConvert puts each audio variant in its own audio rendition group and associates it with every video variant. Each value in your list appears in your HLS parent manifest in the EXT-X-STREAM-INF tag as the value for the AUDIO attribute. To continue the previous example, say that the file name for the child manifest for your video rendition is "amazing_video_1.m3u8". Then, in your parent manifest, each value will appear on separate lines, like this: #EXT-X-STREAM-INF:AUDIO="audio_aac_1"... amazing_video_1.m3u8 #EXT-X-STREAM-INF:AUDIO="audio_dolby"... amazing_video_1.m3u8
|
|
177
177
|
* @public
|
|
178
178
|
*/
|
|
179
|
-
AudioRenditionSets?: string;
|
|
179
|
+
AudioRenditionSets?: string | undefined;
|
|
180
180
|
/**
|
|
181
181
|
* Use this setting to control the values that MediaConvert puts in your HLS parent playlist to control how the client player selects which audio track to play. Choose Audio-only variant stream (AUDIO_ONLY_VARIANT_STREAM) for any variant that you want to prohibit the client from playing with video. This causes MediaConvert to represent the variant as an EXT-X-STREAM-INF in the HLS manifest. The other options for this setting determine the values that MediaConvert writes for the DEFAULT and AUTOSELECT attributes of the EXT-X-MEDIA entry for the audio variant. For more information about these attributes, see the Apple documentation article https://developer.apple.com/documentation/http_live_streaming/example_playlists_for_http_live_streaming/adding_alternate_media_to_a_playlist. Choose Alternate audio, auto select, default to set DEFAULT=YES and AUTOSELECT=YES. Choose this value for only one variant in your output group. Choose Alternate audio, auto select, not default to set DEFAULT=NO and AUTOSELECT=YES. Choose Alternate Audio, Not Auto Select to set DEFAULT=NO and AUTOSELECT=NO. When you don't specify a value for this setting, MediaConvert defaults to Alternate audio, auto select, default. When there is more than one variant in your output group, you must explicitly choose a value for this setting.
|
|
182
182
|
* @public
|
|
183
183
|
*/
|
|
184
|
-
AudioTrackType?: CmfcAudioTrackType;
|
|
184
|
+
AudioTrackType?: CmfcAudioTrackType | undefined;
|
|
185
185
|
/**
|
|
186
186
|
* Specify whether to flag this audio track as descriptive video service (DVS) in your HLS parent manifest. When you choose Flag, MediaConvert includes the parameter CHARACTERISTICS="public.accessibility.describes-video" in the EXT-X-MEDIA entry for this track. When you keep the default choice, Don't flag, MediaConvert leaves this parameter out. The DVS flag can help with accessibility on Apple devices. For more information, see the Apple documentation.
|
|
187
187
|
* @public
|
|
188
188
|
*/
|
|
189
|
-
DescriptiveVideoServiceFlag?: CmfcDescriptiveVideoServiceFlag;
|
|
189
|
+
DescriptiveVideoServiceFlag?: CmfcDescriptiveVideoServiceFlag | undefined;
|
|
190
190
|
/**
|
|
191
191
|
* Choose Include to have MediaConvert generate an HLS child manifest that lists only the I-frames for this rendition, in addition to your regular manifest for this rendition. You might use this manifest as part of a workflow that creates preview functions for your video. MediaConvert adds both the I-frame only child manifest and the regular child manifest to the parent manifest. When you don't need the I-frame only child manifest, keep the default value Exclude.
|
|
192
192
|
* @public
|
|
193
193
|
*/
|
|
194
|
-
IFrameOnlyManifest?: CmfcIFrameOnlyManifest;
|
|
194
|
+
IFrameOnlyManifest?: CmfcIFrameOnlyManifest | undefined;
|
|
195
195
|
/**
|
|
196
196
|
* To include key-length-value metadata in this output: Set KLV metadata insertion to Passthrough. MediaConvert reads KLV metadata present in your input and writes each instance to a separate event message box in the output, according to MISB ST1910.1. To exclude this KLV metadata: Set KLV metadata insertion to None or leave blank.
|
|
197
197
|
* @public
|
|
198
198
|
*/
|
|
199
|
-
KlvMetadata?: CmfcKlvMetadata;
|
|
199
|
+
KlvMetadata?: CmfcKlvMetadata | undefined;
|
|
200
200
|
/**
|
|
201
201
|
* To add an InbandEventStream element in your output MPD manifest for each type of event message, set Manifest metadata signaling to Enabled. For ID3 event messages, the InbandEventStream element schemeIdUri will be same value that you specify for ID3 metadata scheme ID URI. For SCTE35 event messages, the InbandEventStream element schemeIdUri will be "urn:scte:scte35:2013:bin". To leave these elements out of your output MPD manifest, set Manifest metadata signaling to Disabled. To enable Manifest metadata signaling, you must also set SCTE-35 source to Passthrough, ESAM SCTE-35 to insert, or ID3 metadata to Passthrough.
|
|
202
202
|
* @public
|
|
203
203
|
*/
|
|
204
|
-
ManifestMetadataSignaling?: CmfcManifestMetadataSignaling;
|
|
204
|
+
ManifestMetadataSignaling?: CmfcManifestMetadataSignaling | undefined;
|
|
205
205
|
/**
|
|
206
206
|
* Use this setting only when you specify SCTE-35 markers from ESAM. Choose INSERT to put SCTE-35 markers in this output at the insertion points that you specify in an ESAM XML document. Provide the document in the setting SCC XML.
|
|
207
207
|
* @public
|
|
208
208
|
*/
|
|
209
|
-
Scte35Esam?: CmfcScte35Esam;
|
|
209
|
+
Scte35Esam?: CmfcScte35Esam | undefined;
|
|
210
210
|
/**
|
|
211
211
|
* Ignore this setting unless you have SCTE-35 markers in your input video file. Choose Passthrough if you want SCTE-35 markers that appear in your input to also appear in this output. Choose None if you don't want those SCTE-35 markers in this output.
|
|
212
212
|
* @public
|
|
213
213
|
*/
|
|
214
|
-
Scte35Source?: CmfcScte35Source;
|
|
214
|
+
Scte35Source?: CmfcScte35Source | undefined;
|
|
215
215
|
/**
|
|
216
216
|
* To include ID3 metadata in this output: Set ID3 metadata to Passthrough. Specify this ID3 metadata in Custom ID3 metadata inserter. MediaConvert writes each instance of ID3 metadata in a separate Event Message (eMSG) box. To exclude this ID3 metadata: Set ID3 metadata to None or leave blank.
|
|
217
217
|
* @public
|
|
218
218
|
*/
|
|
219
|
-
TimedMetadata?: CmfcTimedMetadata;
|
|
219
|
+
TimedMetadata?: CmfcTimedMetadata | undefined;
|
|
220
220
|
/**
|
|
221
221
|
* Specify the event message box (eMSG) version for ID3 timed metadata in your output.
|
|
222
222
|
* For more information, see ISO/IEC 23009-1:2022 section 5.10.3.3.3 Syntax.
|
|
@@ -224,17 +224,17 @@ export interface CmfcSettings {
|
|
|
224
224
|
* When you specify Version 1, you must also set ID3 metadata to Passthrough.
|
|
225
225
|
* @public
|
|
226
226
|
*/
|
|
227
|
-
TimedMetadataBoxVersion?: CmfcTimedMetadataBoxVersion;
|
|
227
|
+
TimedMetadataBoxVersion?: CmfcTimedMetadataBoxVersion | undefined;
|
|
228
228
|
/**
|
|
229
229
|
* Specify the event message box (eMSG) scheme ID URI for ID3 timed metadata in your output. For more information, see ISO/IEC 23009-1:2022 section 5.10.3.3.4 Semantics. Leave blank to use the default value: https://aomedia.org/emsg/ID3 When you specify a value for ID3 metadata scheme ID URI, you must also set ID3 metadata to Passthrough.
|
|
230
230
|
* @public
|
|
231
231
|
*/
|
|
232
|
-
TimedMetadataSchemeIdUri?: string;
|
|
232
|
+
TimedMetadataSchemeIdUri?: string | undefined;
|
|
233
233
|
/**
|
|
234
234
|
* Specify the event message box (eMSG) value for ID3 timed metadata in your output. For more information, see ISO/IEC 23009-1:2022 section 5.10.3.3.4 Semantics. When you specify a value for ID3 Metadata Value, you must also set ID3 metadata to Passthrough.
|
|
235
235
|
* @public
|
|
236
236
|
*/
|
|
237
|
-
TimedMetadataValue?: string;
|
|
237
|
+
TimedMetadataValue?: string | undefined;
|
|
238
238
|
}
|
|
239
239
|
/**
|
|
240
240
|
* @public
|
|
@@ -280,7 +280,7 @@ export interface F4vSettings {
|
|
|
280
280
|
* To place the MOOV atom at the beginning of your output, which is useful for progressive downloading: Leave blank or choose Progressive download. To place the MOOV at the end of your output: Choose Normal.
|
|
281
281
|
* @public
|
|
282
282
|
*/
|
|
283
|
-
MoovPlacement?: F4vMoovPlacement;
|
|
283
|
+
MoovPlacement?: F4vMoovPlacement | undefined;
|
|
284
284
|
}
|
|
285
285
|
/**
|
|
286
286
|
* @public
|
|
@@ -339,17 +339,17 @@ export interface DvbNitSettings {
|
|
|
339
339
|
* The numeric value placed in the Network Information Table (NIT).
|
|
340
340
|
* @public
|
|
341
341
|
*/
|
|
342
|
-
NetworkId?: number;
|
|
342
|
+
NetworkId?: number | undefined;
|
|
343
343
|
/**
|
|
344
344
|
* The network name text placed in the network_name_descriptor inside the Network Information Table. Maximum length is 256 characters.
|
|
345
345
|
* @public
|
|
346
346
|
*/
|
|
347
|
-
NetworkName?: string;
|
|
347
|
+
NetworkName?: string | undefined;
|
|
348
348
|
/**
|
|
349
349
|
* The number of milliseconds between instances of this table in the output transport stream.
|
|
350
350
|
* @public
|
|
351
351
|
*/
|
|
352
|
-
NitInterval?: number;
|
|
352
|
+
NitInterval?: number | undefined;
|
|
353
353
|
}
|
|
354
354
|
/**
|
|
355
355
|
* @public
|
|
@@ -374,22 +374,22 @@ export interface DvbSdtSettings {
|
|
|
374
374
|
* Selects method of inserting SDT information into output stream. "Follow input SDT" copies SDT information from input stream to output stream. "Follow input SDT if present" copies SDT information from input stream to output stream if SDT information is present in the input, otherwise it will fall back on the user-defined values. Enter "SDT Manually" means user will enter the SDT information. "No SDT" means output stream will not contain SDT information.
|
|
375
375
|
* @public
|
|
376
376
|
*/
|
|
377
|
-
OutputSdt?: OutputSdt;
|
|
377
|
+
OutputSdt?: OutputSdt | undefined;
|
|
378
378
|
/**
|
|
379
379
|
* The number of milliseconds between instances of this table in the output transport stream.
|
|
380
380
|
* @public
|
|
381
381
|
*/
|
|
382
|
-
SdtInterval?: number;
|
|
382
|
+
SdtInterval?: number | undefined;
|
|
383
383
|
/**
|
|
384
384
|
* The service name placed in the service_descriptor in the Service Description Table. Maximum length is 256 characters.
|
|
385
385
|
* @public
|
|
386
386
|
*/
|
|
387
|
-
ServiceName?: string;
|
|
387
|
+
ServiceName?: string | undefined;
|
|
388
388
|
/**
|
|
389
389
|
* The service provider name placed in the service_descriptor in the Service Description Table. Maximum length is 256 characters.
|
|
390
390
|
* @public
|
|
391
391
|
*/
|
|
392
|
-
ServiceProviderName?: string;
|
|
392
|
+
ServiceProviderName?: string | undefined;
|
|
393
393
|
}
|
|
394
394
|
/**
|
|
395
395
|
* Use these settings to insert a DVB Time and Date Table (TDT) in the transport stream of this output.
|
|
@@ -400,7 +400,7 @@ export interface DvbTdtSettings {
|
|
|
400
400
|
* The number of milliseconds between instances of this table in the output transport stream.
|
|
401
401
|
* @public
|
|
402
402
|
*/
|
|
403
|
-
TdtInterval?: number;
|
|
403
|
+
TdtInterval?: number | undefined;
|
|
404
404
|
}
|
|
405
405
|
/**
|
|
406
406
|
* @public
|
|
@@ -531,7 +531,7 @@ export interface M2tsScte35Esam {
|
|
|
531
531
|
* Packet Identifier (PID) of the SCTE-35 stream in the transport stream generated by ESAM.
|
|
532
532
|
* @public
|
|
533
533
|
*/
|
|
534
|
-
Scte35EsamPid?: number;
|
|
534
|
+
Scte35EsamPid?: number | undefined;
|
|
535
535
|
}
|
|
536
536
|
/**
|
|
537
537
|
* @public
|
|
@@ -582,212 +582,212 @@ export interface M2tsSettings {
|
|
|
582
582
|
* Selects between the DVB and ATSC buffer models for Dolby Digital audio.
|
|
583
583
|
* @public
|
|
584
584
|
*/
|
|
585
|
-
AudioBufferModel?: M2tsAudioBufferModel;
|
|
585
|
+
AudioBufferModel?: M2tsAudioBufferModel | undefined;
|
|
586
586
|
/**
|
|
587
587
|
* Specify this setting only when your output will be consumed by a downstream repackaging workflow that is sensitive to very small duration differences between video and audio. For this situation, choose Match video duration. In all other cases, keep the default value, Default codec duration. When you choose Match video duration, MediaConvert pads the output audio streams with silence or trims them to ensure that the total duration of each audio stream is at least as long as the total duration of the video stream. After padding or trimming, the audio stream duration is no more than one frame longer than the video stream. MediaConvert applies audio padding or trimming only to the end of the last segment of the output. For unsegmented outputs, MediaConvert adds padding only to the end of the file. When you keep the default value, any minor discrepancies between audio and video duration will depend on your output audio codec.
|
|
588
588
|
* @public
|
|
589
589
|
*/
|
|
590
|
-
AudioDuration?: M2tsAudioDuration;
|
|
590
|
+
AudioDuration?: M2tsAudioDuration | undefined;
|
|
591
591
|
/**
|
|
592
592
|
* The number of audio frames to insert for each PES packet.
|
|
593
593
|
* @public
|
|
594
594
|
*/
|
|
595
|
-
AudioFramesPerPes?: number;
|
|
595
|
+
AudioFramesPerPes?: number | undefined;
|
|
596
596
|
/**
|
|
597
597
|
* Specify the packet identifiers (PIDs) for any elementary audio streams you include in this output. Specify multiple PIDs as a JSON array. Default is the range 482-492.
|
|
598
598
|
* @public
|
|
599
599
|
*/
|
|
600
|
-
AudioPids?: number[];
|
|
600
|
+
AudioPids?: number[] | undefined;
|
|
601
601
|
/**
|
|
602
602
|
* Specify the output bitrate of the transport stream in bits per second. Setting to 0 lets the muxer automatically determine the appropriate bitrate. Other common values are 3750000, 7500000, and 15000000.
|
|
603
603
|
* @public
|
|
604
604
|
*/
|
|
605
|
-
Bitrate?: number;
|
|
605
|
+
Bitrate?: number | undefined;
|
|
606
606
|
/**
|
|
607
607
|
* Controls what buffer model to use for accurate interleaving. If set to MULTIPLEX, use multiplex buffer model. If set to NONE, this can lead to lower latency, but low-memory devices may not be able to play back the stream without interruptions.
|
|
608
608
|
* @public
|
|
609
609
|
*/
|
|
610
|
-
BufferModel?: M2tsBufferModel;
|
|
610
|
+
BufferModel?: M2tsBufferModel | undefined;
|
|
611
611
|
/**
|
|
612
612
|
* If you select ALIGN_TO_VIDEO, MediaConvert writes captions and data packets with Presentation Timestamp (PTS) values greater than or equal to the first video packet PTS (MediaConvert drops captions and data packets with lesser PTS values). Keep the default value to allow all PTS values.
|
|
613
613
|
* @public
|
|
614
614
|
*/
|
|
615
|
-
DataPTSControl?: M2tsDataPtsControl;
|
|
615
|
+
DataPTSControl?: M2tsDataPtsControl | undefined;
|
|
616
616
|
/**
|
|
617
617
|
* Use these settings to insert a DVB Network Information Table (NIT) in the transport stream of this output.
|
|
618
618
|
* @public
|
|
619
619
|
*/
|
|
620
|
-
DvbNitSettings?: DvbNitSettings;
|
|
620
|
+
DvbNitSettings?: DvbNitSettings | undefined;
|
|
621
621
|
/**
|
|
622
622
|
* Use these settings to insert a DVB Service Description Table (SDT) in the transport stream of this output.
|
|
623
623
|
* @public
|
|
624
624
|
*/
|
|
625
|
-
DvbSdtSettings?: DvbSdtSettings;
|
|
625
|
+
DvbSdtSettings?: DvbSdtSettings | undefined;
|
|
626
626
|
/**
|
|
627
627
|
* Specify the packet identifiers (PIDs) for DVB subtitle data included in this output. Specify multiple PIDs as a JSON array. Default is the range 460-479.
|
|
628
628
|
* @public
|
|
629
629
|
*/
|
|
630
|
-
DvbSubPids?: number[];
|
|
630
|
+
DvbSubPids?: number[] | undefined;
|
|
631
631
|
/**
|
|
632
632
|
* Use these settings to insert a DVB Time and Date Table (TDT) in the transport stream of this output.
|
|
633
633
|
* @public
|
|
634
634
|
*/
|
|
635
|
-
DvbTdtSettings?: DvbTdtSettings;
|
|
635
|
+
DvbTdtSettings?: DvbTdtSettings | undefined;
|
|
636
636
|
/**
|
|
637
637
|
* Specify the packet identifier (PID) for DVB teletext data you include in this output. Default is 499.
|
|
638
638
|
* @public
|
|
639
639
|
*/
|
|
640
|
-
DvbTeletextPid?: number;
|
|
640
|
+
DvbTeletextPid?: number | undefined;
|
|
641
641
|
/**
|
|
642
642
|
* When set to VIDEO_AND_FIXED_INTERVALS, audio EBP markers will be added to partitions 3 and 4. The interval between these additional markers will be fixed, and will be slightly shorter than the video EBP marker interval. When set to VIDEO_INTERVAL, these additional markers will not be inserted. Only applicable when EBP segmentation markers are is selected (segmentationMarkers is EBP or EBP_LEGACY).
|
|
643
643
|
* @public
|
|
644
644
|
*/
|
|
645
|
-
EbpAudioInterval?: M2tsEbpAudioInterval;
|
|
645
|
+
EbpAudioInterval?: M2tsEbpAudioInterval | undefined;
|
|
646
646
|
/**
|
|
647
647
|
* Selects which PIDs to place EBP markers on. They can either be placed only on the video PID, or on both the video PID and all audio PIDs. Only applicable when EBP segmentation markers are is selected (segmentationMarkers is EBP or EBP_LEGACY).
|
|
648
648
|
* @public
|
|
649
649
|
*/
|
|
650
|
-
EbpPlacement?: M2tsEbpPlacement;
|
|
650
|
+
EbpPlacement?: M2tsEbpPlacement | undefined;
|
|
651
651
|
/**
|
|
652
652
|
* Controls whether to include the ES Rate field in the PES header.
|
|
653
653
|
* @public
|
|
654
654
|
*/
|
|
655
|
-
EsRateInPes?: M2tsEsRateInPes;
|
|
655
|
+
EsRateInPes?: M2tsEsRateInPes | undefined;
|
|
656
656
|
/**
|
|
657
657
|
* Keep the default value unless you know that your audio EBP markers are incorrectly appearing before your video EBP markers. To correct this problem, set this value to Force.
|
|
658
658
|
* @public
|
|
659
659
|
*/
|
|
660
|
-
ForceTsVideoEbpOrder?: M2tsForceTsVideoEbpOrder;
|
|
660
|
+
ForceTsVideoEbpOrder?: M2tsForceTsVideoEbpOrder | undefined;
|
|
661
661
|
/**
|
|
662
662
|
* The length, in seconds, of each fragment. Only used with EBP markers.
|
|
663
663
|
* @public
|
|
664
664
|
*/
|
|
665
|
-
FragmentTime?: number;
|
|
665
|
+
FragmentTime?: number | undefined;
|
|
666
666
|
/**
|
|
667
667
|
* To include key-length-value metadata in this output: Set KLV metadata insertion to Passthrough. MediaConvert reads KLV metadata present in your input and passes it through to the output transport stream. To exclude this KLV metadata: Set KLV metadata insertion to None or leave blank.
|
|
668
668
|
* @public
|
|
669
669
|
*/
|
|
670
|
-
KlvMetadata?: M2tsKlvMetadata;
|
|
670
|
+
KlvMetadata?: M2tsKlvMetadata | undefined;
|
|
671
671
|
/**
|
|
672
672
|
* Specify the maximum time, in milliseconds, between Program Clock References (PCRs) inserted into the transport stream.
|
|
673
673
|
* @public
|
|
674
674
|
*/
|
|
675
|
-
MaxPcrInterval?: number;
|
|
675
|
+
MaxPcrInterval?: number | undefined;
|
|
676
676
|
/**
|
|
677
677
|
* When set, enforces that Encoder Boundary Points do not come within the specified time interval of each other by looking ahead at input video. If another EBP is going to come in within the specified time interval, the current EBP is not emitted, and the segment is "stretched" to the next marker. The lookahead value does not add latency to the system. The Live Event must be configured elsewhere to create sufficient latency to make the lookahead accurate.
|
|
678
678
|
* @public
|
|
679
679
|
*/
|
|
680
|
-
MinEbpInterval?: number;
|
|
680
|
+
MinEbpInterval?: number | undefined;
|
|
681
681
|
/**
|
|
682
682
|
* If INSERT, Nielsen inaudible tones for media tracking will be detected in the input audio and an equivalent ID3 tag will be inserted in the output.
|
|
683
683
|
* @public
|
|
684
684
|
*/
|
|
685
|
-
NielsenId3?: M2tsNielsenId3;
|
|
685
|
+
NielsenId3?: M2tsNielsenId3 | undefined;
|
|
686
686
|
/**
|
|
687
687
|
* Value in bits per second of extra null packets to insert into the transport stream. This can be used if a downstream encryption system requires periodic null packets.
|
|
688
688
|
* @public
|
|
689
689
|
*/
|
|
690
|
-
NullPacketBitrate?: number;
|
|
690
|
+
NullPacketBitrate?: number | undefined;
|
|
691
691
|
/**
|
|
692
692
|
* The number of milliseconds between instances of this table in the output transport stream.
|
|
693
693
|
* @public
|
|
694
694
|
*/
|
|
695
|
-
PatInterval?: number;
|
|
695
|
+
PatInterval?: number | undefined;
|
|
696
696
|
/**
|
|
697
697
|
* When set to PCR_EVERY_PES_PACKET, a Program Clock Reference value is inserted for every Packetized Elementary Stream (PES) header. This is effective only when the PCR PID is the same as the video or audio elementary stream.
|
|
698
698
|
* @public
|
|
699
699
|
*/
|
|
700
|
-
PcrControl?: M2tsPcrControl;
|
|
700
|
+
PcrControl?: M2tsPcrControl | undefined;
|
|
701
701
|
/**
|
|
702
702
|
* Specify the packet identifier (PID) for the program clock reference (PCR) in this output. If you do not specify a value, the service will use the value for Video PID.
|
|
703
703
|
* @public
|
|
704
704
|
*/
|
|
705
|
-
PcrPid?: number;
|
|
705
|
+
PcrPid?: number | undefined;
|
|
706
706
|
/**
|
|
707
707
|
* Specify the number of milliseconds between instances of the program map table (PMT) in the output transport stream.
|
|
708
708
|
* @public
|
|
709
709
|
*/
|
|
710
|
-
PmtInterval?: number;
|
|
710
|
+
PmtInterval?: number | undefined;
|
|
711
711
|
/**
|
|
712
712
|
* Specify the packet identifier (PID) for the program map table (PMT) itself. Default is 480.
|
|
713
713
|
* @public
|
|
714
714
|
*/
|
|
715
|
-
PmtPid?: number;
|
|
715
|
+
PmtPid?: number | undefined;
|
|
716
716
|
/**
|
|
717
717
|
* Specify whether MediaConvert automatically attempts to prevent decoder buffer underflows in your transport stream output. Use if you are seeing decoder buffer underflows in your output and are unable to increase your transport stream's bitrate. For most workflows: We recommend that you keep the default value, Disabled. To prevent decoder buffer underflows in your output, when possible: Choose Enabled. Note that if MediaConvert prevents a decoder buffer underflow in your output, output video quality is reduced and your job will take longer to complete.
|
|
718
718
|
* @public
|
|
719
719
|
*/
|
|
720
|
-
PreventBufferUnderflow?: M2tsPreventBufferUnderflow;
|
|
720
|
+
PreventBufferUnderflow?: M2tsPreventBufferUnderflow | undefined;
|
|
721
721
|
/**
|
|
722
722
|
* Specify the packet identifier (PID) of the private metadata stream. Default is 503.
|
|
723
723
|
* @public
|
|
724
724
|
*/
|
|
725
|
-
PrivateMetadataPid?: number;
|
|
725
|
+
PrivateMetadataPid?: number | undefined;
|
|
726
726
|
/**
|
|
727
727
|
* Use Program number to specify the program number used in the program map table (PMT) for this output. Default is 1. Program numbers and program map tables are parts of MPEG-2 transport stream containers, used for organizing data.
|
|
728
728
|
* @public
|
|
729
729
|
*/
|
|
730
|
-
ProgramNumber?: number;
|
|
730
|
+
ProgramNumber?: number | undefined;
|
|
731
731
|
/**
|
|
732
732
|
* Manually specify the initial PTS offset, in seconds, when you set PTS offset to Seconds. Enter an integer from 0 to 3600. Leave blank to keep the default value 2.
|
|
733
733
|
* @public
|
|
734
734
|
*/
|
|
735
|
-
PtsOffset?: number;
|
|
735
|
+
PtsOffset?: number | undefined;
|
|
736
736
|
/**
|
|
737
737
|
* Specify the initial presentation timestamp (PTS) offset for your transport stream output. To let MediaConvert automatically determine the initial PTS offset: Keep the default value, Auto. We recommend that you choose Auto for the widest player compatibility. The initial PTS will be at least two seconds and vary depending on your output's bitrate, HRD buffer size and HRD buffer initial fill percentage. To manually specify an initial PTS offset: Choose Seconds. Then specify the number of seconds with PTS offset.
|
|
738
738
|
* @public
|
|
739
739
|
*/
|
|
740
|
-
PtsOffsetMode?: TsPtsOffset;
|
|
740
|
+
PtsOffsetMode?: TsPtsOffset | undefined;
|
|
741
741
|
/**
|
|
742
742
|
* When set to CBR, inserts null packets into transport stream to fill specified bitrate. When set to VBR, the bitrate setting acts as the maximum bitrate, but the output will not be padded up to that bitrate.
|
|
743
743
|
* @public
|
|
744
744
|
*/
|
|
745
|
-
RateMode?: M2tsRateMode;
|
|
745
|
+
RateMode?: M2tsRateMode | undefined;
|
|
746
746
|
/**
|
|
747
747
|
* Include this in your job settings to put SCTE-35 markers in your HLS and transport stream outputs at the insertion points that you specify in an ESAM XML document. Provide the document in the setting SCC XML.
|
|
748
748
|
* @public
|
|
749
749
|
*/
|
|
750
|
-
Scte35Esam?: M2tsScte35Esam;
|
|
750
|
+
Scte35Esam?: M2tsScte35Esam | undefined;
|
|
751
751
|
/**
|
|
752
752
|
* Specify the packet identifier (PID) of the SCTE-35 stream in the transport stream.
|
|
753
753
|
* @public
|
|
754
754
|
*/
|
|
755
|
-
Scte35Pid?: number;
|
|
755
|
+
Scte35Pid?: number | undefined;
|
|
756
756
|
/**
|
|
757
757
|
* For SCTE-35 markers from your input-- Choose Passthrough if you want SCTE-35 markers that appear in your input to also appear in this output. Choose None if you don't want SCTE-35 markers in this output. For SCTE-35 markers from an ESAM XML document-- Choose None. Also provide the ESAM XML as a string in the setting Signal processing notification XML. Also enable ESAM SCTE-35 (include the property scte35Esam).
|
|
758
758
|
* @public
|
|
759
759
|
*/
|
|
760
|
-
Scte35Source?: M2tsScte35Source;
|
|
760
|
+
Scte35Source?: M2tsScte35Source | undefined;
|
|
761
761
|
/**
|
|
762
762
|
* Inserts segmentation markers at each segmentation_time period. rai_segstart sets the Random Access Indicator bit in the adaptation field. rai_adapt sets the RAI bit and adds the current timecode in the private data bytes. psi_segstart inserts PAT and PMT tables at the start of segments. ebp adds Encoder Boundary Point information to the adaptation field as per OpenCable specification OC-SP-EBP-I01-130118. ebp_legacy adds Encoder Boundary Point information to the adaptation field using a legacy proprietary format.
|
|
763
763
|
* @public
|
|
764
764
|
*/
|
|
765
|
-
SegmentationMarkers?: M2tsSegmentationMarkers;
|
|
765
|
+
SegmentationMarkers?: M2tsSegmentationMarkers | undefined;
|
|
766
766
|
/**
|
|
767
767
|
* The segmentation style parameter controls how segmentation markers are inserted into the transport stream. With avails, it is possible that segments may be truncated, which can influence where future segmentation markers are inserted. When a segmentation style of "reset_cadence" is selected and a segment is truncated due to an avail, we will reset the segmentation cadence. This means the subsequent segment will have a duration of of $segmentation_time seconds. When a segmentation style of "maintain_cadence" is selected and a segment is truncated due to an avail, we will not reset the segmentation cadence. This means the subsequent segment will likely be truncated as well. However, all segments after that will have a duration of $segmentation_time seconds. Note that EBP lookahead is a slight exception to this rule.
|
|
768
768
|
* @public
|
|
769
769
|
*/
|
|
770
|
-
SegmentationStyle?: M2tsSegmentationStyle;
|
|
770
|
+
SegmentationStyle?: M2tsSegmentationStyle | undefined;
|
|
771
771
|
/**
|
|
772
772
|
* Specify the length, in seconds, of each segment. Required unless markers is set to _none_.
|
|
773
773
|
* @public
|
|
774
774
|
*/
|
|
775
|
-
SegmentationTime?: number;
|
|
775
|
+
SegmentationTime?: number | undefined;
|
|
776
776
|
/**
|
|
777
777
|
* Packet Identifier (PID) of the ID3 metadata stream in the transport stream.
|
|
778
778
|
* @public
|
|
779
779
|
*/
|
|
780
|
-
TimedMetadataPid?: number;
|
|
780
|
+
TimedMetadataPid?: number | undefined;
|
|
781
781
|
/**
|
|
782
782
|
* Specify the ID for the transport stream itself in the program map table for this output. Transport stream IDs and program map tables are parts of MPEG-2 transport stream containers, used for organizing data.
|
|
783
783
|
* @public
|
|
784
784
|
*/
|
|
785
|
-
TransportStreamId?: number;
|
|
785
|
+
TransportStreamId?: number | undefined;
|
|
786
786
|
/**
|
|
787
787
|
* Specify the packet identifier (PID) of the elementary video stream in the transport stream.
|
|
788
788
|
* @public
|
|
789
789
|
*/
|
|
790
|
-
VideoPid?: number;
|
|
790
|
+
VideoPid?: number | undefined;
|
|
791
791
|
}
|
|
792
792
|
/**
|
|
793
793
|
* @public
|
|
@@ -870,107 +870,107 @@ export interface M3u8Settings {
|
|
|
870
870
|
* Specify this setting only when your output will be consumed by a downstream repackaging workflow that is sensitive to very small duration differences between video and audio. For this situation, choose Match video duration. In all other cases, keep the default value, Default codec duration. When you choose Match video duration, MediaConvert pads the output audio streams with silence or trims them to ensure that the total duration of each audio stream is at least as long as the total duration of the video stream. After padding or trimming, the audio stream duration is no more than one frame longer than the video stream. MediaConvert applies audio padding or trimming only to the end of the last segment of the output. For unsegmented outputs, MediaConvert adds padding only to the end of the file. When you keep the default value, any minor discrepancies between audio and video duration will depend on your output audio codec.
|
|
871
871
|
* @public
|
|
872
872
|
*/
|
|
873
|
-
AudioDuration?: M3u8AudioDuration;
|
|
873
|
+
AudioDuration?: M3u8AudioDuration | undefined;
|
|
874
874
|
/**
|
|
875
875
|
* The number of audio frames to insert for each PES packet.
|
|
876
876
|
* @public
|
|
877
877
|
*/
|
|
878
|
-
AudioFramesPerPes?: number;
|
|
878
|
+
AudioFramesPerPes?: number | undefined;
|
|
879
879
|
/**
|
|
880
880
|
* Packet Identifier (PID) of the elementary audio stream(s) in the transport stream. Multiple values are accepted, and can be entered in ranges and/or by comma separation.
|
|
881
881
|
* @public
|
|
882
882
|
*/
|
|
883
|
-
AudioPids?: number[];
|
|
883
|
+
AudioPids?: number[] | undefined;
|
|
884
884
|
/**
|
|
885
885
|
* If you select ALIGN_TO_VIDEO, MediaConvert writes captions and data packets with Presentation Timestamp (PTS) values greater than or equal to the first video packet PTS (MediaConvert drops captions and data packets with lesser PTS values). Keep the default value AUTO to allow all PTS values.
|
|
886
886
|
* @public
|
|
887
887
|
*/
|
|
888
|
-
DataPTSControl?: M3u8DataPtsControl;
|
|
888
|
+
DataPTSControl?: M3u8DataPtsControl | undefined;
|
|
889
889
|
/**
|
|
890
890
|
* Specify the maximum time, in milliseconds, between Program Clock References (PCRs) inserted into the transport stream.
|
|
891
891
|
* @public
|
|
892
892
|
*/
|
|
893
|
-
MaxPcrInterval?: number;
|
|
893
|
+
MaxPcrInterval?: number | undefined;
|
|
894
894
|
/**
|
|
895
895
|
* If INSERT, Nielsen inaudible tones for media tracking will be detected in the input audio and an equivalent ID3 tag will be inserted in the output.
|
|
896
896
|
* @public
|
|
897
897
|
*/
|
|
898
|
-
NielsenId3?: M3u8NielsenId3;
|
|
898
|
+
NielsenId3?: M3u8NielsenId3 | undefined;
|
|
899
899
|
/**
|
|
900
900
|
* The number of milliseconds between instances of this table in the output transport stream.
|
|
901
901
|
* @public
|
|
902
902
|
*/
|
|
903
|
-
PatInterval?: number;
|
|
903
|
+
PatInterval?: number | undefined;
|
|
904
904
|
/**
|
|
905
905
|
* When set to PCR_EVERY_PES_PACKET a Program Clock Reference value is inserted for every Packetized Elementary Stream (PES) header. This parameter is effective only when the PCR PID is the same as the video or audio elementary stream.
|
|
906
906
|
* @public
|
|
907
907
|
*/
|
|
908
|
-
PcrControl?: M3u8PcrControl;
|
|
908
|
+
PcrControl?: M3u8PcrControl | undefined;
|
|
909
909
|
/**
|
|
910
910
|
* Packet Identifier (PID) of the Program Clock Reference (PCR) in the transport stream. When no value is given, the encoder will assign the same value as the Video PID.
|
|
911
911
|
* @public
|
|
912
912
|
*/
|
|
913
|
-
PcrPid?: number;
|
|
913
|
+
PcrPid?: number | undefined;
|
|
914
914
|
/**
|
|
915
915
|
* The number of milliseconds between instances of this table in the output transport stream.
|
|
916
916
|
* @public
|
|
917
917
|
*/
|
|
918
|
-
PmtInterval?: number;
|
|
918
|
+
PmtInterval?: number | undefined;
|
|
919
919
|
/**
|
|
920
920
|
* Packet Identifier (PID) for the Program Map Table (PMT) in the transport stream.
|
|
921
921
|
* @public
|
|
922
922
|
*/
|
|
923
|
-
PmtPid?: number;
|
|
923
|
+
PmtPid?: number | undefined;
|
|
924
924
|
/**
|
|
925
925
|
* Packet Identifier (PID) of the private metadata stream in the transport stream.
|
|
926
926
|
* @public
|
|
927
927
|
*/
|
|
928
|
-
PrivateMetadataPid?: number;
|
|
928
|
+
PrivateMetadataPid?: number | undefined;
|
|
929
929
|
/**
|
|
930
930
|
* The value of the program number field in the Program Map Table.
|
|
931
931
|
* @public
|
|
932
932
|
*/
|
|
933
|
-
ProgramNumber?: number;
|
|
933
|
+
ProgramNumber?: number | undefined;
|
|
934
934
|
/**
|
|
935
935
|
* Manually specify the initial PTS offset, in seconds, when you set PTS offset to Seconds. Enter an integer from 0 to 3600. Leave blank to keep the default value 2.
|
|
936
936
|
* @public
|
|
937
937
|
*/
|
|
938
|
-
PtsOffset?: number;
|
|
938
|
+
PtsOffset?: number | undefined;
|
|
939
939
|
/**
|
|
940
940
|
* Specify the initial presentation timestamp (PTS) offset for your transport stream output. To let MediaConvert automatically determine the initial PTS offset: Keep the default value, Auto. We recommend that you choose Auto for the widest player compatibility. The initial PTS will be at least two seconds and vary depending on your output's bitrate, HRD buffer size and HRD buffer initial fill percentage. To manually specify an initial PTS offset: Choose Seconds. Then specify the number of seconds with PTS offset.
|
|
941
941
|
* @public
|
|
942
942
|
*/
|
|
943
|
-
PtsOffsetMode?: TsPtsOffset;
|
|
943
|
+
PtsOffsetMode?: TsPtsOffset | undefined;
|
|
944
944
|
/**
|
|
945
945
|
* Packet Identifier (PID) of the SCTE-35 stream in the transport stream.
|
|
946
946
|
* @public
|
|
947
947
|
*/
|
|
948
|
-
Scte35Pid?: number;
|
|
948
|
+
Scte35Pid?: number | undefined;
|
|
949
949
|
/**
|
|
950
950
|
* For SCTE-35 markers from your input-- Choose Passthrough if you want SCTE-35 markers that appear in your input to also appear in this output. Choose None if you don't want SCTE-35 markers in this output. For SCTE-35 markers from an ESAM XML document-- Choose None if you don't want manifest conditioning. Choose Passthrough and choose Ad markers if you do want manifest conditioning. In both cases, also provide the ESAM XML as a string in the setting Signal processing notification XML.
|
|
951
951
|
* @public
|
|
952
952
|
*/
|
|
953
|
-
Scte35Source?: M3u8Scte35Source;
|
|
953
|
+
Scte35Source?: M3u8Scte35Source | undefined;
|
|
954
954
|
/**
|
|
955
955
|
* Set ID3 metadata to Passthrough to include ID3 metadata in this output. This includes ID3 metadata from the following features: ID3 timestamp period, and Custom ID3 metadata inserter. To exclude this ID3 metadata in this output: set ID3 metadata to None or leave blank.
|
|
956
956
|
* @public
|
|
957
957
|
*/
|
|
958
|
-
TimedMetadata?: TimedMetadata;
|
|
958
|
+
TimedMetadata?: TimedMetadata | undefined;
|
|
959
959
|
/**
|
|
960
960
|
* Packet Identifier (PID) of the ID3 metadata stream in the transport stream.
|
|
961
961
|
* @public
|
|
962
962
|
*/
|
|
963
|
-
TimedMetadataPid?: number;
|
|
963
|
+
TimedMetadataPid?: number | undefined;
|
|
964
964
|
/**
|
|
965
965
|
* The value of the transport stream ID field in the Program Map Table.
|
|
966
966
|
* @public
|
|
967
967
|
*/
|
|
968
|
-
TransportStreamId?: number;
|
|
968
|
+
TransportStreamId?: number | undefined;
|
|
969
969
|
/**
|
|
970
970
|
* Packet Identifier (PID) of the elementary video stream in the transport stream.
|
|
971
971
|
* @public
|
|
972
972
|
*/
|
|
973
|
-
VideoPid?: number;
|
|
973
|
+
VideoPid?: number | undefined;
|
|
974
974
|
}
|
|
975
975
|
/**
|
|
976
976
|
* @public
|
|
@@ -1041,27 +1041,27 @@ export interface MovSettings {
|
|
|
1041
1041
|
* When enabled, include 'clap' atom if appropriate for the video output settings.
|
|
1042
1042
|
* @public
|
|
1043
1043
|
*/
|
|
1044
|
-
ClapAtom?: MovClapAtom;
|
|
1044
|
+
ClapAtom?: MovClapAtom | undefined;
|
|
1045
1045
|
/**
|
|
1046
1046
|
* When enabled, file composition times will start at zero, composition times in the 'ctts' (composition time to sample) box for B-frames will be negative, and a 'cslg' (composition shift least greatest) box will be included per 14496-1 amendment 1. This improves compatibility with Apple players and tools.
|
|
1047
1047
|
* @public
|
|
1048
1048
|
*/
|
|
1049
|
-
CslgAtom?: MovCslgAtom;
|
|
1049
|
+
CslgAtom?: MovCslgAtom | undefined;
|
|
1050
1050
|
/**
|
|
1051
1051
|
* When set to XDCAM, writes MPEG2 video streams into the QuickTime file using XDCAM fourcc codes. This increases compatibility with Apple editors and players, but may decrease compatibility with other players. Only applicable when the video codec is MPEG2.
|
|
1052
1052
|
* @public
|
|
1053
1053
|
*/
|
|
1054
|
-
Mpeg2FourCCControl?: MovMpeg2FourCCControl;
|
|
1054
|
+
Mpeg2FourCCControl?: MovMpeg2FourCCControl | undefined;
|
|
1055
1055
|
/**
|
|
1056
1056
|
* Unless you need Omneon compatibility: Keep the default value, None. To make this output compatible with Omneon: Choose Omneon. When you do, MediaConvert increases the length of the 'elst' edit list atom. Note that this might cause file rejections when a recipient of the output file doesn't expect this extra padding.
|
|
1057
1057
|
* @public
|
|
1058
1058
|
*/
|
|
1059
|
-
PaddingControl?: MovPaddingControl;
|
|
1059
|
+
PaddingControl?: MovPaddingControl | undefined;
|
|
1060
1060
|
/**
|
|
1061
1061
|
* Always keep the default value (SELF_CONTAINED) for this setting.
|
|
1062
1062
|
* @public
|
|
1063
1063
|
*/
|
|
1064
|
-
Reference?: MovReference;
|
|
1064
|
+
Reference?: MovReference | undefined;
|
|
1065
1065
|
}
|
|
1066
1066
|
/**
|
|
1067
1067
|
* @public
|
|
@@ -1108,32 +1108,32 @@ export interface Mp4Settings {
|
|
|
1108
1108
|
* Specify this setting only when your output will be consumed by a downstream repackaging workflow that is sensitive to very small duration differences between video and audio. For this situation, choose Match video duration. In all other cases, keep the default value, Default codec duration. When you choose Match video duration, MediaConvert pads the output audio streams with silence or trims them to ensure that the total duration of each audio stream is at least as long as the total duration of the video stream. After padding or trimming, the audio stream duration is no more than one frame longer than the video stream. MediaConvert applies audio padding or trimming only to the end of the last segment of the output. For unsegmented outputs, MediaConvert adds padding only to the end of the file. When you keep the default value, any minor discrepancies between audio and video duration will depend on your output audio codec.
|
|
1109
1109
|
* @public
|
|
1110
1110
|
*/
|
|
1111
|
-
AudioDuration?: CmfcAudioDuration;
|
|
1111
|
+
AudioDuration?: CmfcAudioDuration | undefined;
|
|
1112
1112
|
/**
|
|
1113
1113
|
* When enabled, file composition times will start at zero, composition times in the 'ctts' (composition time to sample) box for B-frames will be negative, and a 'cslg' (composition shift least greatest) box will be included per 14496-1 amendment 1. This improves compatibility with Apple players and tools.
|
|
1114
1114
|
* @public
|
|
1115
1115
|
*/
|
|
1116
|
-
CslgAtom?: Mp4CslgAtom;
|
|
1116
|
+
CslgAtom?: Mp4CslgAtom | undefined;
|
|
1117
1117
|
/**
|
|
1118
1118
|
* Ignore this setting unless compliance to the CTTS box version specification matters in your workflow. Specify a value of 1 to set your CTTS box version to 1 and make your output compliant with the specification. When you specify a value of 1, you must also set CSLG atom to the value INCLUDE. Keep the default value 0 to set your CTTS box version to 0. This can provide backward compatibility for some players and packagers.
|
|
1119
1119
|
* @public
|
|
1120
1120
|
*/
|
|
1121
|
-
CttsVersion?: number;
|
|
1121
|
+
CttsVersion?: number | undefined;
|
|
1122
1122
|
/**
|
|
1123
1123
|
* Inserts a free-space box immediately after the moov box.
|
|
1124
1124
|
* @public
|
|
1125
1125
|
*/
|
|
1126
|
-
FreeSpaceBox?: Mp4FreeSpaceBox;
|
|
1126
|
+
FreeSpaceBox?: Mp4FreeSpaceBox | undefined;
|
|
1127
1127
|
/**
|
|
1128
1128
|
* To place the MOOV atom at the beginning of your output, which is useful for progressive downloading: Leave blank or choose Progressive download. To place the MOOV at the end of your output: Choose Normal.
|
|
1129
1129
|
* @public
|
|
1130
1130
|
*/
|
|
1131
|
-
MoovPlacement?: Mp4MoovPlacement;
|
|
1131
|
+
MoovPlacement?: Mp4MoovPlacement | undefined;
|
|
1132
1132
|
/**
|
|
1133
1133
|
* Overrides the "Major Brand" field in the output file. Usually not necessary to specify.
|
|
1134
1134
|
* @public
|
|
1135
1135
|
*/
|
|
1136
|
-
Mp4MajorBrand?: string;
|
|
1136
|
+
Mp4MajorBrand?: string | undefined;
|
|
1137
1137
|
}
|
|
1138
1138
|
/**
|
|
1139
1139
|
* @public
|
|
@@ -1252,42 +1252,42 @@ export interface MpdSettings {
|
|
|
1252
1252
|
* Optional. Choose Include to have MediaConvert mark up your DASH manifest with <Accessibility> elements for embedded 608 captions. This markup isn't generally required, but some video players require it to discover and play embedded 608 captions. Keep the default value, Exclude, to leave these elements out. When you enable this setting, this is the markup that MediaConvert includes in your manifest: <Accessibility schemeIdUri="urn:scte:dash:cc:cea-608:2015" value="CC1=eng"/>
|
|
1253
1253
|
* @public
|
|
1254
1254
|
*/
|
|
1255
|
-
AccessibilityCaptionHints?: MpdAccessibilityCaptionHints;
|
|
1255
|
+
AccessibilityCaptionHints?: MpdAccessibilityCaptionHints | undefined;
|
|
1256
1256
|
/**
|
|
1257
1257
|
* Specify this setting only when your output will be consumed by a downstream repackaging workflow that is sensitive to very small duration differences between video and audio. For this situation, choose Match video duration. In all other cases, keep the default value, Default codec duration. When you choose Match video duration, MediaConvert pads the output audio streams with silence or trims them to ensure that the total duration of each audio stream is at least as long as the total duration of the video stream. After padding or trimming, the audio stream duration is no more than one frame longer than the video stream. MediaConvert applies audio padding or trimming only to the end of the last segment of the output. For unsegmented outputs, MediaConvert adds padding only to the end of the file. When you keep the default value, any minor discrepancies between audio and video duration will depend on your output audio codec.
|
|
1258
1258
|
* @public
|
|
1259
1259
|
*/
|
|
1260
|
-
AudioDuration?: MpdAudioDuration;
|
|
1260
|
+
AudioDuration?: MpdAudioDuration | undefined;
|
|
1261
1261
|
/**
|
|
1262
1262
|
* Use this setting only in DASH output groups that include sidecar TTML or IMSC captions. You specify sidecar captions in a separate output from your audio and video. Choose Raw for captions in a single XML file in a raw container. Choose Fragmented MPEG-4 for captions in XML format contained within fragmented MP4 files. This set of fragmented MP4 files is separate from your video and audio fragmented MP4 files.
|
|
1263
1263
|
* @public
|
|
1264
1264
|
*/
|
|
1265
|
-
CaptionContainerType?: MpdCaptionContainerType;
|
|
1265
|
+
CaptionContainerType?: MpdCaptionContainerType | undefined;
|
|
1266
1266
|
/**
|
|
1267
1267
|
* To include key-length-value metadata in this output: Set KLV metadata insertion to Passthrough. MediaConvert reads KLV metadata present in your input and writes each instance to a separate event message box in the output, according to MISB ST1910.1. To exclude this KLV metadata: Set KLV metadata insertion to None or leave blank.
|
|
1268
1268
|
* @public
|
|
1269
1269
|
*/
|
|
1270
|
-
KlvMetadata?: MpdKlvMetadata;
|
|
1270
|
+
KlvMetadata?: MpdKlvMetadata | undefined;
|
|
1271
1271
|
/**
|
|
1272
1272
|
* To add an InbandEventStream element in your output MPD manifest for each type of event message, set Manifest metadata signaling to Enabled. For ID3 event messages, the InbandEventStream element schemeIdUri will be same value that you specify for ID3 metadata scheme ID URI. For SCTE35 event messages, the InbandEventStream element schemeIdUri will be "urn:scte:scte35:2013:bin". To leave these elements out of your output MPD manifest, set Manifest metadata signaling to Disabled. To enable Manifest metadata signaling, you must also set SCTE-35 source to Passthrough, ESAM SCTE-35 to insert, or ID3 metadata to Passthrough.
|
|
1273
1273
|
* @public
|
|
1274
1274
|
*/
|
|
1275
|
-
ManifestMetadataSignaling?: MpdManifestMetadataSignaling;
|
|
1275
|
+
ManifestMetadataSignaling?: MpdManifestMetadataSignaling | undefined;
|
|
1276
1276
|
/**
|
|
1277
1277
|
* Use this setting only when you specify SCTE-35 markers from ESAM. Choose INSERT to put SCTE-35 markers in this output at the insertion points that you specify in an ESAM XML document. Provide the document in the setting SCC XML.
|
|
1278
1278
|
* @public
|
|
1279
1279
|
*/
|
|
1280
|
-
Scte35Esam?: MpdScte35Esam;
|
|
1280
|
+
Scte35Esam?: MpdScte35Esam | undefined;
|
|
1281
1281
|
/**
|
|
1282
1282
|
* Ignore this setting unless you have SCTE-35 markers in your input video file. Choose Passthrough if you want SCTE-35 markers that appear in your input to also appear in this output. Choose None if you don't want those SCTE-35 markers in this output.
|
|
1283
1283
|
* @public
|
|
1284
1284
|
*/
|
|
1285
|
-
Scte35Source?: MpdScte35Source;
|
|
1285
|
+
Scte35Source?: MpdScte35Source | undefined;
|
|
1286
1286
|
/**
|
|
1287
1287
|
* To include ID3 metadata in this output: Set ID3 metadata to Passthrough. Specify this ID3 metadata in Custom ID3 metadata inserter. MediaConvert writes each instance of ID3 metadata in a separate Event Message (eMSG) box. To exclude this ID3 metadata: Set ID3 metadata to None or leave blank.
|
|
1288
1288
|
* @public
|
|
1289
1289
|
*/
|
|
1290
|
-
TimedMetadata?: MpdTimedMetadata;
|
|
1290
|
+
TimedMetadata?: MpdTimedMetadata | undefined;
|
|
1291
1291
|
/**
|
|
1292
1292
|
* Specify the event message box (eMSG) version for ID3 timed metadata in your output.
|
|
1293
1293
|
* For more information, see ISO/IEC 23009-1:2022 section 5.10.3.3.3 Syntax.
|
|
@@ -1295,17 +1295,17 @@ export interface MpdSettings {
|
|
|
1295
1295
|
* When you specify Version 1, you must also set ID3 metadata to Passthrough.
|
|
1296
1296
|
* @public
|
|
1297
1297
|
*/
|
|
1298
|
-
TimedMetadataBoxVersion?: MpdTimedMetadataBoxVersion;
|
|
1298
|
+
TimedMetadataBoxVersion?: MpdTimedMetadataBoxVersion | undefined;
|
|
1299
1299
|
/**
|
|
1300
1300
|
* Specify the event message box (eMSG) scheme ID URI for ID3 timed metadata in your output. For more information, see ISO/IEC 23009-1:2022 section 5.10.3.3.4 Semantics. Leave blank to use the default value: https://aomedia.org/emsg/ID3 When you specify a value for ID3 metadata scheme ID URI, you must also set ID3 metadata to Passthrough.
|
|
1301
1301
|
* @public
|
|
1302
1302
|
*/
|
|
1303
|
-
TimedMetadataSchemeIdUri?: string;
|
|
1303
|
+
TimedMetadataSchemeIdUri?: string | undefined;
|
|
1304
1304
|
/**
|
|
1305
1305
|
* Specify the event message box (eMSG) value for ID3 timed metadata in your output. For more information, see ISO/IEC 23009-1:2022 section 5.10.3.3.4 Semantics. When you specify a value for ID3 Metadata Value, you must also set ID3 metadata to Passthrough.
|
|
1306
1306
|
* @public
|
|
1307
1307
|
*/
|
|
1308
|
-
TimedMetadataValue?: string;
|
|
1308
|
+
TimedMetadataValue?: string | undefined;
|
|
1309
1309
|
}
|
|
1310
1310
|
/**
|
|
1311
1311
|
* @public
|
|
@@ -1355,12 +1355,12 @@ export interface MxfXavcProfileSettings {
|
|
|
1355
1355
|
* To create an output that complies with the XAVC file format guidelines for interoperability, keep the default value, Drop frames for compliance. To include all frames from your input in this output, keep the default setting, Allow any duration. The number of frames that MediaConvert excludes when you set this to Drop frames for compliance depends on the output frame rate and duration.
|
|
1356
1356
|
* @public
|
|
1357
1357
|
*/
|
|
1358
|
-
DurationMode?: MxfXavcDurationMode;
|
|
1358
|
+
DurationMode?: MxfXavcDurationMode | undefined;
|
|
1359
1359
|
/**
|
|
1360
1360
|
* Specify a value for this setting only for outputs that you set up with one of these two XAVC profiles: XAVC HD Intra CBG or XAVC 4K Intra CBG. Specify the amount of space in each frame that the service reserves for ancillary data, such as teletext captions. The default value for this setting is 1492 bytes per frame. This should be sufficient to prevent overflow unless you have multiple pages of teletext captions data. If you have a large amount of teletext data, specify a larger number.
|
|
1361
1361
|
* @public
|
|
1362
1362
|
*/
|
|
1363
|
-
MaxAncDataSize?: number;
|
|
1363
|
+
MaxAncDataSize?: number | undefined;
|
|
1364
1364
|
}
|
|
1365
1365
|
/**
|
|
1366
1366
|
* These settings relate to your MXF output container.
|
|
@@ -1371,17 +1371,17 @@ export interface MxfSettings {
|
|
|
1371
1371
|
* Optional. When you have AFD signaling set up in your output video stream, use this setting to choose whether to also include it in the MXF wrapper. Choose Don't copy to exclude AFD signaling from the MXF wrapper. Choose Copy from video stream to copy the AFD values from the video stream for this output to the MXF wrapper. Regardless of which option you choose, the AFD values remain in the video stream. Related settings: To set up your output to include or exclude AFD values, see AfdSignaling, under VideoDescription. On the console, find AFD signaling under the output's video encoding settings.
|
|
1372
1372
|
* @public
|
|
1373
1373
|
*/
|
|
1374
|
-
AfdSignaling?: MxfAfdSignaling;
|
|
1374
|
+
AfdSignaling?: MxfAfdSignaling | undefined;
|
|
1375
1375
|
/**
|
|
1376
1376
|
* Specify the MXF profile, also called shim, for this output. To automatically select a profile according to your output video codec and resolution, leave blank. For a list of codecs supported with each MXF profile, see https://docs.aws.amazon.com/mediaconvert/latest/ug/codecs-supported-with-each-mxf-profile.html. For more information about the automatic selection behavior, see https://docs.aws.amazon.com/mediaconvert/latest/ug/default-automatic-selection-of-mxf-profiles.html.
|
|
1377
1377
|
* @public
|
|
1378
1378
|
*/
|
|
1379
|
-
Profile?: MxfProfile;
|
|
1379
|
+
Profile?: MxfProfile | undefined;
|
|
1380
1380
|
/**
|
|
1381
1381
|
* Specify the XAVC profile settings for MXF outputs when you set your MXF profile to XAVC.
|
|
1382
1382
|
* @public
|
|
1383
1383
|
*/
|
|
1384
|
-
XavcProfileSettings?: MxfXavcProfileSettings;
|
|
1384
|
+
XavcProfileSettings?: MxfXavcProfileSettings | undefined;
|
|
1385
1385
|
}
|
|
1386
1386
|
/**
|
|
1387
1387
|
* Container specific settings.
|
|
@@ -1392,47 +1392,47 @@ export interface ContainerSettings {
|
|
|
1392
1392
|
* These settings relate to the fragmented MP4 container for the segments in your CMAF outputs.
|
|
1393
1393
|
* @public
|
|
1394
1394
|
*/
|
|
1395
|
-
CmfcSettings?: CmfcSettings;
|
|
1395
|
+
CmfcSettings?: CmfcSettings | undefined;
|
|
1396
1396
|
/**
|
|
1397
1397
|
* Container for this output. Some containers require a container settings object. If not specified, the default object will be created.
|
|
1398
1398
|
* @public
|
|
1399
1399
|
*/
|
|
1400
|
-
Container?: ContainerType;
|
|
1400
|
+
Container?: ContainerType | undefined;
|
|
1401
1401
|
/**
|
|
1402
1402
|
* Settings for F4v container
|
|
1403
1403
|
* @public
|
|
1404
1404
|
*/
|
|
1405
|
-
F4vSettings?: F4vSettings;
|
|
1405
|
+
F4vSettings?: F4vSettings | undefined;
|
|
1406
1406
|
/**
|
|
1407
1407
|
* MPEG-2 TS container settings. These apply to outputs in a File output group when the output's container is MPEG-2 Transport Stream (M2TS). In these assets, data is organized by the program map table (PMT). Each transport stream program contains subsets of data, including audio, video, and metadata. Each of these subsets of data has a numerical label called a packet identifier (PID). Each transport stream program corresponds to one MediaConvert output. The PMT lists the types of data in a program along with their PID. Downstream systems and players use the program map table to look up the PID for each type of data it accesses and then uses the PIDs to locate specific data within the asset.
|
|
1408
1408
|
* @public
|
|
1409
1409
|
*/
|
|
1410
|
-
M2tsSettings?: M2tsSettings;
|
|
1410
|
+
M2tsSettings?: M2tsSettings | undefined;
|
|
1411
1411
|
/**
|
|
1412
1412
|
* These settings relate to the MPEG-2 transport stream (MPEG2-TS) container for the MPEG2-TS segments in your HLS outputs.
|
|
1413
1413
|
* @public
|
|
1414
1414
|
*/
|
|
1415
|
-
M3u8Settings?: M3u8Settings;
|
|
1415
|
+
M3u8Settings?: M3u8Settings | undefined;
|
|
1416
1416
|
/**
|
|
1417
1417
|
* These settings relate to your QuickTime MOV output container.
|
|
1418
1418
|
* @public
|
|
1419
1419
|
*/
|
|
1420
|
-
MovSettings?: MovSettings;
|
|
1420
|
+
MovSettings?: MovSettings | undefined;
|
|
1421
1421
|
/**
|
|
1422
1422
|
* These settings relate to your MP4 output container. You can create audio only outputs with this container. For more information, see https://docs.aws.amazon.com/mediaconvert/latest/ug/supported-codecs-containers-audio-only.html#output-codecs-and-containers-supported-for-audio-only.
|
|
1423
1423
|
* @public
|
|
1424
1424
|
*/
|
|
1425
|
-
Mp4Settings?: Mp4Settings;
|
|
1425
|
+
Mp4Settings?: Mp4Settings | undefined;
|
|
1426
1426
|
/**
|
|
1427
1427
|
* These settings relate to the fragmented MP4 container for the segments in your DASH outputs.
|
|
1428
1428
|
* @public
|
|
1429
1429
|
*/
|
|
1430
|
-
MpdSettings?: MpdSettings;
|
|
1430
|
+
MpdSettings?: MpdSettings | undefined;
|
|
1431
1431
|
/**
|
|
1432
1432
|
* These settings relate to your MXF output container.
|
|
1433
1433
|
* @public
|
|
1434
1434
|
*/
|
|
1435
|
-
MxfSettings?: MxfSettings;
|
|
1435
|
+
MxfSettings?: MxfSettings | undefined;
|
|
1436
1436
|
}
|
|
1437
1437
|
/**
|
|
1438
1438
|
* @public
|
|
@@ -1493,37 +1493,37 @@ export interface HlsSettings {
|
|
|
1493
1493
|
* Specifies the group to which the audio rendition belongs.
|
|
1494
1494
|
* @public
|
|
1495
1495
|
*/
|
|
1496
|
-
AudioGroupId?: string;
|
|
1496
|
+
AudioGroupId?: string | undefined;
|
|
1497
1497
|
/**
|
|
1498
1498
|
* Use this setting only in audio-only outputs. Choose MPEG-2 Transport Stream (M2TS) to create a file in an MPEG2-TS container. Keep the default value Automatic to create an audio-only file in a raw container. Regardless of the value that you specify here, if this output has video, the service will place the output into an MPEG2-TS container.
|
|
1499
1499
|
* @public
|
|
1500
1500
|
*/
|
|
1501
|
-
AudioOnlyContainer?: HlsAudioOnlyContainer;
|
|
1501
|
+
AudioOnlyContainer?: HlsAudioOnlyContainer | undefined;
|
|
1502
1502
|
/**
|
|
1503
1503
|
* List all the audio groups that are used with the video output stream. Input all the audio GROUP-IDs that are associated to the video, separate by ','.
|
|
1504
1504
|
* @public
|
|
1505
1505
|
*/
|
|
1506
|
-
AudioRenditionSets?: string;
|
|
1506
|
+
AudioRenditionSets?: string | undefined;
|
|
1507
1507
|
/**
|
|
1508
1508
|
* Four types of audio-only tracks are supported: Audio-Only Variant Stream The client can play back this audio-only stream instead of video in low-bandwidth scenarios. Represented as an EXT-X-STREAM-INF in the HLS manifest. Alternate Audio, Auto Select, Default Alternate rendition that the client should try to play back by default. Represented as an EXT-X-MEDIA in the HLS manifest with DEFAULT=YES, AUTOSELECT=YES Alternate Audio, Auto Select, Not Default Alternate rendition that the client may try to play back by default. Represented as an EXT-X-MEDIA in the HLS manifest with DEFAULT=NO, AUTOSELECT=YES Alternate Audio, not Auto Select Alternate rendition that the client will not try to play back by default. Represented as an EXT-X-MEDIA in the HLS manifest with DEFAULT=NO, AUTOSELECT=NO
|
|
1509
1509
|
* @public
|
|
1510
1510
|
*/
|
|
1511
|
-
AudioTrackType?: HlsAudioTrackType;
|
|
1511
|
+
AudioTrackType?: HlsAudioTrackType | undefined;
|
|
1512
1512
|
/**
|
|
1513
1513
|
* Specify whether to flag this audio track as descriptive video service (DVS) in your HLS parent manifest. When you choose Flag, MediaConvert includes the parameter CHARACTERISTICS="public.accessibility.describes-video" in the EXT-X-MEDIA entry for this track. When you keep the default choice, Don't flag, MediaConvert leaves this parameter out. The DVS flag can help with accessibility on Apple devices. For more information, see the Apple documentation.
|
|
1514
1514
|
* @public
|
|
1515
1515
|
*/
|
|
1516
|
-
DescriptiveVideoServiceFlag?: HlsDescriptiveVideoServiceFlag;
|
|
1516
|
+
DescriptiveVideoServiceFlag?: HlsDescriptiveVideoServiceFlag | undefined;
|
|
1517
1517
|
/**
|
|
1518
1518
|
* Choose Include to have MediaConvert generate a child manifest that lists only the I-frames for this rendition, in addition to your regular manifest for this rendition. You might use this manifest as part of a workflow that creates preview functions for your video. MediaConvert adds both the I-frame only child manifest and the regular child manifest to the parent manifest. When you don't need the I-frame only child manifest, keep the default value Exclude.
|
|
1519
1519
|
* @public
|
|
1520
1520
|
*/
|
|
1521
|
-
IFrameOnlyManifest?: HlsIFrameOnlyManifest;
|
|
1521
|
+
IFrameOnlyManifest?: HlsIFrameOnlyManifest | undefined;
|
|
1522
1522
|
/**
|
|
1523
1523
|
* Use this setting to add an identifying string to the filename of each segment. The service adds this string between the name modifier and segment index number. You can use format identifiers in the string. For more information, see https://docs.aws.amazon.com/mediaconvert/latest/ug/using-variables-in-your-job-settings.html
|
|
1524
1524
|
* @public
|
|
1525
1525
|
*/
|
|
1526
|
-
SegmentModifier?: string;
|
|
1526
|
+
SegmentModifier?: string | undefined;
|
|
1527
1527
|
}
|
|
1528
1528
|
/**
|
|
1529
1529
|
* Specific settings for this type of output.
|
|
@@ -1534,7 +1534,7 @@ export interface OutputSettings {
|
|
|
1534
1534
|
* Settings for HLS output groups
|
|
1535
1535
|
* @public
|
|
1536
1536
|
*/
|
|
1537
|
-
HlsSettings?: HlsSettings;
|
|
1537
|
+
HlsSettings?: HlsSettings | undefined;
|
|
1538
1538
|
}
|
|
1539
1539
|
/**
|
|
1540
1540
|
* @public
|
|
@@ -1635,12 +1635,12 @@ export interface Av1QvbrSettings {
|
|
|
1635
1635
|
* Use this setting only when you set Rate control mode to QVBR. Specify the target quality level for this output. MediaConvert determines the right number of bits to use for each part of the video to maintain the video quality that you specify. When you keep the default value, AUTO, MediaConvert picks a quality level for you, based on characteristics of your input video. If you prefer to specify a quality level, specify a number from 1 through 10. Use higher numbers for greater quality. Level 10 results in nearly lossless compression. The quality level for most broadcast-quality transcodes is between 6 and 9. Optionally, to specify a value between whole numbers, also provide a value for the setting qvbrQualityLevelFineTune. For example, if you want your QVBR quality level to be 7.33, set qvbrQualityLevel to 7 and set qvbrQualityLevelFineTune to .33.
|
|
1636
1636
|
* @public
|
|
1637
1637
|
*/
|
|
1638
|
-
QvbrQualityLevel?: number;
|
|
1638
|
+
QvbrQualityLevel?: number | undefined;
|
|
1639
1639
|
/**
|
|
1640
1640
|
* Optional. Specify a value here to set the QVBR quality to a level that is between whole numbers. For example, if you want your QVBR quality level to be 7.33, set qvbrQualityLevel to 7 and set qvbrQualityLevelFineTune to .33. MediaConvert rounds your QVBR quality level to the nearest third of a whole number. For example, if you set qvbrQualityLevel to 7 and you set qvbrQualityLevelFineTune to .25, your actual QVBR quality level is 7.33.
|
|
1641
1641
|
* @public
|
|
1642
1642
|
*/
|
|
1643
|
-
QvbrQualityLevelFineTune?: number;
|
|
1643
|
+
QvbrQualityLevelFineTune?: number | undefined;
|
|
1644
1644
|
}
|
|
1645
1645
|
/**
|
|
1646
1646
|
* @public
|
|
@@ -1674,72 +1674,72 @@ export interface Av1Settings {
|
|
|
1674
1674
|
* Specify the strength of any adaptive quantization filters that you enable. The value that you choose here applies to Spatial adaptive quantization.
|
|
1675
1675
|
* @public
|
|
1676
1676
|
*/
|
|
1677
|
-
AdaptiveQuantization?: Av1AdaptiveQuantization;
|
|
1677
|
+
AdaptiveQuantization?: Av1AdaptiveQuantization | undefined;
|
|
1678
1678
|
/**
|
|
1679
1679
|
* Specify the Bit depth. You can choose 8-bit or 10-bit.
|
|
1680
1680
|
* @public
|
|
1681
1681
|
*/
|
|
1682
|
-
BitDepth?: Av1BitDepth;
|
|
1682
|
+
BitDepth?: Av1BitDepth | undefined;
|
|
1683
1683
|
/**
|
|
1684
1684
|
* Film grain synthesis replaces film grain present in your content with similar quality synthesized AV1 film grain. We recommend that you choose Enabled to reduce the bandwidth of your QVBR quality level 5, 6, 7, or 8 outputs. For QVBR quality level 9 or 10 outputs we recommend that you keep the default value, Disabled. When you include Film grain synthesis, you cannot include the Noise reducer preprocessor.
|
|
1685
1685
|
* @public
|
|
1686
1686
|
*/
|
|
1687
|
-
FilmGrainSynthesis?: Av1FilmGrainSynthesis;
|
|
1687
|
+
FilmGrainSynthesis?: Av1FilmGrainSynthesis | undefined;
|
|
1688
1688
|
/**
|
|
1689
1689
|
* Use the Framerate setting to specify the frame rate for this output. If you want to keep the same frame rate as the input video, choose Follow source. If you want to do frame rate conversion, choose a frame rate from the dropdown list or choose Custom. The framerates shown in the dropdown list are decimal approximations of fractions. If you choose Custom, specify your frame rate as a fraction.
|
|
1690
1690
|
* @public
|
|
1691
1691
|
*/
|
|
1692
|
-
FramerateControl?: Av1FramerateControl;
|
|
1692
|
+
FramerateControl?: Av1FramerateControl | undefined;
|
|
1693
1693
|
/**
|
|
1694
1694
|
* Choose the method that you want MediaConvert to use when increasing or decreasing the frame rate. For numerically simple conversions, such as 60 fps to 30 fps: We recommend that you keep the default value, Drop duplicate. For numerically complex conversions, to avoid stutter: Choose Interpolate. This results in a smooth picture, but might introduce undesirable video artifacts. For complex frame rate conversions, especially if your source video has already been converted from its original cadence: Choose FrameFormer to do motion-compensated interpolation. FrameFormer uses the best conversion method frame by frame. Note that using FrameFormer increases the transcoding time and incurs a significant add-on cost. When you choose FrameFormer, your input video resolution must be at least 128x96.
|
|
1695
1695
|
* @public
|
|
1696
1696
|
*/
|
|
1697
|
-
FramerateConversionAlgorithm?: Av1FramerateConversionAlgorithm;
|
|
1697
|
+
FramerateConversionAlgorithm?: Av1FramerateConversionAlgorithm | undefined;
|
|
1698
1698
|
/**
|
|
1699
1699
|
* When you use the API for transcode jobs that use frame rate conversion, specify the frame rate as a fraction. For example, 24000 / 1001 = 23.976 fps. Use FramerateDenominator to specify the denominator of this fraction. In this example, use 1001 for the value of FramerateDenominator. When you use the console for transcode jobs that use frame rate conversion, provide the value as a decimal number for Framerate. In this example, specify 23.976.
|
|
1700
1700
|
* @public
|
|
1701
1701
|
*/
|
|
1702
|
-
FramerateDenominator?: number;
|
|
1702
|
+
FramerateDenominator?: number | undefined;
|
|
1703
1703
|
/**
|
|
1704
1704
|
* When you use the API for transcode jobs that use frame rate conversion, specify the frame rate as a fraction. For example, 24000 / 1001 = 23.976 fps. Use FramerateNumerator to specify the numerator of this fraction. In this example, use 24000 for the value of FramerateNumerator. When you use the console for transcode jobs that use frame rate conversion, provide the value as a decimal number for Framerate. In this example, specify 23.976.
|
|
1705
1705
|
* @public
|
|
1706
1706
|
*/
|
|
1707
|
-
FramerateNumerator?: number;
|
|
1707
|
+
FramerateNumerator?: number | undefined;
|
|
1708
1708
|
/**
|
|
1709
1709
|
* Specify the GOP length (keyframe interval) in frames. With AV1, MediaConvert doesn't support GOP length in seconds. This value must be greater than zero and preferably equal to 1 + ((numberBFrames + 1) * x), where x is an integer value.
|
|
1710
1710
|
* @public
|
|
1711
1711
|
*/
|
|
1712
|
-
GopSize?: number;
|
|
1712
|
+
GopSize?: number | undefined;
|
|
1713
1713
|
/**
|
|
1714
1714
|
* Maximum bitrate in bits/second. For example, enter five megabits per second as 5000000. Required when Rate control mode is QVBR.
|
|
1715
1715
|
* @public
|
|
1716
1716
|
*/
|
|
1717
|
-
MaxBitrate?: number;
|
|
1717
|
+
MaxBitrate?: number | undefined;
|
|
1718
1718
|
/**
|
|
1719
1719
|
* Specify from the number of B-frames, in the range of 0-15. For AV1 encoding, we recommend using 7 or 15. Choose a larger number for a lower bitrate and smaller file size; choose a smaller number for better video quality.
|
|
1720
1720
|
* @public
|
|
1721
1721
|
*/
|
|
1722
|
-
NumberBFramesBetweenReferenceFrames?: number;
|
|
1722
|
+
NumberBFramesBetweenReferenceFrames?: number | undefined;
|
|
1723
1723
|
/**
|
|
1724
1724
|
* Settings for quality-defined variable bitrate encoding with the H.265 codec. Use these settings only when you set QVBR for Rate control mode.
|
|
1725
1725
|
* @public
|
|
1726
1726
|
*/
|
|
1727
|
-
QvbrSettings?: Av1QvbrSettings;
|
|
1727
|
+
QvbrSettings?: Av1QvbrSettings | undefined;
|
|
1728
1728
|
/**
|
|
1729
1729
|
* 'With AV1 outputs, for rate control mode, MediaConvert supports only quality-defined variable bitrate (QVBR). You can''t use CBR or VBR.'
|
|
1730
1730
|
* @public
|
|
1731
1731
|
*/
|
|
1732
|
-
RateControlMode?: Av1RateControlMode;
|
|
1732
|
+
RateControlMode?: Av1RateControlMode | undefined;
|
|
1733
1733
|
/**
|
|
1734
1734
|
* Specify the number of slices per picture. This value must be 1, 2, 4, 8, 16, or 32. For progressive pictures, this value must be less than or equal to the number of macroblock rows. For interlaced pictures, this value must be less than or equal to half the number of macroblock rows.
|
|
1735
1735
|
* @public
|
|
1736
1736
|
*/
|
|
1737
|
-
Slices?: number;
|
|
1737
|
+
Slices?: number | undefined;
|
|
1738
1738
|
/**
|
|
1739
1739
|
* Keep the default value, Enabled, to adjust quantization within each frame based on spatial variation of content complexity. When you enable this feature, the encoder uses fewer bits on areas that can sustain more distortion with no noticeable visual degradation and uses more bits on areas where any small distortion will be noticeable. For example, complex textured blocks are encoded with fewer bits and smooth textured blocks are encoded with more bits. Enabling this feature will almost always improve your video quality. Note, though, that this feature doesn't take into account where the viewer's attention is likely to be. If viewers are likely to be focusing their attention on a part of the screen with a lot of complex texture, you might choose to disable this feature. Related setting: When you enable spatial adaptive quantization, set the value for Adaptive quantization depending on your content. For homogeneous content, such as cartoons and video games, set it to Low. For content with a wider variety of textures, set it to High or Higher.
|
|
1740
1740
|
* @public
|
|
1741
1741
|
*/
|
|
1742
|
-
SpatialAdaptiveQuantization?: Av1SpatialAdaptiveQuantization;
|
|
1742
|
+
SpatialAdaptiveQuantization?: Av1SpatialAdaptiveQuantization | undefined;
|
|
1743
1743
|
}
|
|
1744
1744
|
/**
|
|
1745
1745
|
* @public
|
|
@@ -1776,7 +1776,7 @@ export interface AvcIntraUhdSettings {
|
|
|
1776
1776
|
* Optional. Use Quality tuning level to choose how many transcoding passes MediaConvert does with your video. When you choose Multi-pass, your video quality is better and your output bitrate is more accurate. That is, the actual bitrate of your output is closer to the target bitrate defined in the specification. When you choose Single-pass, your encoding time is faster. The default behavior is Single-pass.
|
|
1777
1777
|
* @public
|
|
1778
1778
|
*/
|
|
1779
|
-
QualityTuningLevel?: AvcIntraUhdQualityTuningLevel;
|
|
1779
|
+
QualityTuningLevel?: AvcIntraUhdQualityTuningLevel | undefined;
|
|
1780
1780
|
}
|
|
1781
1781
|
/**
|
|
1782
1782
|
* @public
|
|
@@ -1863,52 +1863,52 @@ export interface AvcIntraSettings {
|
|
|
1863
1863
|
* Specify the AVC-Intra class of your output. The AVC-Intra class selection determines the output video bit rate depending on the frame rate of the output. Outputs with higher class values have higher bitrates and improved image quality. Note that for Class 4K/2K, MediaConvert supports only 4:2:2 chroma subsampling.
|
|
1864
1864
|
* @public
|
|
1865
1865
|
*/
|
|
1866
|
-
AvcIntraClass?: AvcIntraClass;
|
|
1866
|
+
AvcIntraClass?: AvcIntraClass | undefined;
|
|
1867
1867
|
/**
|
|
1868
1868
|
* Optional when you set AVC-Intra class to Class 4K/2K. When you set AVC-Intra class to a different value, this object isn't allowed.
|
|
1869
1869
|
* @public
|
|
1870
1870
|
*/
|
|
1871
|
-
AvcIntraUhdSettings?: AvcIntraUhdSettings;
|
|
1871
|
+
AvcIntraUhdSettings?: AvcIntraUhdSettings | undefined;
|
|
1872
1872
|
/**
|
|
1873
1873
|
* If you are using the console, use the Framerate setting to specify the frame rate for this output. If you want to keep the same frame rate as the input video, choose Follow source. If you want to do frame rate conversion, choose a frame rate from the dropdown list or choose Custom. The framerates shown in the dropdown list are decimal approximations of fractions. If you choose Custom, specify your frame rate as a fraction.
|
|
1874
1874
|
* @public
|
|
1875
1875
|
*/
|
|
1876
|
-
FramerateControl?: AvcIntraFramerateControl;
|
|
1876
|
+
FramerateControl?: AvcIntraFramerateControl | undefined;
|
|
1877
1877
|
/**
|
|
1878
1878
|
* Choose the method that you want MediaConvert to use when increasing or decreasing the frame rate. For numerically simple conversions, such as 60 fps to 30 fps: We recommend that you keep the default value, Drop duplicate. For numerically complex conversions, to avoid stutter: Choose Interpolate. This results in a smooth picture, but might introduce undesirable video artifacts. For complex frame rate conversions, especially if your source video has already been converted from its original cadence: Choose FrameFormer to do motion-compensated interpolation. FrameFormer uses the best conversion method frame by frame. Note that using FrameFormer increases the transcoding time and incurs a significant add-on cost. When you choose FrameFormer, your input video resolution must be at least 128x96.
|
|
1879
1879
|
* @public
|
|
1880
1880
|
*/
|
|
1881
|
-
FramerateConversionAlgorithm?: AvcIntraFramerateConversionAlgorithm;
|
|
1881
|
+
FramerateConversionAlgorithm?: AvcIntraFramerateConversionAlgorithm | undefined;
|
|
1882
1882
|
/**
|
|
1883
1883
|
* When you use the API for transcode jobs that use frame rate conversion, specify the frame rate as a fraction. For example, 24000 / 1001 = 23.976 fps. Use FramerateDenominator to specify the denominator of this fraction. In this example, use 1001 for the value of FramerateDenominator. When you use the console for transcode jobs that use frame rate conversion, provide the value as a decimal number for Framerate. In this example, specify 23.976.
|
|
1884
1884
|
* @public
|
|
1885
1885
|
*/
|
|
1886
|
-
FramerateDenominator?: number;
|
|
1886
|
+
FramerateDenominator?: number | undefined;
|
|
1887
1887
|
/**
|
|
1888
1888
|
* When you use the API for transcode jobs that use frame rate conversion, specify the frame rate as a fraction. For example, 24000 / 1001 = 23.976 fps. Use FramerateNumerator to specify the numerator of this fraction. In this example, use 24000 for the value of FramerateNumerator. When you use the console for transcode jobs that use frame rate conversion, provide the value as a decimal number for Framerate. In this example, specify 23.976.
|
|
1889
1889
|
* @public
|
|
1890
1890
|
*/
|
|
1891
|
-
FramerateNumerator?: number;
|
|
1891
|
+
FramerateNumerator?: number | undefined;
|
|
1892
1892
|
/**
|
|
1893
1893
|
* Choose the scan line type for the output. Keep the default value, Progressive to create a progressive output, regardless of the scan type of your input. Use Top field first or Bottom field first to create an output that's interlaced with the same field polarity throughout. Use Follow, default top or Follow, default bottom to produce outputs with the same field polarity as the source. For jobs that have multiple inputs, the output field polarity might change over the course of the output. Follow behavior depends on the input scan type. If the source is interlaced, the output will be interlaced with the same polarity as the source. If the source is progressive, the output will be interlaced with top field bottom field first, depending on which of the Follow options you choose.
|
|
1894
1894
|
* @public
|
|
1895
1895
|
*/
|
|
1896
|
-
InterlaceMode?: AvcIntraInterlaceMode;
|
|
1896
|
+
InterlaceMode?: AvcIntraInterlaceMode | undefined;
|
|
1897
1897
|
/**
|
|
1898
1898
|
* Use this setting for interlaced outputs, when your output frame rate is half of your input frame rate. In this situation, choose Optimized interlacing to create a better quality interlaced output. In this case, each progressive frame from the input corresponds to an interlaced field in the output. Keep the default value, Basic interlacing, for all other output frame rates. With basic interlacing, MediaConvert performs any frame rate conversion first and then interlaces the frames. When you choose Optimized interlacing and you set your output frame rate to a value that isn't suitable for optimized interlacing, MediaConvert automatically falls back to basic interlacing. Required settings: To use optimized interlacing, you must set Telecine to None or Soft. You can't use optimized interlacing for hard telecine outputs. You must also set Interlace mode to a value other than Progressive.
|
|
1899
1899
|
* @public
|
|
1900
1900
|
*/
|
|
1901
|
-
ScanTypeConversionMode?: AvcIntraScanTypeConversionMode;
|
|
1901
|
+
ScanTypeConversionMode?: AvcIntraScanTypeConversionMode | undefined;
|
|
1902
1902
|
/**
|
|
1903
1903
|
* Ignore this setting unless your input frame rate is 23.976 or 24 frames per second (fps). Enable slow PAL to create a 25 fps output. When you enable slow PAL, MediaConvert relabels the video frames to 25 fps and resamples your audio to keep it synchronized with the video. Note that enabling this setting will slightly reduce the duration of your video. Required settings: You must also set Framerate to 25.
|
|
1904
1904
|
* @public
|
|
1905
1905
|
*/
|
|
1906
|
-
SlowPal?: AvcIntraSlowPal;
|
|
1906
|
+
SlowPal?: AvcIntraSlowPal | undefined;
|
|
1907
1907
|
/**
|
|
1908
1908
|
* When you do frame rate conversion from 23.976 frames per second (fps) to 29.97 fps, and your output scan type is interlaced, you can optionally enable hard telecine to create a smoother picture. When you keep the default value, None, MediaConvert does a standard frame rate conversion to 29.97 without doing anything with the field polarity to create a smoother picture.
|
|
1909
1909
|
* @public
|
|
1910
1910
|
*/
|
|
1911
|
-
Telecine?: AvcIntraTelecine;
|
|
1911
|
+
Telecine?: AvcIntraTelecine | undefined;
|
|
1912
1912
|
}
|
|
1913
1913
|
/**
|
|
1914
1914
|
* @public
|
|
@@ -1942,22 +1942,22 @@ export interface FrameCaptureSettings {
|
|
|
1942
1942
|
* Frame capture will encode the first frame of the output stream, then one frame every framerateDenominator/framerateNumerator seconds. For example, settings of framerateNumerator = 1 and framerateDenominator = 3 (a rate of 1/3 frame per second) will capture the first frame, then 1 frame every 3s. Files will be named as filename.n.jpg where n is the 0-based sequence number of each Capture.
|
|
1943
1943
|
* @public
|
|
1944
1944
|
*/
|
|
1945
|
-
FramerateDenominator?: number;
|
|
1945
|
+
FramerateDenominator?: number | undefined;
|
|
1946
1946
|
/**
|
|
1947
1947
|
* Frame capture will encode the first frame of the output stream, then one frame every framerateDenominator/framerateNumerator seconds. For example, settings of framerateNumerator = 1 and framerateDenominator = 3 (a rate of 1/3 frame per second) will capture the first frame, then 1 frame every 3s. Files will be named as filename.NNNNNNN.jpg where N is the 0-based frame sequence number zero padded to 7 decimal places.
|
|
1948
1948
|
* @public
|
|
1949
1949
|
*/
|
|
1950
|
-
FramerateNumerator?: number;
|
|
1950
|
+
FramerateNumerator?: number | undefined;
|
|
1951
1951
|
/**
|
|
1952
1952
|
* Maximum number of captures (encoded jpg output files).
|
|
1953
1953
|
* @public
|
|
1954
1954
|
*/
|
|
1955
|
-
MaxCaptures?: number;
|
|
1955
|
+
MaxCaptures?: number | undefined;
|
|
1956
1956
|
/**
|
|
1957
1957
|
* JPEG Quality - a higher value equals higher quality.
|
|
1958
1958
|
* @public
|
|
1959
1959
|
*/
|
|
1960
|
-
Quality?: number;
|
|
1960
|
+
Quality?: number | undefined;
|
|
1961
1961
|
}
|
|
1962
1962
|
/**
|
|
1963
1963
|
* @public
|
|
@@ -2014,12 +2014,12 @@ export interface BandwidthReductionFilter {
|
|
|
2014
2014
|
* Optionally specify the level of sharpening to apply when you use the Bandwidth reduction filter. Sharpening adds contrast to the edges of your video content and can reduce softness. Keep the default value Off to apply no sharpening. Set Sharpening strength to Low to apply a minimal amount of sharpening, or High to apply a maximum amount of sharpening.
|
|
2015
2015
|
* @public
|
|
2016
2016
|
*/
|
|
2017
|
-
Sharpening?: BandwidthReductionFilterSharpening;
|
|
2017
|
+
Sharpening?: BandwidthReductionFilterSharpening | undefined;
|
|
2018
2018
|
/**
|
|
2019
2019
|
* Specify the strength of the Bandwidth reduction filter. For most workflows, we recommend that you choose Auto to reduce the bandwidth of your output with little to no perceptual decrease in video quality. For high quality and high bitrate outputs, choose Low. For the most bandwidth reduction, choose High. We recommend that you choose High for low bitrate outputs. Note that High may incur a slight increase in the softness of your output.
|
|
2020
2020
|
* @public
|
|
2021
2021
|
*/
|
|
2022
|
-
Strength?: BandwidthReductionFilterStrength;
|
|
2022
|
+
Strength?: BandwidthReductionFilterStrength | undefined;
|
|
2023
2023
|
}
|
|
2024
2024
|
/**
|
|
2025
2025
|
* @public
|
|
@@ -2224,17 +2224,17 @@ export interface H264QvbrSettings {
|
|
|
2224
2224
|
* Use this setting only when Rate control mode is QVBR and Quality tuning level is Multi-pass HQ. For Max average bitrate values suited to the complexity of your input video, the service limits the average bitrate of the video part of this output to the value that you choose. That is, the total size of the video element is less than or equal to the value you set multiplied by the number of seconds of encoded output.
|
|
2225
2225
|
* @public
|
|
2226
2226
|
*/
|
|
2227
|
-
MaxAverageBitrate?: number;
|
|
2227
|
+
MaxAverageBitrate?: number | undefined;
|
|
2228
2228
|
/**
|
|
2229
2229
|
* Use this setting only when you set Rate control mode to QVBR. Specify the target quality level for this output. MediaConvert determines the right number of bits to use for each part of the video to maintain the video quality that you specify. When you keep the default value, AUTO, MediaConvert picks a quality level for you, based on characteristics of your input video. If you prefer to specify a quality level, specify a number from 1 through 10. Use higher numbers for greater quality. Level 10 results in nearly lossless compression. The quality level for most broadcast-quality transcodes is between 6 and 9. Optionally, to specify a value between whole numbers, also provide a value for the setting qvbrQualityLevelFineTune. For example, if you want your QVBR quality level to be 7.33, set qvbrQualityLevel to 7 and set qvbrQualityLevelFineTune to .33.
|
|
2230
2230
|
* @public
|
|
2231
2231
|
*/
|
|
2232
|
-
QvbrQualityLevel?: number;
|
|
2232
|
+
QvbrQualityLevel?: number | undefined;
|
|
2233
2233
|
/**
|
|
2234
2234
|
* Optional. Specify a value here to set the QVBR quality to a level that is between whole numbers. For example, if you want your QVBR quality level to be 7.33, set qvbrQualityLevel to 7 and set qvbrQualityLevelFineTune to .33. MediaConvert rounds your QVBR quality level to the nearest third of a whole number. For example, if you set qvbrQualityLevel to 7 and you set qvbrQualityLevelFineTune to .25, your actual QVBR quality level is 7.33.
|
|
2235
2235
|
* @public
|
|
2236
2236
|
*/
|
|
2237
|
-
QvbrQualityLevelFineTune?: number;
|
|
2237
|
+
QvbrQualityLevelFineTune?: number | undefined;
|
|
2238
2238
|
}
|
|
2239
2239
|
/**
|
|
2240
2240
|
* @public
|
|
@@ -2380,222 +2380,222 @@ export interface H264Settings {
|
|
|
2380
2380
|
* Keep the default value, Auto, for this setting to have MediaConvert automatically apply the best types of quantization for your video content. When you want to apply your quantization settings manually, you must set H264AdaptiveQuantization to a value other than Auto. Use this setting to specify the strength of any adaptive quantization filters that you enable. If you don't want MediaConvert to do any adaptive quantization in this transcode, set Adaptive quantization to Off. Related settings: The value that you choose here applies to the following settings: H264FlickerAdaptiveQuantization, H264SpatialAdaptiveQuantization, and H264TemporalAdaptiveQuantization.
|
|
2381
2381
|
* @public
|
|
2382
2382
|
*/
|
|
2383
|
-
AdaptiveQuantization?: H264AdaptiveQuantization;
|
|
2383
|
+
AdaptiveQuantization?: H264AdaptiveQuantization | undefined;
|
|
2384
2384
|
/**
|
|
2385
2385
|
* The Bandwidth reduction filter increases the video quality of your output relative to its bitrate. Use to lower the bitrate of your constant quality QVBR output, with little or no perceptual decrease in quality. Or, use to increase the video quality of outputs with other rate control modes relative to the bitrate that you specify. Bandwidth reduction increases further when your input is low quality or noisy. Outputs that use this feature incur pro-tier pricing. When you include Bandwidth reduction filter, you cannot include the Noise reducer preprocessor.
|
|
2386
2386
|
* @public
|
|
2387
2387
|
*/
|
|
2388
|
-
BandwidthReductionFilter?: BandwidthReductionFilter;
|
|
2388
|
+
BandwidthReductionFilter?: BandwidthReductionFilter | undefined;
|
|
2389
2389
|
/**
|
|
2390
2390
|
* Specify the average bitrate in bits per second. Required for VBR and CBR. For MS Smooth outputs, bitrates must be unique when rounded down to the nearest multiple of 1000.
|
|
2391
2391
|
* @public
|
|
2392
2392
|
*/
|
|
2393
|
-
Bitrate?: number;
|
|
2393
|
+
Bitrate?: number | undefined;
|
|
2394
2394
|
/**
|
|
2395
2395
|
* Specify an H.264 level that is consistent with your output video settings. If you aren't sure what level to specify, choose Auto.
|
|
2396
2396
|
* @public
|
|
2397
2397
|
*/
|
|
2398
|
-
CodecLevel?: H264CodecLevel;
|
|
2398
|
+
CodecLevel?: H264CodecLevel | undefined;
|
|
2399
2399
|
/**
|
|
2400
2400
|
* H.264 Profile. High 4:2:2 and 10-bit profiles are only available with the AVC-I License.
|
|
2401
2401
|
* @public
|
|
2402
2402
|
*/
|
|
2403
|
-
CodecProfile?: H264CodecProfile;
|
|
2403
|
+
CodecProfile?: H264CodecProfile | undefined;
|
|
2404
2404
|
/**
|
|
2405
2405
|
* Specify whether to allow the number of B-frames in your output GOP structure to vary or not depending on your input video content. To improve the subjective video quality of your output that has high-motion content: Leave blank or keep the default value Adaptive. MediaConvert will use fewer B-frames for high-motion video content than low-motion content. The maximum number of B- frames is limited by the value that you choose for B-frames between reference frames. To use the same number B-frames for all types of content: Choose Static.
|
|
2406
2406
|
* @public
|
|
2407
2407
|
*/
|
|
2408
|
-
DynamicSubGop?: H264DynamicSubGop;
|
|
2408
|
+
DynamicSubGop?: H264DynamicSubGop | undefined;
|
|
2409
2409
|
/**
|
|
2410
2410
|
* Optionally include or suppress markers at the end of your output that signal the end of the video stream. To include end of stream markers: Leave blank or keep the default value, Include. To not include end of stream markers: Choose Suppress. This is useful when your output will be inserted into another stream.
|
|
2411
2411
|
* @public
|
|
2412
2412
|
*/
|
|
2413
|
-
EndOfStreamMarkers?: H264EndOfStreamMarkers;
|
|
2413
|
+
EndOfStreamMarkers?: H264EndOfStreamMarkers | undefined;
|
|
2414
2414
|
/**
|
|
2415
2415
|
* Entropy encoding mode. Use CABAC (must be in Main or High profile) or CAVLC.
|
|
2416
2416
|
* @public
|
|
2417
2417
|
*/
|
|
2418
|
-
EntropyEncoding?: H264EntropyEncoding;
|
|
2418
|
+
EntropyEncoding?: H264EntropyEncoding | undefined;
|
|
2419
2419
|
/**
|
|
2420
2420
|
* The video encoding method for your MPEG-4 AVC output. Keep the default value, PAFF, to have MediaConvert use PAFF encoding for interlaced outputs. Choose Force field to disable PAFF encoding and create separate interlaced fields. Choose MBAFF to disable PAFF and have MediaConvert use MBAFF encoding for interlaced outputs.
|
|
2421
2421
|
* @public
|
|
2422
2422
|
*/
|
|
2423
|
-
FieldEncoding?: H264FieldEncoding;
|
|
2423
|
+
FieldEncoding?: H264FieldEncoding | undefined;
|
|
2424
2424
|
/**
|
|
2425
2425
|
* Only use this setting when you change the default value, AUTO, for the setting H264AdaptiveQuantization. When you keep all defaults, excluding H264AdaptiveQuantization and all other adaptive quantization from your JSON job specification, MediaConvert automatically applies the best types of quantization for your video content. When you set H264AdaptiveQuantization to a value other than AUTO, the default value for H264FlickerAdaptiveQuantization is Disabled. Change this value to Enabled to reduce I-frame pop. I-frame pop appears as a visual flicker that can arise when the encoder saves bits by copying some macroblocks many times from frame to frame, and then refreshes them at the I-frame. When you enable this setting, the encoder updates these macroblocks slightly more often to smooth out the flicker. To manually enable or disable H264FlickerAdaptiveQuantization, you must set Adaptive quantization to a value other than AUTO.
|
|
2426
2426
|
* @public
|
|
2427
2427
|
*/
|
|
2428
|
-
FlickerAdaptiveQuantization?: H264FlickerAdaptiveQuantization;
|
|
2428
|
+
FlickerAdaptiveQuantization?: H264FlickerAdaptiveQuantization | undefined;
|
|
2429
2429
|
/**
|
|
2430
2430
|
* If you are using the console, use the Framerate setting to specify the frame rate for this output. If you want to keep the same frame rate as the input video, choose Follow source. If you want to do frame rate conversion, choose a frame rate from the dropdown list or choose Custom. The framerates shown in the dropdown list are decimal approximations of fractions. If you choose Custom, specify your frame rate as a fraction.
|
|
2431
2431
|
* @public
|
|
2432
2432
|
*/
|
|
2433
|
-
FramerateControl?: H264FramerateControl;
|
|
2433
|
+
FramerateControl?: H264FramerateControl | undefined;
|
|
2434
2434
|
/**
|
|
2435
2435
|
* Choose the method that you want MediaConvert to use when increasing or decreasing the frame rate. For numerically simple conversions, such as 60 fps to 30 fps: We recommend that you keep the default value, Drop duplicate. For numerically complex conversions, to avoid stutter: Choose Interpolate. This results in a smooth picture, but might introduce undesirable video artifacts. For complex frame rate conversions, especially if your source video has already been converted from its original cadence: Choose FrameFormer to do motion-compensated interpolation. FrameFormer uses the best conversion method frame by frame. Note that using FrameFormer increases the transcoding time and incurs a significant add-on cost. When you choose FrameFormer, your input video resolution must be at least 128x96.
|
|
2436
2436
|
* @public
|
|
2437
2437
|
*/
|
|
2438
|
-
FramerateConversionAlgorithm?: H264FramerateConversionAlgorithm;
|
|
2438
|
+
FramerateConversionAlgorithm?: H264FramerateConversionAlgorithm | undefined;
|
|
2439
2439
|
/**
|
|
2440
2440
|
* When you use the API for transcode jobs that use frame rate conversion, specify the frame rate as a fraction. For example, 24000 / 1001 = 23.976 fps. Use FramerateDenominator to specify the denominator of this fraction. In this example, use 1001 for the value of FramerateDenominator. When you use the console for transcode jobs that use frame rate conversion, provide the value as a decimal number for Framerate. In this example, specify 23.976.
|
|
2441
2441
|
* @public
|
|
2442
2442
|
*/
|
|
2443
|
-
FramerateDenominator?: number;
|
|
2443
|
+
FramerateDenominator?: number | undefined;
|
|
2444
2444
|
/**
|
|
2445
2445
|
* When you use the API for transcode jobs that use frame rate conversion, specify the frame rate as a fraction. For example, 24000 / 1001 = 23.976 fps. Use FramerateNumerator to specify the numerator of this fraction. In this example, use 24000 for the value of FramerateNumerator. When you use the console for transcode jobs that use frame rate conversion, provide the value as a decimal number for Framerate. In this example, specify 23.976.
|
|
2446
2446
|
* @public
|
|
2447
2447
|
*/
|
|
2448
|
-
FramerateNumerator?: number;
|
|
2448
|
+
FramerateNumerator?: number | undefined;
|
|
2449
2449
|
/**
|
|
2450
2450
|
* Specify whether to allow B-frames to be referenced by other frame types. To use reference B-frames when your GOP structure has 1 or more B-frames: Leave blank or keep the default value Enabled. We recommend that you choose Enabled to help improve the video quality of your output relative to its bitrate. To not use reference B-frames: Choose Disabled.
|
|
2451
2451
|
* @public
|
|
2452
2452
|
*/
|
|
2453
|
-
GopBReference?: H264GopBReference;
|
|
2453
|
+
GopBReference?: H264GopBReference | undefined;
|
|
2454
2454
|
/**
|
|
2455
2455
|
* Specify the relative frequency of open to closed GOPs in this output. For example, if you want to allow four open GOPs and then require a closed GOP, set this value to 5. We recommend that you have the transcoder automatically choose this value for you based on characteristics of your input video. In the console, do this by keeping the default empty value. If you do explicitly specify a value, for segmented outputs, don't set this value to 0.
|
|
2456
2456
|
* @public
|
|
2457
2457
|
*/
|
|
2458
|
-
GopClosedCadence?: number;
|
|
2458
|
+
GopClosedCadence?: number | undefined;
|
|
2459
2459
|
/**
|
|
2460
2460
|
* Use this setting only when you set GOP mode control to Specified, frames or Specified, seconds. Specify the GOP length using a whole number of frames or a decimal value of seconds. MediaConvert will interpret this value as frames or seconds depending on the value you choose for GOP mode control. If you want to allow MediaConvert to automatically determine GOP size, leave GOP size blank and set GOP mode control to Auto. If your output group specifies HLS, DASH, or CMAF, leave GOP size blank and set GOP mode control to Auto in each output in your output group.
|
|
2461
2461
|
* @public
|
|
2462
2462
|
*/
|
|
2463
|
-
GopSize?: number;
|
|
2463
|
+
GopSize?: number | undefined;
|
|
2464
2464
|
/**
|
|
2465
2465
|
* Specify how the transcoder determines GOP size for this output. We recommend that you have the transcoder automatically choose this value for you based on characteristics of your input video. To enable this automatic behavior, choose Auto and and leave GOP size blank. By default, if you don't specify GOP mode control, MediaConvert will use automatic behavior. If your output group specifies HLS, DASH, or CMAF, set GOP mode control to Auto and leave GOP size blank in each output in your output group. To explicitly specify the GOP length, choose Specified, frames or Specified, seconds and then provide the GOP length in the related setting GOP size.
|
|
2466
2466
|
* @public
|
|
2467
2467
|
*/
|
|
2468
|
-
GopSizeUnits?: H264GopSizeUnits;
|
|
2468
|
+
GopSizeUnits?: H264GopSizeUnits | undefined;
|
|
2469
2469
|
/**
|
|
2470
2470
|
* If your downstream systems have strict buffer requirements: Specify the minimum percentage of the HRD buffer that's available at the end of each encoded video segment. For the best video quality: Set to 0 or leave blank to automatically determine the final buffer fill percentage.
|
|
2471
2471
|
* @public
|
|
2472
2472
|
*/
|
|
2473
|
-
HrdBufferFinalFillPercentage?: number;
|
|
2473
|
+
HrdBufferFinalFillPercentage?: number | undefined;
|
|
2474
2474
|
/**
|
|
2475
2475
|
* Percentage of the buffer that should initially be filled (HRD buffer model).
|
|
2476
2476
|
* @public
|
|
2477
2477
|
*/
|
|
2478
|
-
HrdBufferInitialFillPercentage?: number;
|
|
2478
|
+
HrdBufferInitialFillPercentage?: number | undefined;
|
|
2479
2479
|
/**
|
|
2480
2480
|
* Size of buffer (HRD buffer model) in bits. For example, enter five megabits as 5000000.
|
|
2481
2481
|
* @public
|
|
2482
2482
|
*/
|
|
2483
|
-
HrdBufferSize?: number;
|
|
2483
|
+
HrdBufferSize?: number | undefined;
|
|
2484
2484
|
/**
|
|
2485
2485
|
* Choose the scan line type for the output. Keep the default value, Progressive to create a progressive output, regardless of the scan type of your input. Use Top field first or Bottom field first to create an output that's interlaced with the same field polarity throughout. Use Follow, default top or Follow, default bottom to produce outputs with the same field polarity as the source. For jobs that have multiple inputs, the output field polarity might change over the course of the output. Follow behavior depends on the input scan type. If the source is interlaced, the output will be interlaced with the same polarity as the source. If the source is progressive, the output will be interlaced with top field bottom field first, depending on which of the Follow options you choose.
|
|
2486
2486
|
* @public
|
|
2487
2487
|
*/
|
|
2488
|
-
InterlaceMode?: H264InterlaceMode;
|
|
2488
|
+
InterlaceMode?: H264InterlaceMode | undefined;
|
|
2489
2489
|
/**
|
|
2490
2490
|
* Maximum bitrate in bits/second. For example, enter five megabits per second as 5000000. Required when Rate control mode is QVBR.
|
|
2491
2491
|
* @public
|
|
2492
2492
|
*/
|
|
2493
|
-
MaxBitrate?: number;
|
|
2493
|
+
MaxBitrate?: number | undefined;
|
|
2494
2494
|
/**
|
|
2495
2495
|
* Specify the minimum number of frames allowed between two IDR-frames in your output. This includes frames created at the start of a GOP or a scene change. Use Min I-Interval to improve video compression by varying GOP size when two IDR-frames would be created near each other. For example, if a regular cadence-driven IDR-frame would fall within 5 frames of a scene-change IDR-frame, and you set Min I-interval to 5, then the encoder would only write an IDR-frame for the scene-change. In this way, one GOP is shortened or extended. If a cadence-driven IDR-frame would be further than 5 frames from a scene-change IDR-frame, then the encoder leaves all IDR-frames in place. To use an automatically determined interval: We recommend that you keep this value blank. This allows for MediaConvert to use an optimal setting according to the characteristics of your input video, and results in better video compression. To manually specify an interval: Enter a value from 1 to 30. Use when your downstream systems have specific GOP size requirements. To disable GOP size variance: Enter 0. MediaConvert will only create IDR-frames at the start of your output's cadence-driven GOP. Use when your downstream systems require a regular GOP size.
|
|
2496
2496
|
* @public
|
|
2497
2497
|
*/
|
|
2498
|
-
MinIInterval?: number;
|
|
2498
|
+
MinIInterval?: number | undefined;
|
|
2499
2499
|
/**
|
|
2500
2500
|
* Specify the number of B-frames between reference frames in this output. For the best video quality: Leave blank. MediaConvert automatically determines the number of B-frames to use based on the characteristics of your input video. To manually specify the number of B-frames between reference frames: Enter an integer from 0 to 7.
|
|
2501
2501
|
* @public
|
|
2502
2502
|
*/
|
|
2503
|
-
NumberBFramesBetweenReferenceFrames?: number;
|
|
2503
|
+
NumberBFramesBetweenReferenceFrames?: number | undefined;
|
|
2504
2504
|
/**
|
|
2505
2505
|
* Number of reference frames to use. The encoder may use more than requested if using B-frames and/or interlaced encoding.
|
|
2506
2506
|
* @public
|
|
2507
2507
|
*/
|
|
2508
|
-
NumberReferenceFrames?: number;
|
|
2508
|
+
NumberReferenceFrames?: number | undefined;
|
|
2509
2509
|
/**
|
|
2510
2510
|
* Optional. Specify how the service determines the pixel aspect ratio (PAR) for this output. The default behavior, Follow source, uses the PAR from your input video for your output. To specify a different PAR in the console, choose any value other than Follow source. When you choose SPECIFIED for this setting, you must also specify values for the parNumerator and parDenominator settings.
|
|
2511
2511
|
* @public
|
|
2512
2512
|
*/
|
|
2513
|
-
ParControl?: H264ParControl;
|
|
2513
|
+
ParControl?: H264ParControl | undefined;
|
|
2514
2514
|
/**
|
|
2515
2515
|
* Required when you set Pixel aspect ratio to SPECIFIED. On the console, this corresponds to any value other than Follow source. When you specify an output pixel aspect ratio (PAR) that is different from your input video PAR, provide your output PAR as a ratio. For example, for D1/DV NTSC widescreen, you would specify the ratio 40:33. In this example, the value for parDenominator is 33.
|
|
2516
2516
|
* @public
|
|
2517
2517
|
*/
|
|
2518
|
-
ParDenominator?: number;
|
|
2518
|
+
ParDenominator?: number | undefined;
|
|
2519
2519
|
/**
|
|
2520
2520
|
* Required when you set Pixel aspect ratio to SPECIFIED. On the console, this corresponds to any value other than Follow source. When you specify an output pixel aspect ratio (PAR) that is different from your input video PAR, provide your output PAR as a ratio. For example, for D1/DV NTSC widescreen, you would specify the ratio 40:33. In this example, the value for parNumerator is 40.
|
|
2521
2521
|
* @public
|
|
2522
2522
|
*/
|
|
2523
|
-
ParNumerator?: number;
|
|
2523
|
+
ParNumerator?: number | undefined;
|
|
2524
2524
|
/**
|
|
2525
2525
|
* The Quality tuning level you choose represents a trade-off between the encoding speed of your job and the output video quality. For the fastest encoding speed at the cost of video quality: Choose Single pass. For a good balance between encoding speed and video quality: Leave blank or keep the default value Single pass HQ. For the best video quality, at the cost of encoding speed: Choose Multi pass HQ. MediaConvert performs an analysis pass on your input followed by an encoding pass. Outputs that use this feature incur pro-tier pricing.
|
|
2526
2526
|
* @public
|
|
2527
2527
|
*/
|
|
2528
|
-
QualityTuningLevel?: H264QualityTuningLevel;
|
|
2528
|
+
QualityTuningLevel?: H264QualityTuningLevel | undefined;
|
|
2529
2529
|
/**
|
|
2530
2530
|
* Settings for quality-defined variable bitrate encoding with the H.265 codec. Use these settings only when you set QVBR for Rate control mode.
|
|
2531
2531
|
* @public
|
|
2532
2532
|
*/
|
|
2533
|
-
QvbrSettings?: H264QvbrSettings;
|
|
2533
|
+
QvbrSettings?: H264QvbrSettings | undefined;
|
|
2534
2534
|
/**
|
|
2535
2535
|
* Use this setting to specify whether this output has a variable bitrate (VBR), constant bitrate (CBR) or quality-defined variable bitrate (QVBR).
|
|
2536
2536
|
* @public
|
|
2537
2537
|
*/
|
|
2538
|
-
RateControlMode?: H264RateControlMode;
|
|
2538
|
+
RateControlMode?: H264RateControlMode | undefined;
|
|
2539
2539
|
/**
|
|
2540
2540
|
* Places a PPS header on each encoded picture, even if repeated.
|
|
2541
2541
|
* @public
|
|
2542
2542
|
*/
|
|
2543
|
-
RepeatPps?: H264RepeatPps;
|
|
2543
|
+
RepeatPps?: H264RepeatPps | undefined;
|
|
2544
2544
|
/**
|
|
2545
2545
|
* Specify whether to apply Saliency aware encoding to your output. Use to improve the perceptual video quality of your output by allocating more encoding bits to the prominent or noticeable parts of your content. To apply saliency aware encoding, when possible: We recommend that you choose Preferred. The effects of Saliency aware encoding are best seen in lower bitrate outputs. When you choose Preferred, note that Saliency aware encoding will only apply to outputs that are 720p or higher in resolution. To not apply saliency aware encoding, prioritizing encoding speed over perceptual video quality: Choose Disabled.
|
|
2546
2546
|
* @public
|
|
2547
2547
|
*/
|
|
2548
|
-
SaliencyAwareEncoding?: H264SaliencyAwareEncoding;
|
|
2548
|
+
SaliencyAwareEncoding?: H264SaliencyAwareEncoding | undefined;
|
|
2549
2549
|
/**
|
|
2550
2550
|
* Use this setting for interlaced outputs, when your output frame rate is half of your input frame rate. In this situation, choose Optimized interlacing to create a better quality interlaced output. In this case, each progressive frame from the input corresponds to an interlaced field in the output. Keep the default value, Basic interlacing, for all other output frame rates. With basic interlacing, MediaConvert performs any frame rate conversion first and then interlaces the frames. When you choose Optimized interlacing and you set your output frame rate to a value that isn't suitable for optimized interlacing, MediaConvert automatically falls back to basic interlacing. Required settings: To use optimized interlacing, you must set Telecine to None or Soft. You can't use optimized interlacing for hard telecine outputs. You must also set Interlace mode to a value other than Progressive.
|
|
2551
2551
|
* @public
|
|
2552
2552
|
*/
|
|
2553
|
-
ScanTypeConversionMode?: H264ScanTypeConversionMode;
|
|
2553
|
+
ScanTypeConversionMode?: H264ScanTypeConversionMode | undefined;
|
|
2554
2554
|
/**
|
|
2555
2555
|
* Enable this setting to insert I-frames at scene changes that the service automatically detects. This improves video quality and is enabled by default. If this output uses QVBR, choose Transition detection for further video quality improvement. For more information about QVBR, see https://docs.aws.amazon.com/console/mediaconvert/cbr-vbr-qvbr.
|
|
2556
2556
|
* @public
|
|
2557
2557
|
*/
|
|
2558
|
-
SceneChangeDetect?: H264SceneChangeDetect;
|
|
2558
|
+
SceneChangeDetect?: H264SceneChangeDetect | undefined;
|
|
2559
2559
|
/**
|
|
2560
2560
|
* Number of slices per picture. Must be less than or equal to the number of macroblock rows for progressive pictures, and less than or equal to half the number of macroblock rows for interlaced pictures.
|
|
2561
2561
|
* @public
|
|
2562
2562
|
*/
|
|
2563
|
-
Slices?: number;
|
|
2563
|
+
Slices?: number | undefined;
|
|
2564
2564
|
/**
|
|
2565
2565
|
* Ignore this setting unless your input frame rate is 23.976 or 24 frames per second (fps). Enable slow PAL to create a 25 fps output. When you enable slow PAL, MediaConvert relabels the video frames to 25 fps and resamples your audio to keep it synchronized with the video. Note that enabling this setting will slightly reduce the duration of your video. Required settings: You must also set Framerate to 25.
|
|
2566
2566
|
* @public
|
|
2567
2567
|
*/
|
|
2568
|
-
SlowPal?: H264SlowPal;
|
|
2568
|
+
SlowPal?: H264SlowPal | undefined;
|
|
2569
2569
|
/**
|
|
2570
2570
|
* Ignore this setting unless you need to comply with a specification that requires a specific value. If you don't have a specification requirement, we recommend that you adjust the softness of your output by using a lower value for the setting Sharpness or by enabling a noise reducer filter. The Softness setting specifies the quantization matrices that the encoder uses. Keep the default value, 0, for flat quantization. Choose the value 1 or 16 to use the default JVT softening quantization matricies from the H.264 specification. Choose a value from 17 to 128 to use planar interpolation. Increasing values from 17 to 128 result in increasing reduction of high-frequency data. The value 128 results in the softest video.
|
|
2571
2571
|
* @public
|
|
2572
2572
|
*/
|
|
2573
|
-
Softness?: number;
|
|
2573
|
+
Softness?: number | undefined;
|
|
2574
2574
|
/**
|
|
2575
2575
|
* Only use this setting when you change the default value, Auto, for the setting H264AdaptiveQuantization. When you keep all defaults, excluding H264AdaptiveQuantization and all other adaptive quantization from your JSON job specification, MediaConvert automatically applies the best types of quantization for your video content. When you set H264AdaptiveQuantization to a value other than AUTO, the default value for H264SpatialAdaptiveQuantization is Enabled. Keep this default value to adjust quantization within each frame based on spatial variation of content complexity. When you enable this feature, the encoder uses fewer bits on areas that can sustain more distortion with no noticeable visual degradation and uses more bits on areas where any small distortion will be noticeable. For example, complex textured blocks are encoded with fewer bits and smooth textured blocks are encoded with more bits. Enabling this feature will almost always improve your video quality. Note, though, that this feature doesn't take into account where the viewer's attention is likely to be. If viewers are likely to be focusing their attention on a part of the screen with a lot of complex texture, you might choose to set H264SpatialAdaptiveQuantization to Disabled. Related setting: When you enable spatial adaptive quantization, set the value for Adaptive quantization depending on your content. For homogeneous content, such as cartoons and video games, set it to Low. For content with a wider variety of textures, set it to High or Higher. To manually enable or disable H264SpatialAdaptiveQuantization, you must set Adaptive quantization to a value other than AUTO.
|
|
2576
2576
|
* @public
|
|
2577
2577
|
*/
|
|
2578
|
-
SpatialAdaptiveQuantization?: H264SpatialAdaptiveQuantization;
|
|
2578
|
+
SpatialAdaptiveQuantization?: H264SpatialAdaptiveQuantization | undefined;
|
|
2579
2579
|
/**
|
|
2580
2580
|
* Produces a bitstream compliant with SMPTE RP-2027.
|
|
2581
2581
|
* @public
|
|
2582
2582
|
*/
|
|
2583
|
-
Syntax?: H264Syntax;
|
|
2583
|
+
Syntax?: H264Syntax | undefined;
|
|
2584
2584
|
/**
|
|
2585
2585
|
* When you do frame rate conversion from 23.976 frames per second (fps) to 29.97 fps, and your output scan type is interlaced, you can optionally enable hard or soft telecine to create a smoother picture. Hard telecine produces a 29.97i output. Soft telecine produces an output with a 23.976 output that signals to the video player device to do the conversion during play back. When you keep the default value, None, MediaConvert does a standard frame rate conversion to 29.97 without doing anything with the field polarity to create a smoother picture.
|
|
2586
2586
|
* @public
|
|
2587
2587
|
*/
|
|
2588
|
-
Telecine?: H264Telecine;
|
|
2588
|
+
Telecine?: H264Telecine | undefined;
|
|
2589
2589
|
/**
|
|
2590
2590
|
* Only use this setting when you change the default value, AUTO, for the setting H264AdaptiveQuantization. When you keep all defaults, excluding H264AdaptiveQuantization and all other adaptive quantization from your JSON job specification, MediaConvert automatically applies the best types of quantization for your video content. When you set H264AdaptiveQuantization to a value other than AUTO, the default value for H264TemporalAdaptiveQuantization is Enabled. Keep this default value to adjust quantization within each frame based on temporal variation of content complexity. When you enable this feature, the encoder uses fewer bits on areas of the frame that aren't moving and uses more bits on complex objects with sharp edges that move a lot. For example, this feature improves the readability of text tickers on newscasts and scoreboards on sports matches. Enabling this feature will almost always improve your video quality. Note, though, that this feature doesn't take into account where the viewer's attention is likely to be. If viewers are likely to be focusing their attention on a part of the screen that doesn't have moving objects with sharp edges, such as sports athletes' faces, you might choose to set H264TemporalAdaptiveQuantization to Disabled. Related setting: When you enable temporal quantization, adjust the strength of the filter with the setting Adaptive quantization. To manually enable or disable H264TemporalAdaptiveQuantization, you must set Adaptive quantization to a value other than AUTO.
|
|
2591
2591
|
* @public
|
|
2592
2592
|
*/
|
|
2593
|
-
TemporalAdaptiveQuantization?: H264TemporalAdaptiveQuantization;
|
|
2593
|
+
TemporalAdaptiveQuantization?: H264TemporalAdaptiveQuantization | undefined;
|
|
2594
2594
|
/**
|
|
2595
2595
|
* Inserts timecode for each frame as 4 bytes of an unregistered SEI message.
|
|
2596
2596
|
* @public
|
|
2597
2597
|
*/
|
|
2598
|
-
UnregisteredSeiTimecode?: H264UnregisteredSeiTimecode;
|
|
2598
|
+
UnregisteredSeiTimecode?: H264UnregisteredSeiTimecode | undefined;
|
|
2599
2599
|
}
|
|
2600
2600
|
/**
|
|
2601
2601
|
* @public
|
|
@@ -2803,17 +2803,17 @@ export interface H265QvbrSettings {
|
|
|
2803
2803
|
* Use this setting only when Rate control mode is QVBR and Quality tuning level is Multi-pass HQ. For Max average bitrate values suited to the complexity of your input video, the service limits the average bitrate of the video part of this output to the value that you choose. That is, the total size of the video element is less than or equal to the value you set multiplied by the number of seconds of encoded output.
|
|
2804
2804
|
* @public
|
|
2805
2805
|
*/
|
|
2806
|
-
MaxAverageBitrate?: number;
|
|
2806
|
+
MaxAverageBitrate?: number | undefined;
|
|
2807
2807
|
/**
|
|
2808
2808
|
* Use this setting only when you set Rate control mode to QVBR. Specify the target quality level for this output. MediaConvert determines the right number of bits to use for each part of the video to maintain the video quality that you specify. When you keep the default value, AUTO, MediaConvert picks a quality level for you, based on characteristics of your input video. If you prefer to specify a quality level, specify a number from 1 through 10. Use higher numbers for greater quality. Level 10 results in nearly lossless compression. The quality level for most broadcast-quality transcodes is between 6 and 9. Optionally, to specify a value between whole numbers, also provide a value for the setting qvbrQualityLevelFineTune. For example, if you want your QVBR quality level to be 7.33, set qvbrQualityLevel to 7 and set qvbrQualityLevelFineTune to .33.
|
|
2809
2809
|
* @public
|
|
2810
2810
|
*/
|
|
2811
|
-
QvbrQualityLevel?: number;
|
|
2811
|
+
QvbrQualityLevel?: number | undefined;
|
|
2812
2812
|
/**
|
|
2813
2813
|
* Optional. Specify a value here to set the QVBR quality to a level that is between whole numbers. For example, if you want your QVBR quality level to be 7.33, set qvbrQualityLevel to 7 and set qvbrQualityLevelFineTune to .33. MediaConvert rounds your QVBR quality level to the nearest third of a whole number. For example, if you set qvbrQualityLevel to 7 and you set qvbrQualityLevelFineTune to .25, your actual QVBR quality level is 7.33.
|
|
2814
2814
|
* @public
|
|
2815
2815
|
*/
|
|
2816
|
-
QvbrQualityLevelFineTune?: number;
|
|
2816
|
+
QvbrQualityLevelFineTune?: number | undefined;
|
|
2817
2817
|
}
|
|
2818
2818
|
/**
|
|
2819
2819
|
* @public
|
|
@@ -2972,217 +2972,217 @@ export interface H265Settings {
|
|
|
2972
2972
|
* When you set Adaptive Quantization to Auto, or leave blank, MediaConvert automatically applies quantization to improve the video quality of your output. Set Adaptive Quantization to Low, Medium, High, Higher, or Max to manually control the strength of the quantization filter. When you do, you can specify a value for Spatial Adaptive Quantization, Temporal Adaptive Quantization, and Flicker Adaptive Quantization, to further control the quantization filter. Set Adaptive Quantization to Off to apply no quantization to your output.
|
|
2973
2973
|
* @public
|
|
2974
2974
|
*/
|
|
2975
|
-
AdaptiveQuantization?: H265AdaptiveQuantization;
|
|
2975
|
+
AdaptiveQuantization?: H265AdaptiveQuantization | undefined;
|
|
2976
2976
|
/**
|
|
2977
2977
|
* Enables Alternate Transfer Function SEI message for outputs using Hybrid Log Gamma (HLG) Electro-Optical Transfer Function (EOTF).
|
|
2978
2978
|
* @public
|
|
2979
2979
|
*/
|
|
2980
|
-
AlternateTransferFunctionSei?: H265AlternateTransferFunctionSei;
|
|
2980
|
+
AlternateTransferFunctionSei?: H265AlternateTransferFunctionSei | undefined;
|
|
2981
2981
|
/**
|
|
2982
2982
|
* The Bandwidth reduction filter increases the video quality of your output relative to its bitrate. Use to lower the bitrate of your constant quality QVBR output, with little or no perceptual decrease in quality. Or, use to increase the video quality of outputs with other rate control modes relative to the bitrate that you specify. Bandwidth reduction increases further when your input is low quality or noisy. Outputs that use this feature incur pro-tier pricing. When you include Bandwidth reduction filter, you cannot include the Noise reducer preprocessor.
|
|
2983
2983
|
* @public
|
|
2984
2984
|
*/
|
|
2985
|
-
BandwidthReductionFilter?: BandwidthReductionFilter;
|
|
2985
|
+
BandwidthReductionFilter?: BandwidthReductionFilter | undefined;
|
|
2986
2986
|
/**
|
|
2987
2987
|
* Specify the average bitrate in bits per second. Required for VBR and CBR. For MS Smooth outputs, bitrates must be unique when rounded down to the nearest multiple of 1000.
|
|
2988
2988
|
* @public
|
|
2989
2989
|
*/
|
|
2990
|
-
Bitrate?: number;
|
|
2990
|
+
Bitrate?: number | undefined;
|
|
2991
2991
|
/**
|
|
2992
2992
|
* H.265 Level.
|
|
2993
2993
|
* @public
|
|
2994
2994
|
*/
|
|
2995
|
-
CodecLevel?: H265CodecLevel;
|
|
2995
|
+
CodecLevel?: H265CodecLevel | undefined;
|
|
2996
2996
|
/**
|
|
2997
2997
|
* Represents the Profile and Tier, per the HEVC (H.265) specification. Selections are grouped as [Profile] / [Tier], so "Main/High" represents Main Profile with High Tier. 4:2:2 profiles are only available with the HEVC 4:2:2 License.
|
|
2998
2998
|
* @public
|
|
2999
2999
|
*/
|
|
3000
|
-
CodecProfile?: H265CodecProfile;
|
|
3000
|
+
CodecProfile?: H265CodecProfile | undefined;
|
|
3001
3001
|
/**
|
|
3002
3002
|
* Specify whether to allow the number of B-frames in your output GOP structure to vary or not depending on your input video content. To improve the subjective video quality of your output that has high-motion content: Leave blank or keep the default value Adaptive. MediaConvert will use fewer B-frames for high-motion video content than low-motion content. The maximum number of B- frames is limited by the value that you choose for B-frames between reference frames. To use the same number B-frames for all types of content: Choose Static.
|
|
3003
3003
|
* @public
|
|
3004
3004
|
*/
|
|
3005
|
-
DynamicSubGop?: H265DynamicSubGop;
|
|
3005
|
+
DynamicSubGop?: H265DynamicSubGop | undefined;
|
|
3006
3006
|
/**
|
|
3007
3007
|
* Optionally include or suppress markers at the end of your output that signal the end of the video stream. To include end of stream markers: Leave blank or keep the default value, Include. To not include end of stream markers: Choose Suppress. This is useful when your output will be inserted into another stream.
|
|
3008
3008
|
* @public
|
|
3009
3009
|
*/
|
|
3010
|
-
EndOfStreamMarkers?: H265EndOfStreamMarkers;
|
|
3010
|
+
EndOfStreamMarkers?: H265EndOfStreamMarkers | undefined;
|
|
3011
3011
|
/**
|
|
3012
3012
|
* Enable this setting to have the encoder reduce I-frame pop. I-frame pop appears as a visual flicker that can arise when the encoder saves bits by copying some macroblocks many times from frame to frame, and then refreshes them at the I-frame. When you enable this setting, the encoder updates these macroblocks slightly more often to smooth out the flicker. This setting is disabled by default. Related setting: In addition to enabling this setting, you must also set adaptiveQuantization to a value other than Off.
|
|
3013
3013
|
* @public
|
|
3014
3014
|
*/
|
|
3015
|
-
FlickerAdaptiveQuantization?: H265FlickerAdaptiveQuantization;
|
|
3015
|
+
FlickerAdaptiveQuantization?: H265FlickerAdaptiveQuantization | undefined;
|
|
3016
3016
|
/**
|
|
3017
3017
|
* Use the Framerate setting to specify the frame rate for this output. If you want to keep the same frame rate as the input video, choose Follow source. If you want to do frame rate conversion, choose a frame rate from the dropdown list or choose Custom. The framerates shown in the dropdown list are decimal approximations of fractions. If you choose Custom, specify your frame rate as a fraction.
|
|
3018
3018
|
* @public
|
|
3019
3019
|
*/
|
|
3020
|
-
FramerateControl?: H265FramerateControl;
|
|
3020
|
+
FramerateControl?: H265FramerateControl | undefined;
|
|
3021
3021
|
/**
|
|
3022
3022
|
* Choose the method that you want MediaConvert to use when increasing or decreasing the frame rate. For numerically simple conversions, such as 60 fps to 30 fps: We recommend that you keep the default value, Drop duplicate. For numerically complex conversions, to avoid stutter: Choose Interpolate. This results in a smooth picture, but might introduce undesirable video artifacts. For complex frame rate conversions, especially if your source video has already been converted from its original cadence: Choose FrameFormer to do motion-compensated interpolation. FrameFormer uses the best conversion method frame by frame. Note that using FrameFormer increases the transcoding time and incurs a significant add-on cost. When you choose FrameFormer, your input video resolution must be at least 128x96.
|
|
3023
3023
|
* @public
|
|
3024
3024
|
*/
|
|
3025
|
-
FramerateConversionAlgorithm?: H265FramerateConversionAlgorithm;
|
|
3025
|
+
FramerateConversionAlgorithm?: H265FramerateConversionAlgorithm | undefined;
|
|
3026
3026
|
/**
|
|
3027
3027
|
* When you use the API for transcode jobs that use frame rate conversion, specify the frame rate as a fraction. For example, 24000 / 1001 = 23.976 fps. Use FramerateDenominator to specify the denominator of this fraction. In this example, use 1001 for the value of FramerateDenominator. When you use the console for transcode jobs that use frame rate conversion, provide the value as a decimal number for Framerate. In this example, specify 23.976.
|
|
3028
3028
|
* @public
|
|
3029
3029
|
*/
|
|
3030
|
-
FramerateDenominator?: number;
|
|
3030
|
+
FramerateDenominator?: number | undefined;
|
|
3031
3031
|
/**
|
|
3032
3032
|
* When you use the API for transcode jobs that use frame rate conversion, specify the frame rate as a fraction. For example, 24000 / 1001 = 23.976 fps. Use FramerateNumerator to specify the numerator of this fraction. In this example, use 24000 for the value of FramerateNumerator. When you use the console for transcode jobs that use frame rate conversion, provide the value as a decimal number for Framerate. In this example, specify 23.976.
|
|
3033
3033
|
* @public
|
|
3034
3034
|
*/
|
|
3035
|
-
FramerateNumerator?: number;
|
|
3035
|
+
FramerateNumerator?: number | undefined;
|
|
3036
3036
|
/**
|
|
3037
3037
|
* Specify whether to allow B-frames to be referenced by other frame types. To use reference B-frames when your GOP structure has 1 or more B-frames: Leave blank or keep the default value Enabled. We recommend that you choose Enabled to help improve the video quality of your output relative to its bitrate. To not use reference B-frames: Choose Disabled.
|
|
3038
3038
|
* @public
|
|
3039
3039
|
*/
|
|
3040
|
-
GopBReference?: H265GopBReference;
|
|
3040
|
+
GopBReference?: H265GopBReference | undefined;
|
|
3041
3041
|
/**
|
|
3042
3042
|
* Specify the relative frequency of open to closed GOPs in this output. For example, if you want to allow four open GOPs and then require a closed GOP, set this value to 5. We recommend that you have the transcoder automatically choose this value for you based on characteristics of your input video. To enable this automatic behavior, do this by keeping the default empty value. If you do explicitly specify a value, for segmented outputs, don't set this value to 0.
|
|
3043
3043
|
* @public
|
|
3044
3044
|
*/
|
|
3045
|
-
GopClosedCadence?: number;
|
|
3045
|
+
GopClosedCadence?: number | undefined;
|
|
3046
3046
|
/**
|
|
3047
3047
|
* Use this setting only when you set GOP mode control to Specified, frames or Specified, seconds. Specify the GOP length using a whole number of frames or a decimal value of seconds. MediaConvert will interpret this value as frames or seconds depending on the value you choose for GOP mode control. If you want to allow MediaConvert to automatically determine GOP size, leave GOP size blank and set GOP mode control to Auto. If your output group specifies HLS, DASH, or CMAF, leave GOP size blank and set GOP mode control to Auto in each output in your output group.
|
|
3048
3048
|
* @public
|
|
3049
3049
|
*/
|
|
3050
|
-
GopSize?: number;
|
|
3050
|
+
GopSize?: number | undefined;
|
|
3051
3051
|
/**
|
|
3052
3052
|
* Specify how the transcoder determines GOP size for this output. We recommend that you have the transcoder automatically choose this value for you based on characteristics of your input video. To enable this automatic behavior, choose Auto and and leave GOP size blank. By default, if you don't specify GOP mode control, MediaConvert will use automatic behavior. If your output group specifies HLS, DASH, or CMAF, set GOP mode control to Auto and leave GOP size blank in each output in your output group. To explicitly specify the GOP length, choose Specified, frames or Specified, seconds and then provide the GOP length in the related setting GOP size.
|
|
3053
3053
|
* @public
|
|
3054
3054
|
*/
|
|
3055
|
-
GopSizeUnits?: H265GopSizeUnits;
|
|
3055
|
+
GopSizeUnits?: H265GopSizeUnits | undefined;
|
|
3056
3056
|
/**
|
|
3057
3057
|
* If your downstream systems have strict buffer requirements: Specify the minimum percentage of the HRD buffer that's available at the end of each encoded video segment. For the best video quality: Set to 0 or leave blank to automatically determine the final buffer fill percentage.
|
|
3058
3058
|
* @public
|
|
3059
3059
|
*/
|
|
3060
|
-
HrdBufferFinalFillPercentage?: number;
|
|
3060
|
+
HrdBufferFinalFillPercentage?: number | undefined;
|
|
3061
3061
|
/**
|
|
3062
3062
|
* Percentage of the buffer that should initially be filled (HRD buffer model).
|
|
3063
3063
|
* @public
|
|
3064
3064
|
*/
|
|
3065
|
-
HrdBufferInitialFillPercentage?: number;
|
|
3065
|
+
HrdBufferInitialFillPercentage?: number | undefined;
|
|
3066
3066
|
/**
|
|
3067
3067
|
* Size of buffer (HRD buffer model) in bits. For example, enter five megabits as 5000000.
|
|
3068
3068
|
* @public
|
|
3069
3069
|
*/
|
|
3070
|
-
HrdBufferSize?: number;
|
|
3070
|
+
HrdBufferSize?: number | undefined;
|
|
3071
3071
|
/**
|
|
3072
3072
|
* Choose the scan line type for the output. Keep the default value, Progressive to create a progressive output, regardless of the scan type of your input. Use Top field first or Bottom field first to create an output that's interlaced with the same field polarity throughout. Use Follow, default top or Follow, default bottom to produce outputs with the same field polarity as the source. For jobs that have multiple inputs, the output field polarity might change over the course of the output. Follow behavior depends on the input scan type. If the source is interlaced, the output will be interlaced with the same polarity as the source. If the source is progressive, the output will be interlaced with top field bottom field first, depending on which of the Follow options you choose.
|
|
3073
3073
|
* @public
|
|
3074
3074
|
*/
|
|
3075
|
-
InterlaceMode?: H265InterlaceMode;
|
|
3075
|
+
InterlaceMode?: H265InterlaceMode | undefined;
|
|
3076
3076
|
/**
|
|
3077
3077
|
* Maximum bitrate in bits/second. For example, enter five megabits per second as 5000000. Required when Rate control mode is QVBR.
|
|
3078
3078
|
* @public
|
|
3079
3079
|
*/
|
|
3080
|
-
MaxBitrate?: number;
|
|
3080
|
+
MaxBitrate?: number | undefined;
|
|
3081
3081
|
/**
|
|
3082
3082
|
* Specify the minimum number of frames allowed between two IDR-frames in your output. This includes frames created at the start of a GOP or a scene change. Use Min I-Interval to improve video compression by varying GOP size when two IDR-frames would be created near each other. For example, if a regular cadence-driven IDR-frame would fall within 5 frames of a scene-change IDR-frame, and you set Min I-interval to 5, then the encoder would only write an IDR-frame for the scene-change. In this way, one GOP is shortened or extended. If a cadence-driven IDR-frame would be further than 5 frames from a scene-change IDR-frame, then the encoder leaves all IDR-frames in place. To use an automatically determined interval: We recommend that you keep this value blank. This allows for MediaConvert to use an optimal setting according to the characteristics of your input video, and results in better video compression. To manually specify an interval: Enter a value from 1 to 30. Use when your downstream systems have specific GOP size requirements. To disable GOP size variance: Enter 0. MediaConvert will only create IDR-frames at the start of your output's cadence-driven GOP. Use when your downstream systems require a regular GOP size.
|
|
3083
3083
|
* @public
|
|
3084
3084
|
*/
|
|
3085
|
-
MinIInterval?: number;
|
|
3085
|
+
MinIInterval?: number | undefined;
|
|
3086
3086
|
/**
|
|
3087
3087
|
* Specify the number of B-frames between reference frames in this output. For the best video quality: Leave blank. MediaConvert automatically determines the number of B-frames to use based on the characteristics of your input video. To manually specify the number of B-frames between reference frames: Enter an integer from 0 to 7.
|
|
3088
3088
|
* @public
|
|
3089
3089
|
*/
|
|
3090
|
-
NumberBFramesBetweenReferenceFrames?: number;
|
|
3090
|
+
NumberBFramesBetweenReferenceFrames?: number | undefined;
|
|
3091
3091
|
/**
|
|
3092
3092
|
* Number of reference frames to use. The encoder may use more than requested if using B-frames and/or interlaced encoding.
|
|
3093
3093
|
* @public
|
|
3094
3094
|
*/
|
|
3095
|
-
NumberReferenceFrames?: number;
|
|
3095
|
+
NumberReferenceFrames?: number | undefined;
|
|
3096
3096
|
/**
|
|
3097
3097
|
* Optional. Specify how the service determines the pixel aspect ratio (PAR) for this output. The default behavior, Follow source, uses the PAR from your input video for your output. To specify a different PAR, choose any value other than Follow source. When you choose SPECIFIED for this setting, you must also specify values for the parNumerator and parDenominator settings.
|
|
3098
3098
|
* @public
|
|
3099
3099
|
*/
|
|
3100
|
-
ParControl?: H265ParControl;
|
|
3100
|
+
ParControl?: H265ParControl | undefined;
|
|
3101
3101
|
/**
|
|
3102
3102
|
* Required when you set Pixel aspect ratio to SPECIFIED. On the console, this corresponds to any value other than Follow source. When you specify an output pixel aspect ratio (PAR) that is different from your input video PAR, provide your output PAR as a ratio. For example, for D1/DV NTSC widescreen, you would specify the ratio 40:33. In this example, the value for parDenominator is 33.
|
|
3103
3103
|
* @public
|
|
3104
3104
|
*/
|
|
3105
|
-
ParDenominator?: number;
|
|
3105
|
+
ParDenominator?: number | undefined;
|
|
3106
3106
|
/**
|
|
3107
3107
|
* Required when you set Pixel aspect ratio to SPECIFIED. On the console, this corresponds to any value other than Follow source. When you specify an output pixel aspect ratio (PAR) that is different from your input video PAR, provide your output PAR as a ratio. For example, for D1/DV NTSC widescreen, you would specify the ratio 40:33. In this example, the value for parNumerator is 40.
|
|
3108
3108
|
* @public
|
|
3109
3109
|
*/
|
|
3110
|
-
ParNumerator?: number;
|
|
3110
|
+
ParNumerator?: number | undefined;
|
|
3111
3111
|
/**
|
|
3112
3112
|
* Optional. Use Quality tuning level to choose how you want to trade off encoding speed for output video quality. The default behavior is faster, lower quality, single-pass encoding.
|
|
3113
3113
|
* @public
|
|
3114
3114
|
*/
|
|
3115
|
-
QualityTuningLevel?: H265QualityTuningLevel;
|
|
3115
|
+
QualityTuningLevel?: H265QualityTuningLevel | undefined;
|
|
3116
3116
|
/**
|
|
3117
3117
|
* Settings for quality-defined variable bitrate encoding with the H.265 codec. Use these settings only when you set QVBR for Rate control mode.
|
|
3118
3118
|
* @public
|
|
3119
3119
|
*/
|
|
3120
|
-
QvbrSettings?: H265QvbrSettings;
|
|
3120
|
+
QvbrSettings?: H265QvbrSettings | undefined;
|
|
3121
3121
|
/**
|
|
3122
3122
|
* Use this setting to specify whether this output has a variable bitrate (VBR), constant bitrate (CBR) or quality-defined variable bitrate (QVBR).
|
|
3123
3123
|
* @public
|
|
3124
3124
|
*/
|
|
3125
|
-
RateControlMode?: H265RateControlMode;
|
|
3125
|
+
RateControlMode?: H265RateControlMode | undefined;
|
|
3126
3126
|
/**
|
|
3127
3127
|
* Specify Sample Adaptive Offset (SAO) filter strength. Adaptive mode dynamically selects best strength based on content
|
|
3128
3128
|
* @public
|
|
3129
3129
|
*/
|
|
3130
|
-
SampleAdaptiveOffsetFilterMode?: H265SampleAdaptiveOffsetFilterMode;
|
|
3130
|
+
SampleAdaptiveOffsetFilterMode?: H265SampleAdaptiveOffsetFilterMode | undefined;
|
|
3131
3131
|
/**
|
|
3132
3132
|
* Use this setting for interlaced outputs, when your output frame rate is half of your input frame rate. In this situation, choose Optimized interlacing to create a better quality interlaced output. In this case, each progressive frame from the input corresponds to an interlaced field in the output. Keep the default value, Basic interlacing, for all other output frame rates. With basic interlacing, MediaConvert performs any frame rate conversion first and then interlaces the frames. When you choose Optimized interlacing and you set your output frame rate to a value that isn't suitable for optimized interlacing, MediaConvert automatically falls back to basic interlacing. Required settings: To use optimized interlacing, you must set Telecine to None or Soft. You can't use optimized interlacing for hard telecine outputs. You must also set Interlace mode to a value other than Progressive.
|
|
3133
3133
|
* @public
|
|
3134
3134
|
*/
|
|
3135
|
-
ScanTypeConversionMode?: H265ScanTypeConversionMode;
|
|
3135
|
+
ScanTypeConversionMode?: H265ScanTypeConversionMode | undefined;
|
|
3136
3136
|
/**
|
|
3137
3137
|
* Enable this setting to insert I-frames at scene changes that the service automatically detects. This improves video quality and is enabled by default. If this output uses QVBR, choose Transition detection for further video quality improvement. For more information about QVBR, see https://docs.aws.amazon.com/console/mediaconvert/cbr-vbr-qvbr.
|
|
3138
3138
|
* @public
|
|
3139
3139
|
*/
|
|
3140
|
-
SceneChangeDetect?: H265SceneChangeDetect;
|
|
3140
|
+
SceneChangeDetect?: H265SceneChangeDetect | undefined;
|
|
3141
3141
|
/**
|
|
3142
3142
|
* Number of slices per picture. Must be less than or equal to the number of macroblock rows for progressive pictures, and less than or equal to half the number of macroblock rows for interlaced pictures.
|
|
3143
3143
|
* @public
|
|
3144
3144
|
*/
|
|
3145
|
-
Slices?: number;
|
|
3145
|
+
Slices?: number | undefined;
|
|
3146
3146
|
/**
|
|
3147
3147
|
* Ignore this setting unless your input frame rate is 23.976 or 24 frames per second (fps). Enable slow PAL to create a 25 fps output. When you enable slow PAL, MediaConvert relabels the video frames to 25 fps and resamples your audio to keep it synchronized with the video. Note that enabling this setting will slightly reduce the duration of your video. Required settings: You must also set Framerate to 25.
|
|
3148
3148
|
* @public
|
|
3149
3149
|
*/
|
|
3150
|
-
SlowPal?: H265SlowPal;
|
|
3150
|
+
SlowPal?: H265SlowPal | undefined;
|
|
3151
3151
|
/**
|
|
3152
3152
|
* Keep the default value, Enabled, to adjust quantization within each frame based on spatial variation of content complexity. When you enable this feature, the encoder uses fewer bits on areas that can sustain more distortion with no noticeable visual degradation and uses more bits on areas where any small distortion will be noticeable. For example, complex textured blocks are encoded with fewer bits and smooth textured blocks are encoded with more bits. Enabling this feature will almost always improve your video quality. Note, though, that this feature doesn't take into account where the viewer's attention is likely to be. If viewers are likely to be focusing their attention on a part of the screen with a lot of complex texture, you might choose to disable this feature. Related setting: When you enable spatial adaptive quantization, set the value for Adaptive quantization depending on your content. For homogeneous content, such as cartoons and video games, set it to Low. For content with a wider variety of textures, set it to High or Higher.
|
|
3153
3153
|
* @public
|
|
3154
3154
|
*/
|
|
3155
|
-
SpatialAdaptiveQuantization?: H265SpatialAdaptiveQuantization;
|
|
3155
|
+
SpatialAdaptiveQuantization?: H265SpatialAdaptiveQuantization | undefined;
|
|
3156
3156
|
/**
|
|
3157
3157
|
* This field applies only if the Streams > Advanced > Framerate field is set to 29.970. This field works with the Streams > Advanced > Preprocessors > Deinterlacer field and the Streams > Advanced > Interlaced Mode field to identify the scan type for the output: Progressive, Interlaced, Hard Telecine or Soft Telecine. - Hard: produces 29.97i output from 23.976 input. - Soft: produces 23.976; the player converts this output to 29.97i.
|
|
3158
3158
|
* @public
|
|
3159
3159
|
*/
|
|
3160
|
-
Telecine?: H265Telecine;
|
|
3160
|
+
Telecine?: H265Telecine | undefined;
|
|
3161
3161
|
/**
|
|
3162
3162
|
* Keep the default value, Enabled, to adjust quantization within each frame based on temporal variation of content complexity. When you enable this feature, the encoder uses fewer bits on areas of the frame that aren't moving and uses more bits on complex objects with sharp edges that move a lot. For example, this feature improves the readability of text tickers on newscasts and scoreboards on sports matches. Enabling this feature will almost always improve your video quality. Note, though, that this feature doesn't take into account where the viewer's attention is likely to be. If viewers are likely to be focusing their attention on a part of the screen that doesn't have moving objects with sharp edges, such as sports athletes' faces, you might choose to disable this feature. Related setting: When you enable temporal quantization, adjust the strength of the filter with the setting Adaptive quantization.
|
|
3163
3163
|
* @public
|
|
3164
3164
|
*/
|
|
3165
|
-
TemporalAdaptiveQuantization?: H265TemporalAdaptiveQuantization;
|
|
3165
|
+
TemporalAdaptiveQuantization?: H265TemporalAdaptiveQuantization | undefined;
|
|
3166
3166
|
/**
|
|
3167
3167
|
* Enables temporal layer identifiers in the encoded bitstream. Up to 3 layers are supported depending on GOP structure: I- and P-frames form one layer, reference B-frames can form a second layer and non-reference b-frames can form a third layer. Decoders can optionally decode only the lower temporal layers to generate a lower frame rate output. For example, given a bitstream with temporal IDs and with b-frames = 1 (i.e. IbPbPb display order), a decoder could decode all the frames for full frame rate output or only the I and P frames (lowest temporal layer) for a half frame rate output.
|
|
3168
3168
|
* @public
|
|
3169
3169
|
*/
|
|
3170
|
-
TemporalIds?: H265TemporalIds;
|
|
3170
|
+
TemporalIds?: H265TemporalIds | undefined;
|
|
3171
3171
|
/**
|
|
3172
3172
|
* Enable use of tiles, allowing horizontal as well as vertical subdivision of the encoded pictures.
|
|
3173
3173
|
* @public
|
|
3174
3174
|
*/
|
|
3175
|
-
Tiles?: H265Tiles;
|
|
3175
|
+
Tiles?: H265Tiles | undefined;
|
|
3176
3176
|
/**
|
|
3177
3177
|
* Inserts timecode for each frame as 4 bytes of an unregistered SEI message.
|
|
3178
3178
|
* @public
|
|
3179
3179
|
*/
|
|
3180
|
-
UnregisteredSeiTimecode?: H265UnregisteredSeiTimecode;
|
|
3180
|
+
UnregisteredSeiTimecode?: H265UnregisteredSeiTimecode | undefined;
|
|
3181
3181
|
/**
|
|
3182
3182
|
* If the location of parameter set NAL units doesn't matter in your workflow, ignore this setting. Use this setting only with CMAF or DASH outputs, or with standalone file outputs in an MPEG-4 container (MP4 outputs). Choose HVC1 to mark your output as HVC1. This makes your output compliant with the following specification: ISO IECJTC1 SC29 N13798 Text ISO/IEC FDIS 14496-15 3rd Edition. For these outputs, the service stores parameter set NAL units in the sample headers but not in the samples directly. For MP4 outputs, when you choose HVC1, your output video might not work properly with some downstream systems and video players. The service defaults to marking your output as HEV1. For these outputs, the service writes parameter set NAL units directly into the samples.
|
|
3183
3183
|
* @public
|
|
3184
3184
|
*/
|
|
3185
|
-
WriteMp4PackagingType?: H265WriteMp4PackagingType;
|
|
3185
|
+
WriteMp4PackagingType?: H265WriteMp4PackagingType | undefined;
|
|
3186
3186
|
}
|
|
3187
3187
|
/**
|
|
3188
3188
|
* @public
|
|
@@ -3434,167 +3434,167 @@ export interface Mpeg2Settings {
|
|
|
3434
3434
|
* Specify the strength of any adaptive quantization filters that you enable. The value that you choose here applies to the following settings: Spatial adaptive quantization, and Temporal adaptive quantization.
|
|
3435
3435
|
* @public
|
|
3436
3436
|
*/
|
|
3437
|
-
AdaptiveQuantization?: Mpeg2AdaptiveQuantization;
|
|
3437
|
+
AdaptiveQuantization?: Mpeg2AdaptiveQuantization | undefined;
|
|
3438
3438
|
/**
|
|
3439
3439
|
* Specify the average bitrate in bits per second. Required for VBR and CBR. For MS Smooth outputs, bitrates must be unique when rounded down to the nearest multiple of 1000.
|
|
3440
3440
|
* @public
|
|
3441
3441
|
*/
|
|
3442
|
-
Bitrate?: number;
|
|
3442
|
+
Bitrate?: number | undefined;
|
|
3443
3443
|
/**
|
|
3444
3444
|
* Use Level to set the MPEG-2 level for the video output.
|
|
3445
3445
|
* @public
|
|
3446
3446
|
*/
|
|
3447
|
-
CodecLevel?: Mpeg2CodecLevel;
|
|
3447
|
+
CodecLevel?: Mpeg2CodecLevel | undefined;
|
|
3448
3448
|
/**
|
|
3449
3449
|
* Use Profile to set the MPEG-2 profile for the video output.
|
|
3450
3450
|
* @public
|
|
3451
3451
|
*/
|
|
3452
|
-
CodecProfile?: Mpeg2CodecProfile;
|
|
3452
|
+
CodecProfile?: Mpeg2CodecProfile | undefined;
|
|
3453
3453
|
/**
|
|
3454
3454
|
* Choose Adaptive to improve subjective video quality for high-motion content. This will cause the service to use fewer B-frames (which infer information based on other frames) for high-motion portions of the video and more B-frames for low-motion portions. The maximum number of B-frames is limited by the value you provide for the setting B frames between reference frames.
|
|
3455
3455
|
* @public
|
|
3456
3456
|
*/
|
|
3457
|
-
DynamicSubGop?: Mpeg2DynamicSubGop;
|
|
3457
|
+
DynamicSubGop?: Mpeg2DynamicSubGop | undefined;
|
|
3458
3458
|
/**
|
|
3459
3459
|
* If you are using the console, use the Framerate setting to specify the frame rate for this output. If you want to keep the same frame rate as the input video, choose Follow source. If you want to do frame rate conversion, choose a frame rate from the dropdown list or choose Custom. The framerates shown in the dropdown list are decimal approximations of fractions. If you choose Custom, specify your frame rate as a fraction.
|
|
3460
3460
|
* @public
|
|
3461
3461
|
*/
|
|
3462
|
-
FramerateControl?: Mpeg2FramerateControl;
|
|
3462
|
+
FramerateControl?: Mpeg2FramerateControl | undefined;
|
|
3463
3463
|
/**
|
|
3464
3464
|
* Choose the method that you want MediaConvert to use when increasing or decreasing the frame rate. For numerically simple conversions, such as 60 fps to 30 fps: We recommend that you keep the default value, Drop duplicate. For numerically complex conversions, to avoid stutter: Choose Interpolate. This results in a smooth picture, but might introduce undesirable video artifacts. For complex frame rate conversions, especially if your source video has already been converted from its original cadence: Choose FrameFormer to do motion-compensated interpolation. FrameFormer uses the best conversion method frame by frame. Note that using FrameFormer increases the transcoding time and incurs a significant add-on cost. When you choose FrameFormer, your input video resolution must be at least 128x96.
|
|
3465
3465
|
* @public
|
|
3466
3466
|
*/
|
|
3467
|
-
FramerateConversionAlgorithm?: Mpeg2FramerateConversionAlgorithm;
|
|
3467
|
+
FramerateConversionAlgorithm?: Mpeg2FramerateConversionAlgorithm | undefined;
|
|
3468
3468
|
/**
|
|
3469
3469
|
* When you use the API for transcode jobs that use frame rate conversion, specify the frame rate as a fraction. For example, 24000 / 1001 = 23.976 fps. Use FramerateDenominator to specify the denominator of this fraction. In this example, use 1001 for the value of FramerateDenominator. When you use the console for transcode jobs that use frame rate conversion, provide the value as a decimal number for Framerate. In this example, specify 23.976.
|
|
3470
3470
|
* @public
|
|
3471
3471
|
*/
|
|
3472
|
-
FramerateDenominator?: number;
|
|
3472
|
+
FramerateDenominator?: number | undefined;
|
|
3473
3473
|
/**
|
|
3474
3474
|
* When you use the API for transcode jobs that use frame rate conversion, specify the frame rate as a fraction. For example, 24000 / 1001 = 23.976 fps. Use FramerateNumerator to specify the numerator of this fraction. In this example, use 24000 for the value of FramerateNumerator. When you use the console for transcode jobs that use frame rate conversion, provide the value as a decimal number for Framerate. In this example, specify 23.976.
|
|
3475
3475
|
* @public
|
|
3476
3476
|
*/
|
|
3477
|
-
FramerateNumerator?: number;
|
|
3477
|
+
FramerateNumerator?: number | undefined;
|
|
3478
3478
|
/**
|
|
3479
3479
|
* Specify the relative frequency of open to closed GOPs in this output. For example, if you want to allow four open GOPs and then require a closed GOP, set this value to 5. When you create a streaming output, we recommend that you keep the default value, 1, so that players starting mid-stream receive an IDR frame as quickly as possible. Don't set this value to 0; that would break output segmenting.
|
|
3480
3480
|
* @public
|
|
3481
3481
|
*/
|
|
3482
|
-
GopClosedCadence?: number;
|
|
3482
|
+
GopClosedCadence?: number | undefined;
|
|
3483
3483
|
/**
|
|
3484
3484
|
* Specify the interval between keyframes, in seconds or frames, for this output. Default: 12 Related settings: When you specify the GOP size in seconds, set GOP mode control to Specified, seconds. The default value for GOP mode control is Frames.
|
|
3485
3485
|
* @public
|
|
3486
3486
|
*/
|
|
3487
|
-
GopSize?: number;
|
|
3487
|
+
GopSize?: number | undefined;
|
|
3488
3488
|
/**
|
|
3489
3489
|
* Specify the units for GOP size. If you don't specify a value here, by default the encoder measures GOP size in frames.
|
|
3490
3490
|
* @public
|
|
3491
3491
|
*/
|
|
3492
|
-
GopSizeUnits?: Mpeg2GopSizeUnits;
|
|
3492
|
+
GopSizeUnits?: Mpeg2GopSizeUnits | undefined;
|
|
3493
3493
|
/**
|
|
3494
3494
|
* If your downstream systems have strict buffer requirements: Specify the minimum percentage of the HRD buffer that's available at the end of each encoded video segment. For the best video quality: Set to 0 or leave blank to automatically determine the final buffer fill percentage.
|
|
3495
3495
|
* @public
|
|
3496
3496
|
*/
|
|
3497
|
-
HrdBufferFinalFillPercentage?: number;
|
|
3497
|
+
HrdBufferFinalFillPercentage?: number | undefined;
|
|
3498
3498
|
/**
|
|
3499
3499
|
* Percentage of the buffer that should initially be filled (HRD buffer model).
|
|
3500
3500
|
* @public
|
|
3501
3501
|
*/
|
|
3502
|
-
HrdBufferInitialFillPercentage?: number;
|
|
3502
|
+
HrdBufferInitialFillPercentage?: number | undefined;
|
|
3503
3503
|
/**
|
|
3504
3504
|
* Size of buffer (HRD buffer model) in bits. For example, enter five megabits as 5000000.
|
|
3505
3505
|
* @public
|
|
3506
3506
|
*/
|
|
3507
|
-
HrdBufferSize?: number;
|
|
3507
|
+
HrdBufferSize?: number | undefined;
|
|
3508
3508
|
/**
|
|
3509
3509
|
* Choose the scan line type for the output. Keep the default value, Progressive to create a progressive output, regardless of the scan type of your input. Use Top field first or Bottom field first to create an output that's interlaced with the same field polarity throughout. Use Follow, default top or Follow, default bottom to produce outputs with the same field polarity as the source. For jobs that have multiple inputs, the output field polarity might change over the course of the output. Follow behavior depends on the input scan type. If the source is interlaced, the output will be interlaced with the same polarity as the source. If the source is progressive, the output will be interlaced with top field bottom field first, depending on which of the Follow options you choose.
|
|
3510
3510
|
* @public
|
|
3511
3511
|
*/
|
|
3512
|
-
InterlaceMode?: Mpeg2InterlaceMode;
|
|
3512
|
+
InterlaceMode?: Mpeg2InterlaceMode | undefined;
|
|
3513
3513
|
/**
|
|
3514
3514
|
* Use Intra DC precision to set quantization precision for intra-block DC coefficients. If you choose the value auto, the service will automatically select the precision based on the per-frame compression ratio.
|
|
3515
3515
|
* @public
|
|
3516
3516
|
*/
|
|
3517
|
-
IntraDcPrecision?: Mpeg2IntraDcPrecision;
|
|
3517
|
+
IntraDcPrecision?: Mpeg2IntraDcPrecision | undefined;
|
|
3518
3518
|
/**
|
|
3519
3519
|
* Maximum bitrate in bits/second. For example, enter five megabits per second as 5000000.
|
|
3520
3520
|
* @public
|
|
3521
3521
|
*/
|
|
3522
|
-
MaxBitrate?: number;
|
|
3522
|
+
MaxBitrate?: number | undefined;
|
|
3523
3523
|
/**
|
|
3524
3524
|
* Specify the minimum number of frames allowed between two IDR-frames in your output. This includes frames created at the start of a GOP or a scene change. Use Min I-Interval to improve video compression by varying GOP size when two IDR-frames would be created near each other. For example, if a regular cadence-driven IDR-frame would fall within 5 frames of a scene-change IDR-frame, and you set Min I-interval to 5, then the encoder would only write an IDR-frame for the scene-change. In this way, one GOP is shortened or extended. If a cadence-driven IDR-frame would be further than 5 frames from a scene-change IDR-frame, then the encoder leaves all IDR-frames in place. To manually specify an interval: Enter a value from 1 to 30. Use when your downstream systems have specific GOP size requirements. To disable GOP size variance: Enter 0. MediaConvert will only create IDR-frames at the start of your output's cadence-driven GOP. Use when your downstream systems require a regular GOP size.
|
|
3525
3525
|
* @public
|
|
3526
3526
|
*/
|
|
3527
|
-
MinIInterval?: number;
|
|
3527
|
+
MinIInterval?: number | undefined;
|
|
3528
3528
|
/**
|
|
3529
3529
|
* Specify the number of B-frames that MediaConvert puts between reference frames in this output. Valid values are whole numbers from 0 through 7. When you don't specify a value, MediaConvert defaults to 2.
|
|
3530
3530
|
* @public
|
|
3531
3531
|
*/
|
|
3532
|
-
NumberBFramesBetweenReferenceFrames?: number;
|
|
3532
|
+
NumberBFramesBetweenReferenceFrames?: number | undefined;
|
|
3533
3533
|
/**
|
|
3534
3534
|
* Optional. Specify how the service determines the pixel aspect ratio (PAR) for this output. The default behavior, Follow source, uses the PAR from your input video for your output. To specify a different PAR in the console, choose any value other than Follow source. When you choose SPECIFIED for this setting, you must also specify values for the parNumerator and parDenominator settings.
|
|
3535
3535
|
* @public
|
|
3536
3536
|
*/
|
|
3537
|
-
ParControl?: Mpeg2ParControl;
|
|
3537
|
+
ParControl?: Mpeg2ParControl | undefined;
|
|
3538
3538
|
/**
|
|
3539
3539
|
* Required when you set Pixel aspect ratio to SPECIFIED. On the console, this corresponds to any value other than Follow source. When you specify an output pixel aspect ratio (PAR) that is different from your input video PAR, provide your output PAR as a ratio. For example, for D1/DV NTSC widescreen, you would specify the ratio 40:33. In this example, the value for parDenominator is 33.
|
|
3540
3540
|
* @public
|
|
3541
3541
|
*/
|
|
3542
|
-
ParDenominator?: number;
|
|
3542
|
+
ParDenominator?: number | undefined;
|
|
3543
3543
|
/**
|
|
3544
3544
|
* Required when you set Pixel aspect ratio to SPECIFIED. On the console, this corresponds to any value other than Follow source. When you specify an output pixel aspect ratio (PAR) that is different from your input video PAR, provide your output PAR as a ratio. For example, for D1/DV NTSC widescreen, you would specify the ratio 40:33. In this example, the value for parNumerator is 40.
|
|
3545
3545
|
* @public
|
|
3546
3546
|
*/
|
|
3547
|
-
ParNumerator?: number;
|
|
3547
|
+
ParNumerator?: number | undefined;
|
|
3548
3548
|
/**
|
|
3549
3549
|
* Optional. Use Quality tuning level to choose how you want to trade off encoding speed for output video quality. The default behavior is faster, lower quality, single-pass encoding.
|
|
3550
3550
|
* @public
|
|
3551
3551
|
*/
|
|
3552
|
-
QualityTuningLevel?: Mpeg2QualityTuningLevel;
|
|
3552
|
+
QualityTuningLevel?: Mpeg2QualityTuningLevel | undefined;
|
|
3553
3553
|
/**
|
|
3554
3554
|
* Use Rate control mode to specify whether the bitrate is variable (vbr) or constant (cbr).
|
|
3555
3555
|
* @public
|
|
3556
3556
|
*/
|
|
3557
|
-
RateControlMode?: Mpeg2RateControlMode;
|
|
3557
|
+
RateControlMode?: Mpeg2RateControlMode | undefined;
|
|
3558
3558
|
/**
|
|
3559
3559
|
* Use this setting for interlaced outputs, when your output frame rate is half of your input frame rate. In this situation, choose Optimized interlacing to create a better quality interlaced output. In this case, each progressive frame from the input corresponds to an interlaced field in the output. Keep the default value, Basic interlacing, for all other output frame rates. With basic interlacing, MediaConvert performs any frame rate conversion first and then interlaces the frames. When you choose Optimized interlacing and you set your output frame rate to a value that isn't suitable for optimized interlacing, MediaConvert automatically falls back to basic interlacing. Required settings: To use optimized interlacing, you must set Telecine to None or Soft. You can't use optimized interlacing for hard telecine outputs. You must also set Interlace mode to a value other than Progressive.
|
|
3560
3560
|
* @public
|
|
3561
3561
|
*/
|
|
3562
|
-
ScanTypeConversionMode?: Mpeg2ScanTypeConversionMode;
|
|
3562
|
+
ScanTypeConversionMode?: Mpeg2ScanTypeConversionMode | undefined;
|
|
3563
3563
|
/**
|
|
3564
3564
|
* Enable this setting to insert I-frames at scene changes that the service automatically detects. This improves video quality and is enabled by default.
|
|
3565
3565
|
* @public
|
|
3566
3566
|
*/
|
|
3567
|
-
SceneChangeDetect?: Mpeg2SceneChangeDetect;
|
|
3567
|
+
SceneChangeDetect?: Mpeg2SceneChangeDetect | undefined;
|
|
3568
3568
|
/**
|
|
3569
3569
|
* Ignore this setting unless your input frame rate is 23.976 or 24 frames per second (fps). Enable slow PAL to create a 25 fps output. When you enable slow PAL, MediaConvert relabels the video frames to 25 fps and resamples your audio to keep it synchronized with the video. Note that enabling this setting will slightly reduce the duration of your video. Required settings: You must also set Framerate to 25.
|
|
3570
3570
|
* @public
|
|
3571
3571
|
*/
|
|
3572
|
-
SlowPal?: Mpeg2SlowPal;
|
|
3572
|
+
SlowPal?: Mpeg2SlowPal | undefined;
|
|
3573
3573
|
/**
|
|
3574
3574
|
* Ignore this setting unless you need to comply with a specification that requires a specific value. If you don't have a specification requirement, we recommend that you adjust the softness of your output by using a lower value for the setting Sharpness or by enabling a noise reducer filter. The Softness setting specifies the quantization matrices that the encoder uses. Keep the default value, 0, to use the AWS Elemental default matrices. Choose a value from 17 to 128 to use planar interpolation. Increasing values from 17 to 128 result in increasing reduction of high-frequency data. The value 128 results in the softest video.
|
|
3575
3575
|
* @public
|
|
3576
3576
|
*/
|
|
3577
|
-
Softness?: number;
|
|
3577
|
+
Softness?: number | undefined;
|
|
3578
3578
|
/**
|
|
3579
3579
|
* Keep the default value, Enabled, to adjust quantization within each frame based on spatial variation of content complexity. When you enable this feature, the encoder uses fewer bits on areas that can sustain more distortion with no noticeable visual degradation and uses more bits on areas where any small distortion will be noticeable. For example, complex textured blocks are encoded with fewer bits and smooth textured blocks are encoded with more bits. Enabling this feature will almost always improve your video quality. Note, though, that this feature doesn't take into account where the viewer's attention is likely to be. If viewers are likely to be focusing their attention on a part of the screen with a lot of complex texture, you might choose to disable this feature. Related setting: When you enable spatial adaptive quantization, set the value for Adaptive quantization depending on your content. For homogeneous content, such as cartoons and video games, set it to Low. For content with a wider variety of textures, set it to High or Higher.
|
|
3580
3580
|
* @public
|
|
3581
3581
|
*/
|
|
3582
|
-
SpatialAdaptiveQuantization?: Mpeg2SpatialAdaptiveQuantization;
|
|
3582
|
+
SpatialAdaptiveQuantization?: Mpeg2SpatialAdaptiveQuantization | undefined;
|
|
3583
3583
|
/**
|
|
3584
3584
|
* Specify whether this output's video uses the D10 syntax. Keep the default value to not use the syntax. Related settings: When you choose D10 for your MXF profile, you must also set this value to D10.
|
|
3585
3585
|
* @public
|
|
3586
3586
|
*/
|
|
3587
|
-
Syntax?: Mpeg2Syntax;
|
|
3587
|
+
Syntax?: Mpeg2Syntax | undefined;
|
|
3588
3588
|
/**
|
|
3589
3589
|
* When you do frame rate conversion from 23.976 frames per second (fps) to 29.97 fps, and your output scan type is interlaced, you can optionally enable hard or soft telecine to create a smoother picture. Hard telecine produces a 29.97i output. Soft telecine produces an output with a 23.976 output that signals to the video player device to do the conversion during play back. When you keep the default value, None, MediaConvert does a standard frame rate conversion to 29.97 without doing anything with the field polarity to create a smoother picture.
|
|
3590
3590
|
* @public
|
|
3591
3591
|
*/
|
|
3592
|
-
Telecine?: Mpeg2Telecine;
|
|
3592
|
+
Telecine?: Mpeg2Telecine | undefined;
|
|
3593
3593
|
/**
|
|
3594
3594
|
* Keep the default value, Enabled, to adjust quantization within each frame based on temporal variation of content complexity. When you enable this feature, the encoder uses fewer bits on areas of the frame that aren't moving and uses more bits on complex objects with sharp edges that move a lot. For example, this feature improves the readability of text tickers on newscasts and scoreboards on sports matches. Enabling this feature will almost always improve your video quality. Note, though, that this feature doesn't take into account where the viewer's attention is likely to be. If viewers are likely to be focusing their attention on a part of the screen that doesn't have moving objects with sharp edges, such as sports athletes' faces, you might choose to disable this feature. Related setting: When you enable temporal quantization, adjust the strength of the filter with the setting Adaptive quantization.
|
|
3595
3595
|
* @public
|
|
3596
3596
|
*/
|
|
3597
|
-
TemporalAdaptiveQuantization?: Mpeg2TemporalAdaptiveQuantization;
|
|
3597
|
+
TemporalAdaptiveQuantization?: Mpeg2TemporalAdaptiveQuantization | undefined;
|
|
3598
3598
|
}
|
|
3599
3599
|
/**
|
|
3600
3600
|
* @public
|
|
@@ -3721,67 +3721,67 @@ export interface ProresSettings {
|
|
|
3721
3721
|
* This setting applies only to ProRes 4444 and ProRes 4444 XQ outputs that you create from inputs that use 4:4:4 chroma sampling. Set Preserve 4:4:4 sampling to allow outputs to also use 4:4:4 chroma sampling. You must specify a value for this setting when your output codec profile supports 4:4:4 chroma sampling. Related Settings: For Apple ProRes outputs with 4:4:4 chroma sampling: Choose Preserve 4:4:4 sampling. Use when your input has 4:4:4 chroma sampling and your output codec Profile is Apple ProRes 4444 or 4444 XQ. Note that when you choose Preserve 4:4:4 sampling, you cannot include any of the following Preprocessors: Dolby Vision, HDR10+, or Noise reducer.
|
|
3722
3722
|
* @public
|
|
3723
3723
|
*/
|
|
3724
|
-
ChromaSampling?: ProresChromaSampling;
|
|
3724
|
+
ChromaSampling?: ProresChromaSampling | undefined;
|
|
3725
3725
|
/**
|
|
3726
3726
|
* Use Profile to specify the type of Apple ProRes codec to use for this output.
|
|
3727
3727
|
* @public
|
|
3728
3728
|
*/
|
|
3729
|
-
CodecProfile?: ProresCodecProfile;
|
|
3729
|
+
CodecProfile?: ProresCodecProfile | undefined;
|
|
3730
3730
|
/**
|
|
3731
3731
|
* If you are using the console, use the Framerate setting to specify the frame rate for this output. If you want to keep the same frame rate as the input video, choose Follow source. If you want to do frame rate conversion, choose a frame rate from the dropdown list or choose Custom. The framerates shown in the dropdown list are decimal approximations of fractions. If you choose Custom, specify your frame rate as a fraction.
|
|
3732
3732
|
* @public
|
|
3733
3733
|
*/
|
|
3734
|
-
FramerateControl?: ProresFramerateControl;
|
|
3734
|
+
FramerateControl?: ProresFramerateControl | undefined;
|
|
3735
3735
|
/**
|
|
3736
3736
|
* Choose the method that you want MediaConvert to use when increasing or decreasing the frame rate. For numerically simple conversions, such as 60 fps to 30 fps: We recommend that you keep the default value, Drop duplicate. For numerically complex conversions, to avoid stutter: Choose Interpolate. This results in a smooth picture, but might introduce undesirable video artifacts. For complex frame rate conversions, especially if your source video has already been converted from its original cadence: Choose FrameFormer to do motion-compensated interpolation. FrameFormer uses the best conversion method frame by frame. Note that using FrameFormer increases the transcoding time and incurs a significant add-on cost. When you choose FrameFormer, your input video resolution must be at least 128x96.
|
|
3737
3737
|
* @public
|
|
3738
3738
|
*/
|
|
3739
|
-
FramerateConversionAlgorithm?: ProresFramerateConversionAlgorithm;
|
|
3739
|
+
FramerateConversionAlgorithm?: ProresFramerateConversionAlgorithm | undefined;
|
|
3740
3740
|
/**
|
|
3741
3741
|
* When you use the API for transcode jobs that use frame rate conversion, specify the frame rate as a fraction. For example, 24000 / 1001 = 23.976 fps. Use FramerateDenominator to specify the denominator of this fraction. In this example, use 1001 for the value of FramerateDenominator. When you use the console for transcode jobs that use frame rate conversion, provide the value as a decimal number for Framerate. In this example, specify 23.976.
|
|
3742
3742
|
* @public
|
|
3743
3743
|
*/
|
|
3744
|
-
FramerateDenominator?: number;
|
|
3744
|
+
FramerateDenominator?: number | undefined;
|
|
3745
3745
|
/**
|
|
3746
3746
|
* When you use the API for transcode jobs that use frame rate conversion, specify the frame rate as a fraction. For example, 24000 / 1001 = 23.976 fps. Use FramerateNumerator to specify the numerator of this fraction. In this example, use 24000 for the value of FramerateNumerator. When you use the console for transcode jobs that use frame rate conversion, provide the value as a decimal number for Framerate. In this example, specify 23.976.
|
|
3747
3747
|
* @public
|
|
3748
3748
|
*/
|
|
3749
|
-
FramerateNumerator?: number;
|
|
3749
|
+
FramerateNumerator?: number | undefined;
|
|
3750
3750
|
/**
|
|
3751
3751
|
* Choose the scan line type for the output. Keep the default value, Progressive to create a progressive output, regardless of the scan type of your input. Use Top field first or Bottom field first to create an output that's interlaced with the same field polarity throughout. Use Follow, default top or Follow, default bottom to produce outputs with the same field polarity as the source. For jobs that have multiple inputs, the output field polarity might change over the course of the output. Follow behavior depends on the input scan type. If the source is interlaced, the output will be interlaced with the same polarity as the source. If the source is progressive, the output will be interlaced with top field bottom field first, depending on which of the Follow options you choose.
|
|
3752
3752
|
* @public
|
|
3753
3753
|
*/
|
|
3754
|
-
InterlaceMode?: ProresInterlaceMode;
|
|
3754
|
+
InterlaceMode?: ProresInterlaceMode | undefined;
|
|
3755
3755
|
/**
|
|
3756
3756
|
* Optional. Specify how the service determines the pixel aspect ratio (PAR) for this output. The default behavior, Follow source, uses the PAR from your input video for your output. To specify a different PAR, choose any value other than Follow source. When you choose SPECIFIED for this setting, you must also specify values for the parNumerator and parDenominator settings.
|
|
3757
3757
|
* @public
|
|
3758
3758
|
*/
|
|
3759
|
-
ParControl?: ProresParControl;
|
|
3759
|
+
ParControl?: ProresParControl | undefined;
|
|
3760
3760
|
/**
|
|
3761
3761
|
* Required when you set Pixel aspect ratio to SPECIFIED. On the console, this corresponds to any value other than Follow source. When you specify an output pixel aspect ratio (PAR) that is different from your input video PAR, provide your output PAR as a ratio. For example, for D1/DV NTSC widescreen, you would specify the ratio 40:33. In this example, the value for parDenominator is 33.
|
|
3762
3762
|
* @public
|
|
3763
3763
|
*/
|
|
3764
|
-
ParDenominator?: number;
|
|
3764
|
+
ParDenominator?: number | undefined;
|
|
3765
3765
|
/**
|
|
3766
3766
|
* Required when you set Pixel aspect ratio to SPECIFIED. On the console, this corresponds to any value other than Follow source. When you specify an output pixel aspect ratio (PAR) that is different from your input video PAR, provide your output PAR as a ratio. For example, for D1/DV NTSC widescreen, you would specify the ratio 40:33. In this example, the value for parNumerator is 40.
|
|
3767
3767
|
* @public
|
|
3768
3768
|
*/
|
|
3769
|
-
ParNumerator?: number;
|
|
3769
|
+
ParNumerator?: number | undefined;
|
|
3770
3770
|
/**
|
|
3771
3771
|
* Use this setting for interlaced outputs, when your output frame rate is half of your input frame rate. In this situation, choose Optimized interlacing to create a better quality interlaced output. In this case, each progressive frame from the input corresponds to an interlaced field in the output. Keep the default value, Basic interlacing, for all other output frame rates. With basic interlacing, MediaConvert performs any frame rate conversion first and then interlaces the frames. When you choose Optimized interlacing and you set your output frame rate to a value that isn't suitable for optimized interlacing, MediaConvert automatically falls back to basic interlacing. Required settings: To use optimized interlacing, you must set Telecine to None or Soft. You can't use optimized interlacing for hard telecine outputs. You must also set Interlace mode to a value other than Progressive.
|
|
3772
3772
|
* @public
|
|
3773
3773
|
*/
|
|
3774
|
-
ScanTypeConversionMode?: ProresScanTypeConversionMode;
|
|
3774
|
+
ScanTypeConversionMode?: ProresScanTypeConversionMode | undefined;
|
|
3775
3775
|
/**
|
|
3776
3776
|
* Ignore this setting unless your input frame rate is 23.976 or 24 frames per second (fps). Enable slow PAL to create a 25 fps output. When you enable slow PAL, MediaConvert relabels the video frames to 25 fps and resamples your audio to keep it synchronized with the video. Note that enabling this setting will slightly reduce the duration of your video. Required settings: You must also set Framerate to 25.
|
|
3777
3777
|
* @public
|
|
3778
3778
|
*/
|
|
3779
|
-
SlowPal?: ProresSlowPal;
|
|
3779
|
+
SlowPal?: ProresSlowPal | undefined;
|
|
3780
3780
|
/**
|
|
3781
3781
|
* When you do frame rate conversion from 23.976 frames per second (fps) to 29.97 fps, and your output scan type is interlaced, you can optionally enable hard telecine to create a smoother picture. When you keep the default value, None, MediaConvert does a standard frame rate conversion to 29.97 without doing anything with the field polarity to create a smoother picture.
|
|
3782
3782
|
* @public
|
|
3783
3783
|
*/
|
|
3784
|
-
Telecine?: ProresTelecine;
|
|
3784
|
+
Telecine?: ProresTelecine | undefined;
|
|
3785
3785
|
}
|
|
3786
3786
|
/**
|
|
3787
3787
|
* @public
|
|
@@ -3878,47 +3878,47 @@ export interface UncompressedSettings {
|
|
|
3878
3878
|
* The four character code for the uncompressed video.
|
|
3879
3879
|
* @public
|
|
3880
3880
|
*/
|
|
3881
|
-
Fourcc?: UncompressedFourcc;
|
|
3881
|
+
Fourcc?: UncompressedFourcc | undefined;
|
|
3882
3882
|
/**
|
|
3883
3883
|
* Use the Framerate setting to specify the frame rate for this output. If you want to keep the same frame rate as the input video, choose Follow source. If you want to do frame rate conversion, choose a frame rate from the dropdown list or choose Custom. The framerates shown in the dropdown list are decimal approximations of fractions. If you choose Custom, specify your frame rate as a fraction.
|
|
3884
3884
|
* @public
|
|
3885
3885
|
*/
|
|
3886
|
-
FramerateControl?: UncompressedFramerateControl;
|
|
3886
|
+
FramerateControl?: UncompressedFramerateControl | undefined;
|
|
3887
3887
|
/**
|
|
3888
3888
|
* Choose the method that you want MediaConvert to use when increasing or decreasing the frame rate. For numerically simple conversions, such as 60 fps to 30 fps: We recommend that you keep the default value, Drop duplicate. For numerically complex conversions, to avoid stutter: Choose Interpolate. This results in a smooth picture, but might introduce undesirable video artifacts. For complex frame rate conversions, especially if your source video has already been converted from its original cadence: Choose FrameFormer to do motion-compensated interpolation. FrameFormer uses the best conversion method frame by frame. Note that using FrameFormer increases the transcoding time and incurs a significant add-on cost. When you choose FrameFormer, your input video resolution must be at least 128x96.
|
|
3889
3889
|
* @public
|
|
3890
3890
|
*/
|
|
3891
|
-
FramerateConversionAlgorithm?: UncompressedFramerateConversionAlgorithm;
|
|
3891
|
+
FramerateConversionAlgorithm?: UncompressedFramerateConversionAlgorithm | undefined;
|
|
3892
3892
|
/**
|
|
3893
3893
|
* When you use the API for transcode jobs that use frame rate conversion, specify the frame rate as a fraction. For example, 24000 / 1001 = 23.976 fps. Use FramerateDenominator to specify the denominator of this fraction. In this example, use 1001 for the value of FramerateDenominator. When you use the console for transcode jobs that use frame rate conversion, provide the value as a decimal number for Framerate. In this example, specify 23.976.
|
|
3894
3894
|
* @public
|
|
3895
3895
|
*/
|
|
3896
|
-
FramerateDenominator?: number;
|
|
3896
|
+
FramerateDenominator?: number | undefined;
|
|
3897
3897
|
/**
|
|
3898
3898
|
* When you use the API for transcode jobs that use frame rate conversion, specify the frame rate as a fraction. For example, 24000 / 1001 = 23.976 fps. Use FramerateNumerator to specify the numerator of this fraction. In this example, use 24000 for the value of FramerateNumerator. When you use the console for transcode jobs that use frame rate conversion, provide the value as a decimal number for Framerate. In this example, specify 23.976.
|
|
3899
3899
|
* @public
|
|
3900
3900
|
*/
|
|
3901
|
-
FramerateNumerator?: number;
|
|
3901
|
+
FramerateNumerator?: number | undefined;
|
|
3902
3902
|
/**
|
|
3903
3903
|
* Optional. Choose the scan line type for this output. If you don't specify a value, MediaConvert will create a progressive output.
|
|
3904
3904
|
* @public
|
|
3905
3905
|
*/
|
|
3906
|
-
InterlaceMode?: UncompressedInterlaceMode;
|
|
3906
|
+
InterlaceMode?: UncompressedInterlaceMode | undefined;
|
|
3907
3907
|
/**
|
|
3908
3908
|
* Use this setting for interlaced outputs, when your output frame rate is half of your input frame rate. In this situation, choose Optimized interlacing to create a better quality interlaced output. In this case, each progressive frame from the input corresponds to an interlaced field in the output. Keep the default value, Basic interlacing, for all other output frame rates. With basic interlacing, MediaConvert performs any frame rate conversion first and then interlaces the frames. When you choose Optimized interlacing and you set your output frame rate to a value that isn't suitable for optimized interlacing, MediaConvert automatically falls back to basic interlacing. Required settings: To use optimized interlacing, you must set Telecine to None or Soft. You can't use optimized interlacing for hard telecine outputs. You must also set Interlace mode to a value other than Progressive.
|
|
3909
3909
|
* @public
|
|
3910
3910
|
*/
|
|
3911
|
-
ScanTypeConversionMode?: UncompressedScanTypeConversionMode;
|
|
3911
|
+
ScanTypeConversionMode?: UncompressedScanTypeConversionMode | undefined;
|
|
3912
3912
|
/**
|
|
3913
3913
|
* Ignore this setting unless your input frame rate is 23.976 or 24 frames per second (fps). Enable slow PAL to create a 25 fps output by relabeling the video frames and resampling your audio. Note that enabling this setting will slightly reduce the duration of your video. Related settings: You must also set Framerate to 25.
|
|
3914
3914
|
* @public
|
|
3915
3915
|
*/
|
|
3916
|
-
SlowPal?: UncompressedSlowPal;
|
|
3916
|
+
SlowPal?: UncompressedSlowPal | undefined;
|
|
3917
3917
|
/**
|
|
3918
3918
|
* When you do frame rate conversion from 23.976 frames per second (fps) to 29.97 fps, and your output scan type is interlaced, you can optionally enable hard telecine to create a smoother picture. When you keep the default value, None, MediaConvert does a standard frame rate conversion to 29.97 without doing anything with the field polarity to create a smoother picture.
|
|
3919
3919
|
* @public
|
|
3920
3920
|
*/
|
|
3921
|
-
Telecine?: UncompressedTelecine;
|
|
3921
|
+
Telecine?: UncompressedTelecine | undefined;
|
|
3922
3922
|
}
|
|
3923
3923
|
/**
|
|
3924
3924
|
* @public
|
|
@@ -4015,47 +4015,47 @@ export interface Vc3Settings {
|
|
|
4015
4015
|
* If you are using the console, use the Framerate setting to specify the frame rate for this output. If you want to keep the same frame rate as the input video, choose Follow source. If you want to do frame rate conversion, choose a frame rate from the dropdown list or choose Custom. The framerates shown in the dropdown list are decimal approximations of fractions. If you choose Custom, specify your frame rate as a fraction.
|
|
4016
4016
|
* @public
|
|
4017
4017
|
*/
|
|
4018
|
-
FramerateControl?: Vc3FramerateControl;
|
|
4018
|
+
FramerateControl?: Vc3FramerateControl | undefined;
|
|
4019
4019
|
/**
|
|
4020
4020
|
* Choose the method that you want MediaConvert to use when increasing or decreasing the frame rate. For numerically simple conversions, such as 60 fps to 30 fps: We recommend that you keep the default value, Drop duplicate. For numerically complex conversions, to avoid stutter: Choose Interpolate. This results in a smooth picture, but might introduce undesirable video artifacts. For complex frame rate conversions, especially if your source video has already been converted from its original cadence: Choose FrameFormer to do motion-compensated interpolation. FrameFormer uses the best conversion method frame by frame. Note that using FrameFormer increases the transcoding time and incurs a significant add-on cost. When you choose FrameFormer, your input video resolution must be at least 128x96.
|
|
4021
4021
|
* @public
|
|
4022
4022
|
*/
|
|
4023
|
-
FramerateConversionAlgorithm?: Vc3FramerateConversionAlgorithm;
|
|
4023
|
+
FramerateConversionAlgorithm?: Vc3FramerateConversionAlgorithm | undefined;
|
|
4024
4024
|
/**
|
|
4025
4025
|
* When you use the API for transcode jobs that use frame rate conversion, specify the frame rate as a fraction. For example, 24000 / 1001 = 23.976 fps. Use FramerateDenominator to specify the denominator of this fraction. In this example, use 1001 for the value of FramerateDenominator. When you use the console for transcode jobs that use frame rate conversion, provide the value as a decimal number for Framerate. In this example, specify 23.976.
|
|
4026
4026
|
* @public
|
|
4027
4027
|
*/
|
|
4028
|
-
FramerateDenominator?: number;
|
|
4028
|
+
FramerateDenominator?: number | undefined;
|
|
4029
4029
|
/**
|
|
4030
4030
|
* When you use the API for transcode jobs that use frame rate conversion, specify the frame rate as a fraction. For example, 24000 / 1001 = 23.976 fps. Use FramerateNumerator to specify the numerator of this fraction. In this example, use 24000 for the value of FramerateNumerator. When you use the console for transcode jobs that use frame rate conversion, provide the value as a decimal number for Framerate. In this example, specify 23.976.
|
|
4031
4031
|
* @public
|
|
4032
4032
|
*/
|
|
4033
|
-
FramerateNumerator?: number;
|
|
4033
|
+
FramerateNumerator?: number | undefined;
|
|
4034
4034
|
/**
|
|
4035
4035
|
* Optional. Choose the scan line type for this output. If you don't specify a value, MediaConvert will create a progressive output.
|
|
4036
4036
|
* @public
|
|
4037
4037
|
*/
|
|
4038
|
-
InterlaceMode?: Vc3InterlaceMode;
|
|
4038
|
+
InterlaceMode?: Vc3InterlaceMode | undefined;
|
|
4039
4039
|
/**
|
|
4040
4040
|
* Use this setting for interlaced outputs, when your output frame rate is half of your input frame rate. In this situation, choose Optimized interlacing to create a better quality interlaced output. In this case, each progressive frame from the input corresponds to an interlaced field in the output. Keep the default value, Basic interlacing, for all other output frame rates. With basic interlacing, MediaConvert performs any frame rate conversion first and then interlaces the frames. When you choose Optimized interlacing and you set your output frame rate to a value that isn't suitable for optimized interlacing, MediaConvert automatically falls back to basic interlacing. Required settings: To use optimized interlacing, you must set Telecine to None or Soft. You can't use optimized interlacing for hard telecine outputs. You must also set Interlace mode to a value other than Progressive.
|
|
4041
4041
|
* @public
|
|
4042
4042
|
*/
|
|
4043
|
-
ScanTypeConversionMode?: Vc3ScanTypeConversionMode;
|
|
4043
|
+
ScanTypeConversionMode?: Vc3ScanTypeConversionMode | undefined;
|
|
4044
4044
|
/**
|
|
4045
4045
|
* Ignore this setting unless your input frame rate is 23.976 or 24 frames per second (fps). Enable slow PAL to create a 25 fps output by relabeling the video frames and resampling your audio. Note that enabling this setting will slightly reduce the duration of your video. Related settings: You must also set Framerate to 25.
|
|
4046
4046
|
* @public
|
|
4047
4047
|
*/
|
|
4048
|
-
SlowPal?: Vc3SlowPal;
|
|
4048
|
+
SlowPal?: Vc3SlowPal | undefined;
|
|
4049
4049
|
/**
|
|
4050
4050
|
* When you do frame rate conversion from 23.976 frames per second (fps) to 29.97 fps, and your output scan type is interlaced, you can optionally enable hard telecine to create a smoother picture. When you keep the default value, None, MediaConvert does a standard frame rate conversion to 29.97 without doing anything with the field polarity to create a smoother picture.
|
|
4051
4051
|
* @public
|
|
4052
4052
|
*/
|
|
4053
|
-
Telecine?: Vc3Telecine;
|
|
4053
|
+
Telecine?: Vc3Telecine | undefined;
|
|
4054
4054
|
/**
|
|
4055
4055
|
* Specify the VC3 class to choose the quality characteristics for this output. VC3 class, together with the settings Framerate (framerateNumerator and framerateDenominator) and Resolution (height and width), determine your output bitrate. For example, say that your video resolution is 1920x1080 and your framerate is 29.97. Then Class 145 gives you an output with a bitrate of approximately 145 Mbps and Class 220 gives you and output with a bitrate of approximately 220 Mbps. VC3 class also specifies the color bit depth of your output.
|
|
4056
4056
|
* @public
|
|
4057
4057
|
*/
|
|
4058
|
-
Vc3Class?: Vc3Class;
|
|
4058
|
+
Vc3Class?: Vc3Class | undefined;
|
|
4059
4059
|
}
|
|
4060
4060
|
/**
|
|
4061
4061
|
* @public
|
|
@@ -4126,67 +4126,67 @@ export interface Vp8Settings {
|
|
|
4126
4126
|
* Target bitrate in bits/second. For example, enter five megabits per second as 5000000.
|
|
4127
4127
|
* @public
|
|
4128
4128
|
*/
|
|
4129
|
-
Bitrate?: number;
|
|
4129
|
+
Bitrate?: number | undefined;
|
|
4130
4130
|
/**
|
|
4131
4131
|
* If you are using the console, use the Framerate setting to specify the frame rate for this output. If you want to keep the same frame rate as the input video, choose Follow source. If you want to do frame rate conversion, choose a frame rate from the dropdown list or choose Custom. The framerates shown in the dropdown list are decimal approximations of fractions. If you choose Custom, specify your frame rate as a fraction.
|
|
4132
4132
|
* @public
|
|
4133
4133
|
*/
|
|
4134
|
-
FramerateControl?: Vp8FramerateControl;
|
|
4134
|
+
FramerateControl?: Vp8FramerateControl | undefined;
|
|
4135
4135
|
/**
|
|
4136
4136
|
* Choose the method that you want MediaConvert to use when increasing or decreasing the frame rate. For numerically simple conversions, such as 60 fps to 30 fps: We recommend that you keep the default value, Drop duplicate. For numerically complex conversions, to avoid stutter: Choose Interpolate. This results in a smooth picture, but might introduce undesirable video artifacts. For complex frame rate conversions, especially if your source video has already been converted from its original cadence: Choose FrameFormer to do motion-compensated interpolation. FrameFormer uses the best conversion method frame by frame. Note that using FrameFormer increases the transcoding time and incurs a significant add-on cost. When you choose FrameFormer, your input video resolution must be at least 128x96.
|
|
4137
4137
|
* @public
|
|
4138
4138
|
*/
|
|
4139
|
-
FramerateConversionAlgorithm?: Vp8FramerateConversionAlgorithm;
|
|
4139
|
+
FramerateConversionAlgorithm?: Vp8FramerateConversionAlgorithm | undefined;
|
|
4140
4140
|
/**
|
|
4141
4141
|
* When you use the API for transcode jobs that use frame rate conversion, specify the frame rate as a fraction. For example, 24000 / 1001 = 23.976 fps. Use FramerateDenominator to specify the denominator of this fraction. In this example, use 1001 for the value of FramerateDenominator. When you use the console for transcode jobs that use frame rate conversion, provide the value as a decimal number for Framerate. In this example, specify 23.976.
|
|
4142
4142
|
* @public
|
|
4143
4143
|
*/
|
|
4144
|
-
FramerateDenominator?: number;
|
|
4144
|
+
FramerateDenominator?: number | undefined;
|
|
4145
4145
|
/**
|
|
4146
4146
|
* When you use the API for transcode jobs that use frame rate conversion, specify the frame rate as a fraction. For example, 24000 / 1001 = 23.976 fps. Use FramerateNumerator to specify the numerator of this fraction. In this example, use 24000 for the value of FramerateNumerator. When you use the console for transcode jobs that use frame rate conversion, provide the value as a decimal number for Framerate. In this example, specify 23.976.
|
|
4147
4147
|
* @public
|
|
4148
4148
|
*/
|
|
4149
|
-
FramerateNumerator?: number;
|
|
4149
|
+
FramerateNumerator?: number | undefined;
|
|
4150
4150
|
/**
|
|
4151
4151
|
* GOP Length (keyframe interval) in frames. Must be greater than zero.
|
|
4152
4152
|
* @public
|
|
4153
4153
|
*/
|
|
4154
|
-
GopSize?: number;
|
|
4154
|
+
GopSize?: number | undefined;
|
|
4155
4155
|
/**
|
|
4156
4156
|
* Optional. Size of buffer (HRD buffer model) in bits. For example, enter five megabits as 5000000.
|
|
4157
4157
|
* @public
|
|
4158
4158
|
*/
|
|
4159
|
-
HrdBufferSize?: number;
|
|
4159
|
+
HrdBufferSize?: number | undefined;
|
|
4160
4160
|
/**
|
|
4161
4161
|
* Ignore this setting unless you set qualityTuningLevel to MULTI_PASS. Optional. Specify the maximum bitrate in bits/second. For example, enter five megabits per second as 5000000. The default behavior uses twice the target bitrate as the maximum bitrate.
|
|
4162
4162
|
* @public
|
|
4163
4163
|
*/
|
|
4164
|
-
MaxBitrate?: number;
|
|
4164
|
+
MaxBitrate?: number | undefined;
|
|
4165
4165
|
/**
|
|
4166
4166
|
* Optional. Specify how the service determines the pixel aspect ratio (PAR) for this output. The default behavior, Follow source, uses the PAR from your input video for your output. To specify a different PAR in the console, choose any value other than Follow source. When you choose SPECIFIED for this setting, you must also specify values for the parNumerator and parDenominator settings.
|
|
4167
4167
|
* @public
|
|
4168
4168
|
*/
|
|
4169
|
-
ParControl?: Vp8ParControl;
|
|
4169
|
+
ParControl?: Vp8ParControl | undefined;
|
|
4170
4170
|
/**
|
|
4171
4171
|
* Required when you set Pixel aspect ratio to SPECIFIED. On the console, this corresponds to any value other than Follow source. When you specify an output pixel aspect ratio (PAR) that is different from your input video PAR, provide your output PAR as a ratio. For example, for D1/DV NTSC widescreen, you would specify the ratio 40:33. In this example, the value for parDenominator is 33.
|
|
4172
4172
|
* @public
|
|
4173
4173
|
*/
|
|
4174
|
-
ParDenominator?: number;
|
|
4174
|
+
ParDenominator?: number | undefined;
|
|
4175
4175
|
/**
|
|
4176
4176
|
* Required when you set Pixel aspect ratio to SPECIFIED. On the console, this corresponds to any value other than Follow source. When you specify an output pixel aspect ratio (PAR) that is different from your input video PAR, provide your output PAR as a ratio. For example, for D1/DV NTSC widescreen, you would specify the ratio 40:33. In this example, the value for parNumerator is 40.
|
|
4177
4177
|
* @public
|
|
4178
4178
|
*/
|
|
4179
|
-
ParNumerator?: number;
|
|
4179
|
+
ParNumerator?: number | undefined;
|
|
4180
4180
|
/**
|
|
4181
4181
|
* Optional. Use Quality tuning level to choose how you want to trade off encoding speed for output video quality. The default behavior is faster, lower quality, multi-pass encoding.
|
|
4182
4182
|
* @public
|
|
4183
4183
|
*/
|
|
4184
|
-
QualityTuningLevel?: Vp8QualityTuningLevel;
|
|
4184
|
+
QualityTuningLevel?: Vp8QualityTuningLevel | undefined;
|
|
4185
4185
|
/**
|
|
4186
4186
|
* With the VP8 codec, you can use only the variable bitrate (VBR) rate control mode.
|
|
4187
4187
|
* @public
|
|
4188
4188
|
*/
|
|
4189
|
-
RateControlMode?: Vp8RateControlMode;
|
|
4189
|
+
RateControlMode?: Vp8RateControlMode | undefined;
|
|
4190
4190
|
}
|
|
4191
4191
|
/**
|
|
4192
4192
|
* @public
|
|
@@ -4257,67 +4257,67 @@ export interface Vp9Settings {
|
|
|
4257
4257
|
* Target bitrate in bits/second. For example, enter five megabits per second as 5000000.
|
|
4258
4258
|
* @public
|
|
4259
4259
|
*/
|
|
4260
|
-
Bitrate?: number;
|
|
4260
|
+
Bitrate?: number | undefined;
|
|
4261
4261
|
/**
|
|
4262
4262
|
* If you are using the console, use the Framerate setting to specify the frame rate for this output. If you want to keep the same frame rate as the input video, choose Follow source. If you want to do frame rate conversion, choose a frame rate from the dropdown list or choose Custom. The framerates shown in the dropdown list are decimal approximations of fractions. If you choose Custom, specify your frame rate as a fraction.
|
|
4263
4263
|
* @public
|
|
4264
4264
|
*/
|
|
4265
|
-
FramerateControl?: Vp9FramerateControl;
|
|
4265
|
+
FramerateControl?: Vp9FramerateControl | undefined;
|
|
4266
4266
|
/**
|
|
4267
4267
|
* Choose the method that you want MediaConvert to use when increasing or decreasing the frame rate. For numerically simple conversions, such as 60 fps to 30 fps: We recommend that you keep the default value, Drop duplicate. For numerically complex conversions, to avoid stutter: Choose Interpolate. This results in a smooth picture, but might introduce undesirable video artifacts. For complex frame rate conversions, especially if your source video has already been converted from its original cadence: Choose FrameFormer to do motion-compensated interpolation. FrameFormer uses the best conversion method frame by frame. Note that using FrameFormer increases the transcoding time and incurs a significant add-on cost. When you choose FrameFormer, your input video resolution must be at least 128x96.
|
|
4268
4268
|
* @public
|
|
4269
4269
|
*/
|
|
4270
|
-
FramerateConversionAlgorithm?: Vp9FramerateConversionAlgorithm;
|
|
4270
|
+
FramerateConversionAlgorithm?: Vp9FramerateConversionAlgorithm | undefined;
|
|
4271
4271
|
/**
|
|
4272
4272
|
* When you use the API for transcode jobs that use frame rate conversion, specify the frame rate as a fraction. For example, 24000 / 1001 = 23.976 fps. Use FramerateDenominator to specify the denominator of this fraction. In this example, use 1001 for the value of FramerateDenominator. When you use the console for transcode jobs that use frame rate conversion, provide the value as a decimal number for Framerate. In this example, specify 23.976.
|
|
4273
4273
|
* @public
|
|
4274
4274
|
*/
|
|
4275
|
-
FramerateDenominator?: number;
|
|
4275
|
+
FramerateDenominator?: number | undefined;
|
|
4276
4276
|
/**
|
|
4277
4277
|
* When you use the API for transcode jobs that use frame rate conversion, specify the frame rate as a fraction. For example, 24000 / 1001 = 23.976 fps. Use FramerateNumerator to specify the numerator of this fraction. In this example, use 24000 for the value of FramerateNumerator. When you use the console for transcode jobs that use frame rate conversion, provide the value as a decimal number for Framerate. In this example, specify 23.976.
|
|
4278
4278
|
* @public
|
|
4279
4279
|
*/
|
|
4280
|
-
FramerateNumerator?: number;
|
|
4280
|
+
FramerateNumerator?: number | undefined;
|
|
4281
4281
|
/**
|
|
4282
4282
|
* GOP Length (keyframe interval) in frames. Must be greater than zero.
|
|
4283
4283
|
* @public
|
|
4284
4284
|
*/
|
|
4285
|
-
GopSize?: number;
|
|
4285
|
+
GopSize?: number | undefined;
|
|
4286
4286
|
/**
|
|
4287
4287
|
* Size of buffer (HRD buffer model) in bits. For example, enter five megabits as 5000000.
|
|
4288
4288
|
* @public
|
|
4289
4289
|
*/
|
|
4290
|
-
HrdBufferSize?: number;
|
|
4290
|
+
HrdBufferSize?: number | undefined;
|
|
4291
4291
|
/**
|
|
4292
4292
|
* Ignore this setting unless you set qualityTuningLevel to MULTI_PASS. Optional. Specify the maximum bitrate in bits/second. For example, enter five megabits per second as 5000000. The default behavior uses twice the target bitrate as the maximum bitrate.
|
|
4293
4293
|
* @public
|
|
4294
4294
|
*/
|
|
4295
|
-
MaxBitrate?: number;
|
|
4295
|
+
MaxBitrate?: number | undefined;
|
|
4296
4296
|
/**
|
|
4297
4297
|
* Optional. Specify how the service determines the pixel aspect ratio for this output. The default behavior is to use the same pixel aspect ratio as your input video.
|
|
4298
4298
|
* @public
|
|
4299
4299
|
*/
|
|
4300
|
-
ParControl?: Vp9ParControl;
|
|
4300
|
+
ParControl?: Vp9ParControl | undefined;
|
|
4301
4301
|
/**
|
|
4302
4302
|
* Required when you set Pixel aspect ratio to SPECIFIED. On the console, this corresponds to any value other than Follow source. When you specify an output pixel aspect ratio (PAR) that is different from your input video PAR, provide your output PAR as a ratio. For example, for D1/DV NTSC widescreen, you would specify the ratio 40:33. In this example, the value for parDenominator is 33.
|
|
4303
4303
|
* @public
|
|
4304
4304
|
*/
|
|
4305
|
-
ParDenominator?: number;
|
|
4305
|
+
ParDenominator?: number | undefined;
|
|
4306
4306
|
/**
|
|
4307
4307
|
* Required when you set Pixel aspect ratio to SPECIFIED. On the console, this corresponds to any value other than Follow source. When you specify an output pixel aspect ratio (PAR) that is different from your input video PAR, provide your output PAR as a ratio. For example, for D1/DV NTSC widescreen, you would specify the ratio 40:33. In this example, the value for parNumerator is 40.
|
|
4308
4308
|
* @public
|
|
4309
4309
|
*/
|
|
4310
|
-
ParNumerator?: number;
|
|
4310
|
+
ParNumerator?: number | undefined;
|
|
4311
4311
|
/**
|
|
4312
4312
|
* Optional. Use Quality tuning level to choose how you want to trade off encoding speed for output video quality. The default behavior is faster, lower quality, multi-pass encoding.
|
|
4313
4313
|
* @public
|
|
4314
4314
|
*/
|
|
4315
|
-
QualityTuningLevel?: Vp9QualityTuningLevel;
|
|
4315
|
+
QualityTuningLevel?: Vp9QualityTuningLevel | undefined;
|
|
4316
4316
|
/**
|
|
4317
4317
|
* With the VP9 codec, you can use only the variable bitrate (VBR) rate control mode.
|
|
4318
4318
|
* @public
|
|
4319
4319
|
*/
|
|
4320
|
-
RateControlMode?: Vp9RateControlMode;
|
|
4320
|
+
RateControlMode?: Vp9RateControlMode | undefined;
|
|
4321
4321
|
}
|
|
4322
4322
|
/**
|
|
4323
4323
|
* @public
|
|
@@ -4447,7 +4447,7 @@ export interface Xavc4kIntraCbgProfileSettings {
|
|
|
4447
4447
|
* Specify the XAVC Intra 4k (CBG) Class to set the bitrate of your output. Outputs of the same class have similar image quality over the operating points that are valid for that class.
|
|
4448
4448
|
* @public
|
|
4449
4449
|
*/
|
|
4450
|
-
XavcClass?: Xavc4kIntraCbgProfileClass;
|
|
4450
|
+
XavcClass?: Xavc4kIntraCbgProfileClass | undefined;
|
|
4451
4451
|
}
|
|
4452
4452
|
/**
|
|
4453
4453
|
* @public
|
|
@@ -4471,7 +4471,7 @@ export interface Xavc4kIntraVbrProfileSettings {
|
|
|
4471
4471
|
* Specify the XAVC Intra 4k (VBR) Class to set the bitrate of your output. Outputs of the same class have similar image quality over the operating points that are valid for that class.
|
|
4472
4472
|
* @public
|
|
4473
4473
|
*/
|
|
4474
|
-
XavcClass?: Xavc4kIntraVbrProfileClass;
|
|
4474
|
+
XavcClass?: Xavc4kIntraVbrProfileClass | undefined;
|
|
4475
4475
|
}
|
|
4476
4476
|
/**
|
|
4477
4477
|
* @public
|
|
@@ -4544,42 +4544,42 @@ export interface Xavc4kProfileSettings {
|
|
|
4544
4544
|
* Specify the XAVC 4k (Long GOP) Bitrate Class to set the bitrate of your output. Outputs of the same class have similar image quality over the operating points that are valid for that class.
|
|
4545
4545
|
* @public
|
|
4546
4546
|
*/
|
|
4547
|
-
BitrateClass?: Xavc4kProfileBitrateClass;
|
|
4547
|
+
BitrateClass?: Xavc4kProfileBitrateClass | undefined;
|
|
4548
4548
|
/**
|
|
4549
4549
|
* Specify the codec profile for this output. Choose High, 8-bit, 4:2:0 (HIGH) or High, 10-bit, 4:2:2 (HIGH_422). These profiles are specified in ITU-T H.264.
|
|
4550
4550
|
* @public
|
|
4551
4551
|
*/
|
|
4552
|
-
CodecProfile?: Xavc4kProfileCodecProfile;
|
|
4552
|
+
CodecProfile?: Xavc4kProfileCodecProfile | undefined;
|
|
4553
4553
|
/**
|
|
4554
4554
|
* The best way to set up adaptive quantization is to keep the default value, Auto, for the setting Adaptive quantization. When you do so, MediaConvert automatically applies the best types of quantization for your video content. Include this setting in your JSON job specification only when you choose to change the default value for Adaptive quantization. Enable this setting to have the encoder reduce I-frame pop. I-frame pop appears as a visual flicker that can arise when the encoder saves bits by copying some macroblocks many times from frame to frame, and then refreshes them at the I-frame. When you enable this setting, the encoder updates these macroblocks slightly more often to smooth out the flicker. This setting is disabled by default. Related setting: In addition to enabling this setting, you must also set Adaptive quantization to a value other than Off or Auto. Use Adaptive quantization to adjust the degree of smoothing that Flicker adaptive quantization provides.
|
|
4555
4555
|
* @public
|
|
4556
4556
|
*/
|
|
4557
|
-
FlickerAdaptiveQuantization?: XavcFlickerAdaptiveQuantization;
|
|
4557
|
+
FlickerAdaptiveQuantization?: XavcFlickerAdaptiveQuantization | undefined;
|
|
4558
4558
|
/**
|
|
4559
4559
|
* Specify whether the encoder uses B-frames as reference frames for other pictures in the same GOP. Choose Allow to allow the encoder to use B-frames as reference frames. Choose Don't allow to prevent the encoder from using B-frames as reference frames.
|
|
4560
4560
|
* @public
|
|
4561
4561
|
*/
|
|
4562
|
-
GopBReference?: XavcGopBReference;
|
|
4562
|
+
GopBReference?: XavcGopBReference | undefined;
|
|
4563
4563
|
/**
|
|
4564
4564
|
* Frequency of closed GOPs. In streaming applications, it is recommended that this be set to 1 so a decoder joining mid-stream will receive an IDR frame as quickly as possible. Setting this value to 0 will break output segmenting.
|
|
4565
4565
|
* @public
|
|
4566
4566
|
*/
|
|
4567
|
-
GopClosedCadence?: number;
|
|
4567
|
+
GopClosedCadence?: number | undefined;
|
|
4568
4568
|
/**
|
|
4569
4569
|
* Specify the size of the buffer that MediaConvert uses in the HRD buffer model for this output. Specify this value in bits; for example, enter five megabits as 5000000. When you don't set this value, or you set it to zero, MediaConvert calculates the default by doubling the bitrate of this output point.
|
|
4570
4570
|
* @public
|
|
4571
4571
|
*/
|
|
4572
|
-
HrdBufferSize?: number;
|
|
4572
|
+
HrdBufferSize?: number | undefined;
|
|
4573
4573
|
/**
|
|
4574
4574
|
* Optional. Use Quality tuning level to choose how you want to trade off encoding speed for output video quality. The default behavior is faster, lower quality, single-pass encoding.
|
|
4575
4575
|
* @public
|
|
4576
4576
|
*/
|
|
4577
|
-
QualityTuningLevel?: Xavc4kProfileQualityTuningLevel;
|
|
4577
|
+
QualityTuningLevel?: Xavc4kProfileQualityTuningLevel | undefined;
|
|
4578
4578
|
/**
|
|
4579
4579
|
* Number of slices per picture. Must be less than or equal to the number of macroblock rows for progressive pictures, and less than or equal to half the number of macroblock rows for interlaced pictures.
|
|
4580
4580
|
* @public
|
|
4581
4581
|
*/
|
|
4582
|
-
Slices?: number;
|
|
4582
|
+
Slices?: number | undefined;
|
|
4583
4583
|
}
|
|
4584
4584
|
/**
|
|
4585
4585
|
* @public
|
|
@@ -4603,7 +4603,7 @@ export interface XavcHdIntraCbgProfileSettings {
|
|
|
4603
4603
|
* Specify the XAVC Intra HD (CBG) Class to set the bitrate of your output. Outputs of the same class have similar image quality over the operating points that are valid for that class.
|
|
4604
4604
|
* @public
|
|
4605
4605
|
*/
|
|
4606
|
-
XavcClass?: XavcHdIntraCbgProfileClass;
|
|
4606
|
+
XavcClass?: XavcHdIntraCbgProfileClass | undefined;
|
|
4607
4607
|
}
|
|
4608
4608
|
/**
|
|
4609
4609
|
* @public
|
|
@@ -4667,47 +4667,47 @@ export interface XavcHdProfileSettings {
|
|
|
4667
4667
|
* Specify the XAVC HD (Long GOP) Bitrate Class to set the bitrate of your output. Outputs of the same class have similar image quality over the operating points that are valid for that class.
|
|
4668
4668
|
* @public
|
|
4669
4669
|
*/
|
|
4670
|
-
BitrateClass?: XavcHdProfileBitrateClass;
|
|
4670
|
+
BitrateClass?: XavcHdProfileBitrateClass | undefined;
|
|
4671
4671
|
/**
|
|
4672
4672
|
* The best way to set up adaptive quantization is to keep the default value, Auto, for the setting Adaptive quantization. When you do so, MediaConvert automatically applies the best types of quantization for your video content. Include this setting in your JSON job specification only when you choose to change the default value for Adaptive quantization. Enable this setting to have the encoder reduce I-frame pop. I-frame pop appears as a visual flicker that can arise when the encoder saves bits by copying some macroblocks many times from frame to frame, and then refreshes them at the I-frame. When you enable this setting, the encoder updates these macroblocks slightly more often to smooth out the flicker. This setting is disabled by default. Related setting: In addition to enabling this setting, you must also set Adaptive quantization to a value other than Off or Auto. Use Adaptive quantization to adjust the degree of smoothing that Flicker adaptive quantization provides.
|
|
4673
4673
|
* @public
|
|
4674
4674
|
*/
|
|
4675
|
-
FlickerAdaptiveQuantization?: XavcFlickerAdaptiveQuantization;
|
|
4675
|
+
FlickerAdaptiveQuantization?: XavcFlickerAdaptiveQuantization | undefined;
|
|
4676
4676
|
/**
|
|
4677
4677
|
* Specify whether the encoder uses B-frames as reference frames for other pictures in the same GOP. Choose Allow to allow the encoder to use B-frames as reference frames. Choose Don't allow to prevent the encoder from using B-frames as reference frames.
|
|
4678
4678
|
* @public
|
|
4679
4679
|
*/
|
|
4680
|
-
GopBReference?: XavcGopBReference;
|
|
4680
|
+
GopBReference?: XavcGopBReference | undefined;
|
|
4681
4681
|
/**
|
|
4682
4682
|
* Frequency of closed GOPs. In streaming applications, it is recommended that this be set to 1 so a decoder joining mid-stream will receive an IDR frame as quickly as possible. Setting this value to 0 will break output segmenting.
|
|
4683
4683
|
* @public
|
|
4684
4684
|
*/
|
|
4685
|
-
GopClosedCadence?: number;
|
|
4685
|
+
GopClosedCadence?: number | undefined;
|
|
4686
4686
|
/**
|
|
4687
4687
|
* Specify the size of the buffer that MediaConvert uses in the HRD buffer model for this output. Specify this value in bits; for example, enter five megabits as 5000000. When you don't set this value, or you set it to zero, MediaConvert calculates the default by doubling the bitrate of this output point.
|
|
4688
4688
|
* @public
|
|
4689
4689
|
*/
|
|
4690
|
-
HrdBufferSize?: number;
|
|
4690
|
+
HrdBufferSize?: number | undefined;
|
|
4691
4691
|
/**
|
|
4692
4692
|
* Choose the scan line type for the output. Keep the default value, Progressive to create a progressive output, regardless of the scan type of your input. Use Top field first or Bottom field first to create an output that's interlaced with the same field polarity throughout. Use Follow, default top or Follow, default bottom to produce outputs with the same field polarity as the source. For jobs that have multiple inputs, the output field polarity might change over the course of the output. Follow behavior depends on the input scan type. If the source is interlaced, the output will be interlaced with the same polarity as the source. If the source is progressive, the output will be interlaced with top field bottom field first, depending on which of the Follow options you choose.
|
|
4693
4693
|
* @public
|
|
4694
4694
|
*/
|
|
4695
|
-
InterlaceMode?: XavcInterlaceMode;
|
|
4695
|
+
InterlaceMode?: XavcInterlaceMode | undefined;
|
|
4696
4696
|
/**
|
|
4697
4697
|
* Optional. Use Quality tuning level to choose how you want to trade off encoding speed for output video quality. The default behavior is faster, lower quality, single-pass encoding.
|
|
4698
4698
|
* @public
|
|
4699
4699
|
*/
|
|
4700
|
-
QualityTuningLevel?: XavcHdProfileQualityTuningLevel;
|
|
4700
|
+
QualityTuningLevel?: XavcHdProfileQualityTuningLevel | undefined;
|
|
4701
4701
|
/**
|
|
4702
4702
|
* Number of slices per picture. Must be less than or equal to the number of macroblock rows for progressive pictures, and less than or equal to half the number of macroblock rows for interlaced pictures.
|
|
4703
4703
|
* @public
|
|
4704
4704
|
*/
|
|
4705
|
-
Slices?: number;
|
|
4705
|
+
Slices?: number | undefined;
|
|
4706
4706
|
/**
|
|
4707
4707
|
* Ignore this setting unless you set Frame rate (framerateNumerator divided by framerateDenominator) to 29.970. If your input framerate is 23.976, choose Hard. Otherwise, keep the default value None. For more information, see https://docs.aws.amazon.com/mediaconvert/latest/ug/working-with-telecine-and-inverse-telecine.html.
|
|
4708
4708
|
* @public
|
|
4709
4709
|
*/
|
|
4710
|
-
Telecine?: XavcHdProfileTelecine;
|
|
4710
|
+
Telecine?: XavcHdProfileTelecine | undefined;
|
|
4711
4711
|
}
|
|
4712
4712
|
/**
|
|
4713
4713
|
* Required when you set Codec to the value XAVC.
|
|
@@ -4718,82 +4718,82 @@ export interface XavcSettings {
|
|
|
4718
4718
|
* Keep the default value, Auto, for this setting to have MediaConvert automatically apply the best types of quantization for your video content. When you want to apply your quantization settings manually, you must set Adaptive quantization to a value other than Auto. Use this setting to specify the strength of any adaptive quantization filters that you enable. If you don't want MediaConvert to do any adaptive quantization in this transcode, set Adaptive quantization to Off. Related settings: The value that you choose here applies to the following settings: Flicker adaptive quantization (flickerAdaptiveQuantization), Spatial adaptive quantization, and Temporal adaptive quantization.
|
|
4719
4719
|
* @public
|
|
4720
4720
|
*/
|
|
4721
|
-
AdaptiveQuantization?: XavcAdaptiveQuantization;
|
|
4721
|
+
AdaptiveQuantization?: XavcAdaptiveQuantization | undefined;
|
|
4722
4722
|
/**
|
|
4723
4723
|
* Optional. Choose a specific entropy encoding mode only when you want to override XAVC recommendations. If you choose the value auto, MediaConvert uses the mode that the XAVC file format specifies given this output's operating point.
|
|
4724
4724
|
* @public
|
|
4725
4725
|
*/
|
|
4726
|
-
EntropyEncoding?: XavcEntropyEncoding;
|
|
4726
|
+
EntropyEncoding?: XavcEntropyEncoding | undefined;
|
|
4727
4727
|
/**
|
|
4728
4728
|
* If you are using the console, use the Frame rate setting to specify the frame rate for this output. If you want to keep the same frame rate as the input video, choose Follow source. If you want to do frame rate conversion, choose a frame rate from the dropdown list. The framerates shown in the dropdown list are decimal approximations of fractions.
|
|
4729
4729
|
* @public
|
|
4730
4730
|
*/
|
|
4731
|
-
FramerateControl?: XavcFramerateControl;
|
|
4731
|
+
FramerateControl?: XavcFramerateControl | undefined;
|
|
4732
4732
|
/**
|
|
4733
4733
|
* Choose the method that you want MediaConvert to use when increasing or decreasing the frame rate. For numerically simple conversions, such as 60 fps to 30 fps: We recommend that you keep the default value, Drop duplicate. For numerically complex conversions, to avoid stutter: Choose Interpolate. This results in a smooth picture, but might introduce undesirable video artifacts. For complex frame rate conversions, especially if your source video has already been converted from its original cadence: Choose FrameFormer to do motion-compensated interpolation. FrameFormer uses the best conversion method frame by frame. Note that using FrameFormer increases the transcoding time and incurs a significant add-on cost. When you choose FrameFormer, your input video resolution must be at least 128x96.
|
|
4734
4734
|
* @public
|
|
4735
4735
|
*/
|
|
4736
|
-
FramerateConversionAlgorithm?: XavcFramerateConversionAlgorithm;
|
|
4736
|
+
FramerateConversionAlgorithm?: XavcFramerateConversionAlgorithm | undefined;
|
|
4737
4737
|
/**
|
|
4738
4738
|
* When you use the API for transcode jobs that use frame rate conversion, specify the frame rate as a fraction. For example, 24000 / 1001 = 23.976 fps. Use FramerateDenominator to specify the denominator of this fraction. In this example, use 1001 for the value of FramerateDenominator. When you use the console for transcode jobs that use frame rate conversion, provide the value as a decimal number for Frame rate. In this example, specify 23.976.
|
|
4739
4739
|
* @public
|
|
4740
4740
|
*/
|
|
4741
|
-
FramerateDenominator?: number;
|
|
4741
|
+
FramerateDenominator?: number | undefined;
|
|
4742
4742
|
/**
|
|
4743
4743
|
* When you use the API for transcode jobs that use frame rate conversion, specify the frame rate as a fraction. For example, 24000 / 1001 = 23.976 fps. Use FramerateNumerator to specify the numerator of this fraction. In this example, use 24000 for the value of FramerateNumerator. When you use the console for transcode jobs that use frame rate conversion, provide the value as a decimal number for Framerate. In this example, specify 23.976.
|
|
4744
4744
|
* @public
|
|
4745
4745
|
*/
|
|
4746
|
-
FramerateNumerator?: number;
|
|
4746
|
+
FramerateNumerator?: number | undefined;
|
|
4747
4747
|
/**
|
|
4748
4748
|
* Specify the XAVC profile for this output. For more information, see the Sony documentation at https://www.xavc-info.org/. Note that MediaConvert doesn't support the interlaced video XAVC operating points for XAVC_HD_INTRA_CBG. To create an interlaced XAVC output, choose the profile XAVC_HD.
|
|
4749
4749
|
* @public
|
|
4750
4750
|
*/
|
|
4751
|
-
Profile?: XavcProfile;
|
|
4751
|
+
Profile?: XavcProfile | undefined;
|
|
4752
4752
|
/**
|
|
4753
4753
|
* Ignore this setting unless your input frame rate is 23.976 or 24 frames per second (fps). Enable slow PAL to create a 25 fps output by relabeling the video frames and resampling your audio. Note that enabling this setting will slightly reduce the duration of your video. Related settings: You must also set Frame rate to 25.
|
|
4754
4754
|
* @public
|
|
4755
4755
|
*/
|
|
4756
|
-
SlowPal?: XavcSlowPal;
|
|
4756
|
+
SlowPal?: XavcSlowPal | undefined;
|
|
4757
4757
|
/**
|
|
4758
4758
|
* Ignore this setting unless your downstream workflow requires that you specify it explicitly. Otherwise, we recommend that you adjust the softness of your output by using a lower value for the setting Sharpness or by enabling a noise reducer filter. The Softness setting specifies the quantization matrices that the encoder uses. Keep the default value, 0, for flat quantization. Choose the value 1 or 16 to use the default JVT softening quantization matricies from the H.264 specification. Choose a value from 17 to 128 to use planar interpolation. Increasing values from 17 to 128 result in increasing reduction of high-frequency data. The value 128 results in the softest video.
|
|
4759
4759
|
* @public
|
|
4760
4760
|
*/
|
|
4761
|
-
Softness?: number;
|
|
4761
|
+
Softness?: number | undefined;
|
|
4762
4762
|
/**
|
|
4763
4763
|
* The best way to set up adaptive quantization is to keep the default value, Auto, for the setting Adaptive quantization. When you do so, MediaConvert automatically applies the best types of quantization for your video content. Include this setting in your JSON job specification only when you choose to change the default value for Adaptive quantization. For this setting, keep the default value, Enabled, to adjust quantization within each frame based on spatial variation of content complexity. When you enable this feature, the encoder uses fewer bits on areas that can sustain more distortion with no noticeable visual degradation and uses more bits on areas where any small distortion will be noticeable. For example, complex textured blocks are encoded with fewer bits and smooth textured blocks are encoded with more bits. Enabling this feature will almost always improve your video quality. Note, though, that this feature doesn't take into account where the viewer's attention is likely to be. If viewers are likely to be focusing their attention on a part of the screen with a lot of complex texture, you might choose to disable this feature. Related setting: When you enable spatial adaptive quantization, set the value for Adaptive quantization depending on your content. For homogeneous content, such as cartoons and video games, set it to Low. For content with a wider variety of textures, set it to High or Higher.
|
|
4764
4764
|
* @public
|
|
4765
4765
|
*/
|
|
4766
|
-
SpatialAdaptiveQuantization?: XavcSpatialAdaptiveQuantization;
|
|
4766
|
+
SpatialAdaptiveQuantization?: XavcSpatialAdaptiveQuantization | undefined;
|
|
4767
4767
|
/**
|
|
4768
4768
|
* The best way to set up adaptive quantization is to keep the default value, Auto, for the setting Adaptive quantization. When you do so, MediaConvert automatically applies the best types of quantization for your video content. Include this setting in your JSON job specification only when you choose to change the default value for Adaptive quantization. For this setting, keep the default value, Enabled, to adjust quantization within each frame based on temporal variation of content complexity. When you enable this feature, the encoder uses fewer bits on areas of the frame that aren't moving and uses more bits on complex objects with sharp edges that move a lot. For example, this feature improves the readability of text tickers on newscasts and scoreboards on sports matches. Enabling this feature will almost always improve your video quality. Note, though, that this feature doesn't take into account where the viewer's attention is likely to be. If viewers are likely to be focusing their attention on a part of the screen that doesn't have moving objects with sharp edges, such as sports athletes' faces, you might choose to disable this feature. Related setting: When you enable temporal adaptive quantization, adjust the strength of the filter with the setting Adaptive quantization.
|
|
4769
4769
|
* @public
|
|
4770
4770
|
*/
|
|
4771
|
-
TemporalAdaptiveQuantization?: XavcTemporalAdaptiveQuantization;
|
|
4771
|
+
TemporalAdaptiveQuantization?: XavcTemporalAdaptiveQuantization | undefined;
|
|
4772
4772
|
/**
|
|
4773
4773
|
* Required when you set Profile to the value XAVC_4K_INTRA_CBG.
|
|
4774
4774
|
* @public
|
|
4775
4775
|
*/
|
|
4776
|
-
Xavc4kIntraCbgProfileSettings?: Xavc4kIntraCbgProfileSettings;
|
|
4776
|
+
Xavc4kIntraCbgProfileSettings?: Xavc4kIntraCbgProfileSettings | undefined;
|
|
4777
4777
|
/**
|
|
4778
4778
|
* Required when you set Profile to the value XAVC_4K_INTRA_VBR.
|
|
4779
4779
|
* @public
|
|
4780
4780
|
*/
|
|
4781
|
-
Xavc4kIntraVbrProfileSettings?: Xavc4kIntraVbrProfileSettings;
|
|
4781
|
+
Xavc4kIntraVbrProfileSettings?: Xavc4kIntraVbrProfileSettings | undefined;
|
|
4782
4782
|
/**
|
|
4783
4783
|
* Required when you set Profile to the value XAVC_4K.
|
|
4784
4784
|
* @public
|
|
4785
4785
|
*/
|
|
4786
|
-
Xavc4kProfileSettings?: Xavc4kProfileSettings;
|
|
4786
|
+
Xavc4kProfileSettings?: Xavc4kProfileSettings | undefined;
|
|
4787
4787
|
/**
|
|
4788
4788
|
* Required when you set Profile to the value XAVC_HD_INTRA_CBG.
|
|
4789
4789
|
* @public
|
|
4790
4790
|
*/
|
|
4791
|
-
XavcHdIntraCbgProfileSettings?: XavcHdIntraCbgProfileSettings;
|
|
4791
|
+
XavcHdIntraCbgProfileSettings?: XavcHdIntraCbgProfileSettings | undefined;
|
|
4792
4792
|
/**
|
|
4793
4793
|
* Required when you set Profile to the value XAVC_HD.
|
|
4794
4794
|
* @public
|
|
4795
4795
|
*/
|
|
4796
|
-
XavcHdProfileSettings?: XavcHdProfileSettings;
|
|
4796
|
+
XavcHdProfileSettings?: XavcHdProfileSettings | undefined;
|
|
4797
4797
|
}
|
|
4798
4798
|
/**
|
|
4799
4799
|
* Video codec settings contains the group of settings related to video encoding. The settings in this group vary depending on the value that you choose for Video codec. For each codec enum that you choose, define the corresponding settings object. The following lists the codec enum, settings object pairs. * AV1, Av1Settings * AVC_INTRA, AvcIntraSettings * FRAME_CAPTURE, FrameCaptureSettings * H_264, H264Settings * H_265, H265Settings * MPEG2, Mpeg2Settings * PRORES, ProresSettings * UNCOMPRESSED, UncompressedSettings * VC3, Vc3Settings * VP8, Vp8Settings * VP9, Vp9Settings * XAVC, XavcSettings
|
|
@@ -4804,67 +4804,67 @@ export interface VideoCodecSettings {
|
|
|
4804
4804
|
* Required when you set Codec, under VideoDescription>CodecSettings to the value AV1.
|
|
4805
4805
|
* @public
|
|
4806
4806
|
*/
|
|
4807
|
-
Av1Settings?: Av1Settings;
|
|
4807
|
+
Av1Settings?: Av1Settings | undefined;
|
|
4808
4808
|
/**
|
|
4809
4809
|
* Required when you choose AVC-Intra for your output video codec. For more information about the AVC-Intra settings, see the relevant specification. For detailed information about SD and HD in AVC-Intra, see https://ieeexplore.ieee.org/document/7290936. For information about 4K/2K in AVC-Intra, see https://pro-av.panasonic.net/en/avc-ultra/AVC-ULTRAoverview.pdf.
|
|
4810
4810
|
* @public
|
|
4811
4811
|
*/
|
|
4812
|
-
AvcIntraSettings?: AvcIntraSettings;
|
|
4812
|
+
AvcIntraSettings?: AvcIntraSettings | undefined;
|
|
4813
4813
|
/**
|
|
4814
4814
|
* Specifies the video codec. This must be equal to one of the enum values defined by the object VideoCodec. To passthrough the video stream of your input JPEG2000, VC-3, AVC-INTRA or Apple ProRes video without any video encoding: Choose Passthrough. If you have multiple input videos, note that they must have identical encoding attributes. When you choose Passthrough, your output container must be MXF or QuickTime MOV.
|
|
4815
4815
|
* @public
|
|
4816
4816
|
*/
|
|
4817
|
-
Codec?: VideoCodec;
|
|
4817
|
+
Codec?: VideoCodec | undefined;
|
|
4818
4818
|
/**
|
|
4819
4819
|
* Required when you set Codec to the value FRAME_CAPTURE.
|
|
4820
4820
|
* @public
|
|
4821
4821
|
*/
|
|
4822
|
-
FrameCaptureSettings?: FrameCaptureSettings;
|
|
4822
|
+
FrameCaptureSettings?: FrameCaptureSettings | undefined;
|
|
4823
4823
|
/**
|
|
4824
4824
|
* Required when you set Codec to the value H_264.
|
|
4825
4825
|
* @public
|
|
4826
4826
|
*/
|
|
4827
|
-
H264Settings?: H264Settings;
|
|
4827
|
+
H264Settings?: H264Settings | undefined;
|
|
4828
4828
|
/**
|
|
4829
4829
|
* Settings for H265 codec
|
|
4830
4830
|
* @public
|
|
4831
4831
|
*/
|
|
4832
|
-
H265Settings?: H265Settings;
|
|
4832
|
+
H265Settings?: H265Settings | undefined;
|
|
4833
4833
|
/**
|
|
4834
4834
|
* Required when you set Codec to the value MPEG2.
|
|
4835
4835
|
* @public
|
|
4836
4836
|
*/
|
|
4837
|
-
Mpeg2Settings?: Mpeg2Settings;
|
|
4837
|
+
Mpeg2Settings?: Mpeg2Settings | undefined;
|
|
4838
4838
|
/**
|
|
4839
4839
|
* Required when you set Codec to the value PRORES.
|
|
4840
4840
|
* @public
|
|
4841
4841
|
*/
|
|
4842
|
-
ProresSettings?: ProresSettings;
|
|
4842
|
+
ProresSettings?: ProresSettings | undefined;
|
|
4843
4843
|
/**
|
|
4844
4844
|
* Required when you set Codec, under VideoDescription>CodecSettings to the value UNCOMPRESSED.
|
|
4845
4845
|
* @public
|
|
4846
4846
|
*/
|
|
4847
|
-
UncompressedSettings?: UncompressedSettings;
|
|
4847
|
+
UncompressedSettings?: UncompressedSettings | undefined;
|
|
4848
4848
|
/**
|
|
4849
4849
|
* Required when you set Codec to the value VC3
|
|
4850
4850
|
* @public
|
|
4851
4851
|
*/
|
|
4852
|
-
Vc3Settings?: Vc3Settings;
|
|
4852
|
+
Vc3Settings?: Vc3Settings | undefined;
|
|
4853
4853
|
/**
|
|
4854
4854
|
* Required when you set Codec to the value VP8.
|
|
4855
4855
|
* @public
|
|
4856
4856
|
*/
|
|
4857
|
-
Vp8Settings?: Vp8Settings;
|
|
4857
|
+
Vp8Settings?: Vp8Settings | undefined;
|
|
4858
4858
|
/**
|
|
4859
4859
|
* Required when you set Codec to the value VP9.
|
|
4860
4860
|
* @public
|
|
4861
4861
|
*/
|
|
4862
|
-
Vp9Settings?: Vp9Settings;
|
|
4862
|
+
Vp9Settings?: Vp9Settings | undefined;
|
|
4863
4863
|
/**
|
|
4864
4864
|
* Required when you set Codec to the value XAVC.
|
|
4865
4865
|
* @public
|
|
4866
4866
|
*/
|
|
4867
|
-
XavcSettings?: XavcSettings;
|
|
4867
|
+
XavcSettings?: XavcSettings | undefined;
|
|
4868
4868
|
}
|
|
4869
4869
|
/**
|
|
4870
4870
|
* @public
|
|
@@ -4939,22 +4939,22 @@ export interface ClipLimits {
|
|
|
4939
4939
|
* Specify the Maximum RGB color sample range tolerance for your output. MediaConvert corrects any YUV values that, when converted to RGB, would be outside the upper tolerance that you specify. Enter an integer from 90 to 105 as an offset percentage to the maximum possible value. Leave blank to use the default value 100. When you specify a value for Maximum RGB tolerance, you must set Sample range conversion to Limited range clip.
|
|
4940
4940
|
* @public
|
|
4941
4941
|
*/
|
|
4942
|
-
MaximumRGBTolerance?: number;
|
|
4942
|
+
MaximumRGBTolerance?: number | undefined;
|
|
4943
4943
|
/**
|
|
4944
4944
|
* Specify the Maximum YUV color sample limit. MediaConvert conforms any pixels in your input above the value that you specify to typical limited range bounds. Enter an integer from 920 to 1023. Leave blank to use the default value 940. The value that you enter applies to 10-bit ranges. For 8-bit ranges, MediaConvert automatically scales this value down. When you specify a value for Maximum YUV, you must set Sample range conversion to Limited range clip.
|
|
4945
4945
|
* @public
|
|
4946
4946
|
*/
|
|
4947
|
-
MaximumYUV?: number;
|
|
4947
|
+
MaximumYUV?: number | undefined;
|
|
4948
4948
|
/**
|
|
4949
4949
|
* Specify the Minimum RGB color sample range tolerance for your output. MediaConvert corrects any YUV values that, when converted to RGB, would be outside the lower tolerance that you specify. Enter an integer from -5 to 10 as an offset percentage to the minimum possible value. Leave blank to use the default value 0. When you specify a value for Minimum RGB tolerance, you must set Sample range conversion to Limited range clip.
|
|
4950
4950
|
* @public
|
|
4951
4951
|
*/
|
|
4952
|
-
MinimumRGBTolerance?: number;
|
|
4952
|
+
MinimumRGBTolerance?: number | undefined;
|
|
4953
4953
|
/**
|
|
4954
4954
|
* Specify the Minimum YUV color sample limit. MediaConvert conforms any pixels in your input below the value that you specify to typical limited range bounds. Enter an integer from 0 to 128. Leave blank to use the default value 64. The value that you enter applies to 10-bit ranges. For 8-bit ranges, MediaConvert automatically scales this value down. When you specify a value for Minumum YUV, you must set Sample range conversion to Limited range clip.
|
|
4955
4955
|
* @public
|
|
4956
4956
|
*/
|
|
4957
|
-
MinimumYUV?: number;
|
|
4957
|
+
MinimumYUV?: number | undefined;
|
|
4958
4958
|
}
|
|
4959
4959
|
/**
|
|
4960
4960
|
* @public
|
|
@@ -5008,12 +5008,12 @@ export interface ColorCorrector {
|
|
|
5008
5008
|
* Brightness level.
|
|
5009
5009
|
* @public
|
|
5010
5010
|
*/
|
|
5011
|
-
Brightness?: number;
|
|
5011
|
+
Brightness?: number | undefined;
|
|
5012
5012
|
/**
|
|
5013
5013
|
* Specify YUV limits and RGB tolerances when you set Sample range conversion to Limited range clip.
|
|
5014
5014
|
* @public
|
|
5015
5015
|
*/
|
|
5016
|
-
ClipLimits?: ClipLimits;
|
|
5016
|
+
ClipLimits?: ClipLimits | undefined;
|
|
5017
5017
|
/**
|
|
5018
5018
|
* Specify the color space you want for this output. The service supports conversion between HDR formats, between SDR formats, from SDR to HDR, and from HDR to SDR. SDR to HDR conversion doesn't upgrade the dynamic range. The converted video has an HDR format, but visually appears the same as an unconverted output. HDR to SDR conversion uses tone mapping to approximate the outcome of manually regrading from HDR to SDR. When you specify an output color space, MediaConvert uses the following color space metadata, which includes color primaries, transfer characteristics, and matrix coefficients:
|
|
5019
5019
|
* * HDR 10: BT.2020, PQ, BT.2020 non-constant
|
|
@@ -5023,47 +5023,47 @@ export interface ColorCorrector {
|
|
|
5023
5023
|
* * P3D65 (HDR): Display P3, PQ, BT.709
|
|
5024
5024
|
* @public
|
|
5025
5025
|
*/
|
|
5026
|
-
ColorSpaceConversion?: ColorSpaceConversion;
|
|
5026
|
+
ColorSpaceConversion?: ColorSpaceConversion | undefined;
|
|
5027
5027
|
/**
|
|
5028
5028
|
* Contrast level.
|
|
5029
5029
|
* @public
|
|
5030
5030
|
*/
|
|
5031
|
-
Contrast?: number;
|
|
5031
|
+
Contrast?: number | undefined;
|
|
5032
5032
|
/**
|
|
5033
5033
|
* Use these settings when you convert to the HDR 10 color space. Specify the SMPTE ST 2086 Mastering Display Color Volume static metadata that you want signaled in the output. These values don't affect the pixel values that are encoded in the video stream. They are intended to help the downstream video player display content in a way that reflects the intentions of the the content creator. When you set Color space conversion to HDR 10, these settings are required. You must set values for Max frame average light level and Max content light level; these settings don't have a default value. The default values for the other HDR 10 metadata settings are defined by the P3D65 color space. For more information about MediaConvert HDR jobs, see https://docs.aws.amazon.com/console/mediaconvert/hdr.
|
|
5034
5034
|
* @public
|
|
5035
5035
|
*/
|
|
5036
|
-
Hdr10Metadata?: Hdr10Metadata;
|
|
5036
|
+
Hdr10Metadata?: Hdr10Metadata | undefined;
|
|
5037
5037
|
/**
|
|
5038
5038
|
* Specify how MediaConvert maps brightness and colors from your HDR input to your SDR output. The mode that you select represents a creative choice, with different tradeoffs in the details and tones of your output. To maintain details in bright or saturated areas of your output: Choose Preserve details. For some sources, your SDR output may look less bright and less saturated when compared to your HDR source. MediaConvert automatically applies this mode for HLG sources, regardless of your choice. For a bright and saturated output: Choose Vibrant. We recommend that you choose this mode when any of your source content is HDR10, and for the best results when it is mastered for 1000 nits. You may notice loss of details in bright or saturated areas of your output. HDR to SDR tone mapping has no effect when your input is SDR.
|
|
5039
5039
|
* @public
|
|
5040
5040
|
*/
|
|
5041
|
-
HdrToSdrToneMapper?: HDRToSDRToneMapper;
|
|
5041
|
+
HdrToSdrToneMapper?: HDRToSDRToneMapper | undefined;
|
|
5042
5042
|
/**
|
|
5043
5043
|
* Hue in degrees.
|
|
5044
5044
|
* @public
|
|
5045
5045
|
*/
|
|
5046
|
-
Hue?: number;
|
|
5046
|
+
Hue?: number | undefined;
|
|
5047
5047
|
/**
|
|
5048
5048
|
* Specify the maximum mastering display luminance. Enter an integer from 0 to 2147483647, in units of 0.0001 nits. For example, enter 10000000 for 1000 nits.
|
|
5049
5049
|
* @public
|
|
5050
5050
|
*/
|
|
5051
|
-
MaxLuminance?: number;
|
|
5051
|
+
MaxLuminance?: number | undefined;
|
|
5052
5052
|
/**
|
|
5053
5053
|
* Specify how MediaConvert limits the color sample range for this output. To create a limited range output from a full range input: Choose Limited range squeeze. For full range inputs, MediaConvert performs a linear offset to color samples equally across all pixels and frames. Color samples in 10-bit outputs are limited to 64 through 940, and 8-bit outputs are limited to 16 through 235. Note: For limited range inputs, values for color samples are passed through to your output unchanged. MediaConvert does not limit the sample range. To correct pixels in your input that are out of range or out of gamut: Choose Limited range clip. Use for broadcast applications. MediaConvert conforms any pixels outside of the values that you specify under Minimum YUV and Maximum YUV to limited range bounds. MediaConvert also corrects any YUV values that, when converted to RGB, would be outside the bounds you specify under Minimum RGB tolerance and Maximum RGB tolerance. With either limited range conversion, MediaConvert writes the sample range metadata in the output.
|
|
5054
5054
|
* @public
|
|
5055
5055
|
*/
|
|
5056
|
-
SampleRangeConversion?: SampleRangeConversion;
|
|
5056
|
+
SampleRangeConversion?: SampleRangeConversion | undefined;
|
|
5057
5057
|
/**
|
|
5058
5058
|
* Saturation level.
|
|
5059
5059
|
* @public
|
|
5060
5060
|
*/
|
|
5061
|
-
Saturation?: number;
|
|
5061
|
+
Saturation?: number | undefined;
|
|
5062
5062
|
/**
|
|
5063
5063
|
* Specify the reference white level, in nits, for all of your SDR inputs. Use to correct brightness levels within HDR10 outputs. The following color metadata must be present in your SDR input: color primaries, transfer characteristics, and matrix coefficients. If your SDR input has missing color metadata, or if you want to correct input color metadata, manually specify a color space in the input video selector. For 1,000 nit peak brightness displays, we recommend that you set SDR reference white level to 203 (according to ITU-R BT.2408). Leave blank to use the default value of 100, or specify an integer from 100 to 1000.
|
|
5064
5064
|
* @public
|
|
5065
5065
|
*/
|
|
5066
|
-
SdrReferenceWhiteLevel?: number;
|
|
5066
|
+
SdrReferenceWhiteLevel?: number | undefined;
|
|
5067
5067
|
}
|
|
5068
5068
|
/**
|
|
5069
5069
|
* @public
|
|
@@ -5114,12 +5114,12 @@ export interface Deinterlacer {
|
|
|
5114
5114
|
* Only applies when you set Deinterlace mode to Deinterlace or Adaptive. Interpolate produces sharper pictures, while blend produces smoother motion. If your source file includes a ticker, such as a scrolling headline at the bottom of the frame: Choose Interpolate ticker or Blend ticker. To apply field doubling: Choose Linear interpolation. Note that Linear interpolation may introduce video artifacts into your output.
|
|
5115
5115
|
* @public
|
|
5116
5116
|
*/
|
|
5117
|
-
Algorithm?: DeinterlaceAlgorithm;
|
|
5117
|
+
Algorithm?: DeinterlaceAlgorithm | undefined;
|
|
5118
5118
|
/**
|
|
5119
5119
|
* - When set to NORMAL (default), the deinterlacer does not convert frames that are tagged in metadata as progressive. It will only convert those that are tagged as some other type. - When set to FORCE_ALL_FRAMES, the deinterlacer converts every frame to progressive - even those that are already tagged as progressive. Turn Force mode on only if there is a good chance that the metadata has tagged frames as progressive when they are not progressive. Do not turn on otherwise; processing frames that are already progressive into progressive will probably result in lower quality video.
|
|
5120
5120
|
* @public
|
|
5121
5121
|
*/
|
|
5122
|
-
Control?: DeinterlacerControl;
|
|
5122
|
+
Control?: DeinterlacerControl | undefined;
|
|
5123
5123
|
/**
|
|
5124
5124
|
* Use Deinterlacer to choose how the service will do deinterlacing. Default is Deinterlace.
|
|
5125
5125
|
* - Deinterlace converts interlaced to progressive.
|
|
@@ -5127,7 +5127,7 @@ export interface Deinterlacer {
|
|
|
5127
5127
|
* - Adaptive auto-detects and converts to progressive.
|
|
5128
5128
|
* @public
|
|
5129
5129
|
*/
|
|
5130
|
-
Mode?: DeinterlacerMode;
|
|
5130
|
+
Mode?: DeinterlacerMode | undefined;
|
|
5131
5131
|
}
|
|
5132
5132
|
/**
|
|
5133
5133
|
* Use these settings when you set DolbyVisionLevel6Mode to SPECIFY to override the MaxCLL and MaxFALL values in your input with new values.
|
|
@@ -5138,12 +5138,12 @@ export interface DolbyVisionLevel6Metadata {
|
|
|
5138
5138
|
* Maximum Content Light Level. Static HDR metadata that corresponds to the brightest pixel in the entire stream. Measured in nits.
|
|
5139
5139
|
* @public
|
|
5140
5140
|
*/
|
|
5141
|
-
MaxCll?: number;
|
|
5141
|
+
MaxCll?: number | undefined;
|
|
5142
5142
|
/**
|
|
5143
5143
|
* Maximum Frame-Average Light Level. Static HDR metadata that corresponds to the highest frame-average brightness in the entire stream. Measured in nits.
|
|
5144
5144
|
* @public
|
|
5145
5145
|
*/
|
|
5146
|
-
MaxFall?: number;
|
|
5146
|
+
MaxFall?: number | undefined;
|
|
5147
5147
|
}
|
|
5148
5148
|
/**
|
|
5149
5149
|
* @public
|
|
@@ -5191,22 +5191,22 @@ export interface DolbyVision {
|
|
|
5191
5191
|
* Use these settings when you set DolbyVisionLevel6Mode to SPECIFY to override the MaxCLL and MaxFALL values in your input with new values.
|
|
5192
5192
|
* @public
|
|
5193
5193
|
*/
|
|
5194
|
-
L6Metadata?: DolbyVisionLevel6Metadata;
|
|
5194
|
+
L6Metadata?: DolbyVisionLevel6Metadata | undefined;
|
|
5195
5195
|
/**
|
|
5196
5196
|
* Use Dolby Vision Mode to choose how the service will handle Dolby Vision MaxCLL and MaxFALL properies.
|
|
5197
5197
|
* @public
|
|
5198
5198
|
*/
|
|
5199
|
-
L6Mode?: DolbyVisionLevel6Mode;
|
|
5199
|
+
L6Mode?: DolbyVisionLevel6Mode | undefined;
|
|
5200
5200
|
/**
|
|
5201
5201
|
* Required when you set Dolby Vision Profile to Profile 8.1. When you set Content mapping to None, content mapping is not applied to the HDR10-compatible signal. Depending on the source peak nit level, clipping might occur on HDR devices without Dolby Vision. When you set Content mapping to HDR10 1000, the transcoder creates a 1,000 nits peak HDR10-compatible signal by applying static content mapping to the source. This mode is speed-optimized for PQ10 sources with metadata that is created from analysis. For graded Dolby Vision content, be aware that creative intent might not be guaranteed with extreme 1,000 nits trims.
|
|
5202
5202
|
* @public
|
|
5203
5203
|
*/
|
|
5204
|
-
Mapping?: DolbyVisionMapping;
|
|
5204
|
+
Mapping?: DolbyVisionMapping | undefined;
|
|
5205
5205
|
/**
|
|
5206
5206
|
* Required when you enable Dolby Vision. Use Profile 5 to include frame-interleaved Dolby Vision metadata in your output. Your input must include Dolby Vision metadata or an HDR10 YUV color space. Use Profile 8.1 to include frame-interleaved Dolby Vision metadata and HDR10 metadata in your output. Your input must include Dolby Vision metadata.
|
|
5207
5207
|
* @public
|
|
5208
5208
|
*/
|
|
5209
|
-
Profile?: DolbyVisionProfile;
|
|
5209
|
+
Profile?: DolbyVisionProfile | undefined;
|
|
5210
5210
|
}
|
|
5211
5211
|
/**
|
|
5212
5212
|
* Setting for HDR10+ metadata insertion
|
|
@@ -5217,12 +5217,12 @@ export interface Hdr10Plus {
|
|
|
5217
5217
|
* Specify the HDR10+ mastering display normalized peak luminance, in nits. This is the normalized actual peak luminance of the mastering display, as defined by ST 2094-40.
|
|
5218
5218
|
* @public
|
|
5219
5219
|
*/
|
|
5220
|
-
MasteringMonitorNits?: number;
|
|
5220
|
+
MasteringMonitorNits?: number | undefined;
|
|
5221
5221
|
/**
|
|
5222
5222
|
* Specify the HDR10+ target display nominal peak luminance, in nits. This is the nominal maximum luminance of the target display as defined by ST 2094-40.
|
|
5223
5223
|
* @public
|
|
5224
5224
|
*/
|
|
5225
|
-
TargetMonitorNits?: number;
|
|
5225
|
+
TargetMonitorNits?: number | undefined;
|
|
5226
5226
|
}
|
|
5227
5227
|
/**
|
|
5228
5228
|
* @public
|
|
@@ -5251,7 +5251,7 @@ export interface NoiseReducerFilterSettings {
|
|
|
5251
5251
|
* Relative strength of noise reducing filter. Higher values produce stronger filtering.
|
|
5252
5252
|
* @public
|
|
5253
5253
|
*/
|
|
5254
|
-
Strength?: number;
|
|
5254
|
+
Strength?: number | undefined;
|
|
5255
5255
|
}
|
|
5256
5256
|
/**
|
|
5257
5257
|
* Noise reducer filter settings for spatial filter.
|
|
@@ -5262,17 +5262,17 @@ export interface NoiseReducerSpatialFilterSettings {
|
|
|
5262
5262
|
* Specify strength of post noise reduction sharpening filter, with 0 disabling the filter and 3 enabling it at maximum strength.
|
|
5263
5263
|
* @public
|
|
5264
5264
|
*/
|
|
5265
|
-
PostFilterSharpenStrength?: number;
|
|
5265
|
+
PostFilterSharpenStrength?: number | undefined;
|
|
5266
5266
|
/**
|
|
5267
5267
|
* The speed of the filter, from -2 (lower speed) to 3 (higher speed), with 0 being the nominal value.
|
|
5268
5268
|
* @public
|
|
5269
5269
|
*/
|
|
5270
|
-
Speed?: number;
|
|
5270
|
+
Speed?: number | undefined;
|
|
5271
5271
|
/**
|
|
5272
5272
|
* Relative strength of noise reducing filter. Higher values produce stronger filtering.
|
|
5273
5273
|
* @public
|
|
5274
5274
|
*/
|
|
5275
|
-
Strength?: number;
|
|
5275
|
+
Strength?: number | undefined;
|
|
5276
5276
|
}
|
|
5277
5277
|
/**
|
|
5278
5278
|
* @public
|
|
@@ -5309,27 +5309,27 @@ export interface NoiseReducerTemporalFilterSettings {
|
|
|
5309
5309
|
* Use Aggressive mode for content that has complex motion. Higher values produce stronger temporal filtering. This filters highly complex scenes more aggressively and creates better VQ for low bitrate outputs.
|
|
5310
5310
|
* @public
|
|
5311
5311
|
*/
|
|
5312
|
-
AggressiveMode?: number;
|
|
5312
|
+
AggressiveMode?: number | undefined;
|
|
5313
5313
|
/**
|
|
5314
5314
|
* When you set Noise reducer to Temporal, the bandwidth and sharpness of your output is reduced. You can optionally use Post temporal sharpening to apply sharpening to the edges of your output. Note that Post temporal sharpening will also make the bandwidth reduction from the Noise reducer smaller. The default behavior, Auto, allows the transcoder to determine whether to apply sharpening, depending on your input type and quality. When you set Post temporal sharpening to Enabled, specify how much sharpening is applied using Post temporal sharpening strength. Set Post temporal sharpening to Disabled to not apply sharpening.
|
|
5315
5315
|
* @public
|
|
5316
5316
|
*/
|
|
5317
|
-
PostTemporalSharpening?: NoiseFilterPostTemporalSharpening;
|
|
5317
|
+
PostTemporalSharpening?: NoiseFilterPostTemporalSharpening | undefined;
|
|
5318
5318
|
/**
|
|
5319
5319
|
* Use Post temporal sharpening strength to define the amount of sharpening the transcoder applies to your output. Set Post temporal sharpening strength to Low, Medium, or High to indicate the amount of sharpening.
|
|
5320
5320
|
* @public
|
|
5321
5321
|
*/
|
|
5322
|
-
PostTemporalSharpeningStrength?: NoiseFilterPostTemporalSharpeningStrength;
|
|
5322
|
+
PostTemporalSharpeningStrength?: NoiseFilterPostTemporalSharpeningStrength | undefined;
|
|
5323
5323
|
/**
|
|
5324
5324
|
* The speed of the filter (higher number is faster). Low setting reduces bit rate at the cost of transcode time, high setting improves transcode time at the cost of bit rate.
|
|
5325
5325
|
* @public
|
|
5326
5326
|
*/
|
|
5327
|
-
Speed?: number;
|
|
5327
|
+
Speed?: number | undefined;
|
|
5328
5328
|
/**
|
|
5329
5329
|
* Specify the strength of the noise reducing filter on this output. Higher values produce stronger filtering. We recommend the following value ranges, depending on the result that you want: * 0-2 for complexity reduction with minimal sharpness loss * 2-8 for complexity reduction with image preservation * 8-16 for a high level of complexity reduction
|
|
5330
5330
|
* @public
|
|
5331
5331
|
*/
|
|
5332
|
-
Strength?: number;
|
|
5332
|
+
Strength?: number | undefined;
|
|
5333
5333
|
}
|
|
5334
5334
|
/**
|
|
5335
5335
|
* Enable the Noise reducer feature to remove noise from your video output if necessary. Enable or disable this feature for each output individually. This setting is disabled by default. When you enable Noise reducer, you must also select a value for Noise reducer filter. For AVC outputs, when you include Noise reducer, you cannot include the Bandwidth reduction filter.
|
|
@@ -5340,22 +5340,22 @@ export interface NoiseReducer {
|
|
|
5340
5340
|
* Use Noise reducer filter to select one of the following spatial image filtering functions. To use this setting, you must also enable Noise reducer. * Bilateral preserves edges while reducing noise. * Mean (softest), Gaussian, Lanczos, and Sharpen (sharpest) do convolution filtering. * Conserve does min/max noise reduction. * Spatial does frequency-domain filtering based on JND principles. * Temporal optimizes video quality for complex motion.
|
|
5341
5341
|
* @public
|
|
5342
5342
|
*/
|
|
5343
|
-
Filter?: NoiseReducerFilter;
|
|
5343
|
+
Filter?: NoiseReducerFilter | undefined;
|
|
5344
5344
|
/**
|
|
5345
5345
|
* Settings for a noise reducer filter
|
|
5346
5346
|
* @public
|
|
5347
5347
|
*/
|
|
5348
|
-
FilterSettings?: NoiseReducerFilterSettings;
|
|
5348
|
+
FilterSettings?: NoiseReducerFilterSettings | undefined;
|
|
5349
5349
|
/**
|
|
5350
5350
|
* Noise reducer filter settings for spatial filter.
|
|
5351
5351
|
* @public
|
|
5352
5352
|
*/
|
|
5353
|
-
SpatialFilterSettings?: NoiseReducerSpatialFilterSettings;
|
|
5353
|
+
SpatialFilterSettings?: NoiseReducerSpatialFilterSettings | undefined;
|
|
5354
5354
|
/**
|
|
5355
5355
|
* Noise reducer filter settings for temporal filter.
|
|
5356
5356
|
* @public
|
|
5357
5357
|
*/
|
|
5358
|
-
TemporalFilterSettings?: NoiseReducerTemporalFilterSettings;
|
|
5358
|
+
TemporalFilterSettings?: NoiseReducerTemporalFilterSettings | undefined;
|
|
5359
5359
|
}
|
|
5360
5360
|
/**
|
|
5361
5361
|
* @public
|
|
@@ -5381,22 +5381,22 @@ export interface NexGuardFileMarkerSettings {
|
|
|
5381
5381
|
* Use the base64 license string that Nagra provides you. Enter it directly in your JSON job specification or in the console. Required when you include Nagra NexGuard File Marker watermarking in your job.
|
|
5382
5382
|
* @public
|
|
5383
5383
|
*/
|
|
5384
|
-
License?: string;
|
|
5384
|
+
License?: string | undefined;
|
|
5385
5385
|
/**
|
|
5386
5386
|
* Specify the payload ID that you want associated with this output. Valid values vary depending on your Nagra NexGuard forensic watermarking workflow. Required when you include Nagra NexGuard File Marker watermarking in your job. For PreRelease Content (NGPR/G2), specify an integer from 1 through 4,194,303. You must generate a unique ID for each asset you watermark, and keep a record of which ID you have assigned to each asset. Neither Nagra nor MediaConvert keep track of the relationship between output files and your IDs. For OTT Streaming, create two adaptive bitrate (ABR) stacks for each asset. Do this by setting up two output groups. For one output group, set the value of Payload ID to 0 in every output. For the other output group, set Payload ID to 1 in every output.
|
|
5387
5387
|
* @public
|
|
5388
5388
|
*/
|
|
5389
|
-
Payload?: number;
|
|
5389
|
+
Payload?: number | undefined;
|
|
5390
5390
|
/**
|
|
5391
5391
|
* Enter one of the watermarking preset strings that Nagra provides you. Required when you include Nagra NexGuard File Marker watermarking in your job.
|
|
5392
5392
|
* @public
|
|
5393
5393
|
*/
|
|
5394
|
-
Preset?: string;
|
|
5394
|
+
Preset?: string | undefined;
|
|
5395
5395
|
/**
|
|
5396
5396
|
* Optional. Ignore this setting unless Nagra support directs you to specify a value. When you don't specify a value here, the Nagra NexGuard library uses its default value.
|
|
5397
5397
|
* @public
|
|
5398
5398
|
*/
|
|
5399
|
-
Strength?: WatermarkingStrength;
|
|
5399
|
+
Strength?: WatermarkingStrength | undefined;
|
|
5400
5400
|
}
|
|
5401
5401
|
/**
|
|
5402
5402
|
* If you work with a third party video watermarking partner, use the group of settings that correspond with your watermarking partner to include watermarks in your output.
|
|
@@ -5407,7 +5407,7 @@ export interface PartnerWatermarking {
|
|
|
5407
5407
|
* For forensic video watermarking, MediaConvert supports Nagra NexGuard File Marker watermarking. MediaConvert supports both PreRelease Content (NGPR/G2) and OTT Streaming workflows.
|
|
5408
5408
|
* @public
|
|
5409
5409
|
*/
|
|
5410
|
-
NexguardFileMarkerSettings?: NexGuardFileMarkerSettings;
|
|
5410
|
+
NexguardFileMarkerSettings?: NexGuardFileMarkerSettings | undefined;
|
|
5411
5411
|
}
|
|
5412
5412
|
/**
|
|
5413
5413
|
* @public
|
|
@@ -5437,17 +5437,17 @@ export interface TimecodeBurnin {
|
|
|
5437
5437
|
* Use Font size to set the font size of any burned-in timecode. Valid values are 10, 16, 32, 48.
|
|
5438
5438
|
* @public
|
|
5439
5439
|
*/
|
|
5440
|
-
FontSize?: number;
|
|
5440
|
+
FontSize?: number | undefined;
|
|
5441
5441
|
/**
|
|
5442
5442
|
* Use Position under Timecode burn-in to specify the location the burned-in timecode on output video.
|
|
5443
5443
|
* @public
|
|
5444
5444
|
*/
|
|
5445
|
-
Position?: TimecodeBurninPosition;
|
|
5445
|
+
Position?: TimecodeBurninPosition | undefined;
|
|
5446
5446
|
/**
|
|
5447
5447
|
* Use Prefix to place ASCII characters before any burned-in timecode. For example, a prefix of "EZ-" will result in the timecode "EZ-00:00:00:00". Provide either the characters themselves or the ASCII code equivalents. The supported range of characters is 0x20 through 0x7e. This includes letters, numbers, and all special characters represented on a standard English keyboard.
|
|
5448
5448
|
* @public
|
|
5449
5449
|
*/
|
|
5450
|
-
Prefix?: string;
|
|
5450
|
+
Prefix?: string | undefined;
|
|
5451
5451
|
}
|
|
5452
5452
|
/**
|
|
5453
5453
|
* Find additional transcoding features under Preprocessors. Enable the features at each output individually. These features are disabled by default.
|
|
@@ -5458,42 +5458,42 @@ export interface VideoPreprocessor {
|
|
|
5458
5458
|
* Use these settings to convert the color space or to modify properties such as hue and contrast for this output. For more information, see https://docs.aws.amazon.com/mediaconvert/latest/ug/converting-the-color-space.html.
|
|
5459
5459
|
* @public
|
|
5460
5460
|
*/
|
|
5461
|
-
ColorCorrector?: ColorCorrector;
|
|
5461
|
+
ColorCorrector?: ColorCorrector | undefined;
|
|
5462
5462
|
/**
|
|
5463
5463
|
* Use the deinterlacer to produce smoother motion and a clearer picture. For more information, see https://docs.aws.amazon.com/mediaconvert/latest/ug/working-with-scan-type.html.
|
|
5464
5464
|
* @public
|
|
5465
5465
|
*/
|
|
5466
|
-
Deinterlacer?: Deinterlacer;
|
|
5466
|
+
Deinterlacer?: Deinterlacer | undefined;
|
|
5467
5467
|
/**
|
|
5468
5468
|
* Enable Dolby Vision feature to produce Dolby Vision compatible video output.
|
|
5469
5469
|
* @public
|
|
5470
5470
|
*/
|
|
5471
|
-
DolbyVision?: DolbyVision;
|
|
5471
|
+
DolbyVision?: DolbyVision | undefined;
|
|
5472
5472
|
/**
|
|
5473
5473
|
* Enable HDR10+ analysis and metadata injection. Compatible with HEVC only.
|
|
5474
5474
|
* @public
|
|
5475
5475
|
*/
|
|
5476
|
-
Hdr10Plus?: Hdr10Plus;
|
|
5476
|
+
Hdr10Plus?: Hdr10Plus | undefined;
|
|
5477
5477
|
/**
|
|
5478
5478
|
* Enable the Image inserter feature to include a graphic overlay on your video. Enable or disable this feature for each output individually. This setting is disabled by default.
|
|
5479
5479
|
* @public
|
|
5480
5480
|
*/
|
|
5481
|
-
ImageInserter?: ImageInserter;
|
|
5481
|
+
ImageInserter?: ImageInserter | undefined;
|
|
5482
5482
|
/**
|
|
5483
5483
|
* Enable the Noise reducer feature to remove noise from your video output if necessary. Enable or disable this feature for each output individually. This setting is disabled by default. When you enable Noise reducer, you must also select a value for Noise reducer filter. For AVC outputs, when you include Noise reducer, you cannot include the Bandwidth reduction filter.
|
|
5484
5484
|
* @public
|
|
5485
5485
|
*/
|
|
5486
|
-
NoiseReducer?: NoiseReducer;
|
|
5486
|
+
NoiseReducer?: NoiseReducer | undefined;
|
|
5487
5487
|
/**
|
|
5488
5488
|
* If you work with a third party video watermarking partner, use the group of settings that correspond with your watermarking partner to include watermarks in your output.
|
|
5489
5489
|
* @public
|
|
5490
5490
|
*/
|
|
5491
|
-
PartnerWatermarking?: PartnerWatermarking;
|
|
5491
|
+
PartnerWatermarking?: PartnerWatermarking | undefined;
|
|
5492
5492
|
/**
|
|
5493
5493
|
* Settings for burning the output timecode and specified prefix into the output.
|
|
5494
5494
|
* @public
|
|
5495
5495
|
*/
|
|
5496
|
-
TimecodeBurnin?: TimecodeBurnin;
|
|
5496
|
+
TimecodeBurnin?: TimecodeBurnin | undefined;
|
|
5497
5497
|
}
|
|
5498
5498
|
/**
|
|
5499
5499
|
* Settings related to video encoding of your output. The specific video settings depend on the video codec that you choose.
|
|
@@ -5504,77 +5504,77 @@ export interface VideoDescription {
|
|
|
5504
5504
|
* This setting only applies to H.264, H.265, and MPEG2 outputs. Use Insert AFD signaling to specify whether the service includes AFD values in the output video data and what those values are. * Choose None to remove all AFD values from this output. * Choose Fixed to ignore input AFD values and instead encode the value specified in the job. * Choose Auto to calculate output AFD values based on the input AFD scaler data.
|
|
5505
5505
|
* @public
|
|
5506
5506
|
*/
|
|
5507
|
-
AfdSignaling?: AfdSignaling;
|
|
5507
|
+
AfdSignaling?: AfdSignaling | undefined;
|
|
5508
5508
|
/**
|
|
5509
5509
|
* The anti-alias filter is automatically applied to all outputs. The service no longer accepts the value DISABLED for AntiAlias. If you specify that in your job, the service will ignore the setting.
|
|
5510
5510
|
* @public
|
|
5511
5511
|
*/
|
|
5512
|
-
AntiAlias?: AntiAlias;
|
|
5512
|
+
AntiAlias?: AntiAlias | undefined;
|
|
5513
5513
|
/**
|
|
5514
5514
|
* Video codec settings contains the group of settings related to video encoding. The settings in this group vary depending on the value that you choose for Video codec. For each codec enum that you choose, define the corresponding settings object. The following lists the codec enum, settings object pairs. * AV1, Av1Settings * AVC_INTRA, AvcIntraSettings * FRAME_CAPTURE, FrameCaptureSettings * H_264, H264Settings * H_265, H265Settings * MPEG2, Mpeg2Settings * PRORES, ProresSettings * UNCOMPRESSED, UncompressedSettings * VC3, Vc3Settings * VP8, Vp8Settings * VP9, Vp9Settings * XAVC, XavcSettings
|
|
5515
5515
|
* @public
|
|
5516
5516
|
*/
|
|
5517
|
-
CodecSettings?: VideoCodecSettings;
|
|
5517
|
+
CodecSettings?: VideoCodecSettings | undefined;
|
|
5518
5518
|
/**
|
|
5519
5519
|
* Choose Insert for this setting to include color metadata in this output. Choose Ignore to exclude color metadata from this output. If you don't specify a value, the service sets this to Insert by default.
|
|
5520
5520
|
* @public
|
|
5521
5521
|
*/
|
|
5522
|
-
ColorMetadata?: ColorMetadata;
|
|
5522
|
+
ColorMetadata?: ColorMetadata | undefined;
|
|
5523
5523
|
/**
|
|
5524
5524
|
* Use Cropping selection to specify the video area that the service will include in the output video frame.
|
|
5525
5525
|
* @public
|
|
5526
5526
|
*/
|
|
5527
|
-
Crop?: Rectangle;
|
|
5527
|
+
Crop?: Rectangle | undefined;
|
|
5528
5528
|
/**
|
|
5529
5529
|
* Applies only to 29.97 fps outputs. When this feature is enabled, the service will use drop-frame timecode on outputs. If it is not possible to use drop-frame timecode, the system will fall back to non-drop-frame. This setting is enabled by default when Timecode insertion is enabled.
|
|
5530
5530
|
* @public
|
|
5531
5531
|
*/
|
|
5532
|
-
DropFrameTimecode?: DropFrameTimecode;
|
|
5532
|
+
DropFrameTimecode?: DropFrameTimecode | undefined;
|
|
5533
5533
|
/**
|
|
5534
5534
|
* Applies only if you set AFD Signaling to Fixed. Use Fixed to specify a four-bit AFD value which the service will write on all frames of this video output.
|
|
5535
5535
|
* @public
|
|
5536
5536
|
*/
|
|
5537
|
-
FixedAfd?: number;
|
|
5537
|
+
FixedAfd?: number | undefined;
|
|
5538
5538
|
/**
|
|
5539
5539
|
* Use Height to define the video resolution height, in pixels, for this output. To use the same resolution as your input: Leave both Width and Height blank. To evenly scale from your input resolution: Leave Height blank and enter a value for Width. For example, if your input is 1920x1080 and you set Width to 1280, your output will be 1280x720.
|
|
5540
5540
|
* @public
|
|
5541
5541
|
*/
|
|
5542
|
-
Height?: number;
|
|
5542
|
+
Height?: number | undefined;
|
|
5543
5543
|
/**
|
|
5544
5544
|
* Use Selection placement to define the video area in your output frame. The area outside of the rectangle that you specify here is black.
|
|
5545
5545
|
* @public
|
|
5546
5546
|
*/
|
|
5547
|
-
Position?: Rectangle;
|
|
5547
|
+
Position?: Rectangle | undefined;
|
|
5548
5548
|
/**
|
|
5549
5549
|
* Use Respond to AFD to specify how the service changes the video itself in response to AFD values in the input. * Choose Respond to clip the input video frame according to the AFD value, input display aspect ratio, and output display aspect ratio. * Choose Passthrough to include the input AFD values. Do not choose this when AfdSignaling is set to NONE. A preferred implementation of this workflow is to set RespondToAfd to and set AfdSignaling to AUTO. * Choose None to remove all input AFD values from this output.
|
|
5550
5550
|
* @public
|
|
5551
5551
|
*/
|
|
5552
|
-
RespondToAfd?: RespondToAfd;
|
|
5552
|
+
RespondToAfd?: RespondToAfd | undefined;
|
|
5553
5553
|
/**
|
|
5554
5554
|
* Specify the video Scaling behavior when your output has a different resolution than your input. For more information, see https://docs.aws.amazon.com/mediaconvert/latest/ug/video-scaling.html
|
|
5555
5555
|
* @public
|
|
5556
5556
|
*/
|
|
5557
|
-
ScalingBehavior?: ScalingBehavior;
|
|
5557
|
+
ScalingBehavior?: ScalingBehavior | undefined;
|
|
5558
5558
|
/**
|
|
5559
5559
|
* Use Sharpness setting to specify the strength of anti-aliasing. This setting changes the width of the anti-alias filter kernel used for scaling. Sharpness only applies if your output resolution is different from your input resolution. 0 is the softest setting, 100 the sharpest, and 50 recommended for most content.
|
|
5560
5560
|
* @public
|
|
5561
5561
|
*/
|
|
5562
|
-
Sharpness?: number;
|
|
5562
|
+
Sharpness?: number | undefined;
|
|
5563
5563
|
/**
|
|
5564
5564
|
* Applies only to H.264, H.265, MPEG2, and ProRes outputs. Only enable Timecode insertion when the input frame rate is identical to the output frame rate. To include timecodes in this output, set Timecode insertion to PIC_TIMING_SEI. To leave them out, set it to DISABLED. Default is DISABLED. When the service inserts timecodes in an output, by default, it uses any embedded timecodes from the input. If none are present, the service will set the timecode for the first output frame to zero. To change this default behavior, adjust the settings under Timecode configuration. In the console, these settings are located under Job > Job settings > Timecode configuration. Note - Timecode source under input settings does not affect the timecodes that are inserted in the output. Source under Job settings > Timecode configuration does.
|
|
5565
5565
|
* @public
|
|
5566
5566
|
*/
|
|
5567
|
-
TimecodeInsertion?: VideoTimecodeInsertion;
|
|
5567
|
+
TimecodeInsertion?: VideoTimecodeInsertion | undefined;
|
|
5568
5568
|
/**
|
|
5569
5569
|
* Find additional transcoding features under Preprocessors. Enable the features at each output individually. These features are disabled by default.
|
|
5570
5570
|
* @public
|
|
5571
5571
|
*/
|
|
5572
|
-
VideoPreprocessors?: VideoPreprocessor;
|
|
5572
|
+
VideoPreprocessors?: VideoPreprocessor | undefined;
|
|
5573
5573
|
/**
|
|
5574
5574
|
* Use Width to define the video resolution width, in pixels, for this output. To use the same resolution as your input: Leave both Width and Height blank. To evenly scale from your input resolution: Leave Width blank and enter a value for Height. For example, if your input is 1920x1080 and you set Height to 720, your output will be 1280x720.
|
|
5575
5575
|
* @public
|
|
5576
5576
|
*/
|
|
5577
|
-
Width?: number;
|
|
5577
|
+
Width?: number | undefined;
|
|
5578
5578
|
}
|
|
5579
5579
|
/**
|
|
5580
5580
|
* Each output in your job is a collection of settings that describes how you want MediaConvert to encode a single output file or stream. For more information, see https://docs.aws.amazon.com/mediaconvert/latest/ug/create-outputs.html.
|
|
@@ -5585,42 +5585,42 @@ export interface Output {
|
|
|
5585
5585
|
* Contains groups of audio encoding settings organized by audio codec. Include one instance of per output. Can contain multiple groups of encoding settings.
|
|
5586
5586
|
* @public
|
|
5587
5587
|
*/
|
|
5588
|
-
AudioDescriptions?: AudioDescription[];
|
|
5588
|
+
AudioDescriptions?: AudioDescription[] | undefined;
|
|
5589
5589
|
/**
|
|
5590
5590
|
* Contains groups of captions settings. For each output that has captions, include one instance of CaptionDescriptions. Can contain multiple groups of captions settings.
|
|
5591
5591
|
* @public
|
|
5592
5592
|
*/
|
|
5593
|
-
CaptionDescriptions?: CaptionDescription[];
|
|
5593
|
+
CaptionDescriptions?: CaptionDescription[] | undefined;
|
|
5594
5594
|
/**
|
|
5595
5595
|
* Container specific settings.
|
|
5596
5596
|
* @public
|
|
5597
5597
|
*/
|
|
5598
|
-
ContainerSettings?: ContainerSettings;
|
|
5598
|
+
ContainerSettings?: ContainerSettings | undefined;
|
|
5599
5599
|
/**
|
|
5600
5600
|
* Use Extension to specify the file extension for outputs in File output groups. If you do not specify a value, the service will use default extensions by container type as follows * MPEG-2 transport stream, m2ts * Quicktime, mov * MXF container, mxf * MPEG-4 container, mp4 * WebM container, webm * No Container, the service will use codec extensions (e.g. AAC, H265, H265, AC3)
|
|
5601
5601
|
* @public
|
|
5602
5602
|
*/
|
|
5603
|
-
Extension?: string;
|
|
5603
|
+
Extension?: string | undefined;
|
|
5604
5604
|
/**
|
|
5605
5605
|
* Use Name modifier to have the service add a string to the end of each output filename. You specify the base filename as part of your destination URI. When you create multiple outputs in the same output group, Name modifier is required. Name modifier also accepts format identifiers. For DASH ISO outputs, if you use the format identifiers $Number$ or $Time$ in one output, you must use them in the same way in all outputs of the output group.
|
|
5606
5606
|
* @public
|
|
5607
5607
|
*/
|
|
5608
|
-
NameModifier?: string;
|
|
5608
|
+
NameModifier?: string | undefined;
|
|
5609
5609
|
/**
|
|
5610
5610
|
* Specific settings for this type of output.
|
|
5611
5611
|
* @public
|
|
5612
5612
|
*/
|
|
5613
|
-
OutputSettings?: OutputSettings;
|
|
5613
|
+
OutputSettings?: OutputSettings | undefined;
|
|
5614
5614
|
/**
|
|
5615
5615
|
* Use Preset to specify a preset for your transcoding settings. Provide the system or custom preset name. You can specify either Preset or Container settings, but not both.
|
|
5616
5616
|
* @public
|
|
5617
5617
|
*/
|
|
5618
|
-
Preset?: string;
|
|
5618
|
+
Preset?: string | undefined;
|
|
5619
5619
|
/**
|
|
5620
5620
|
* VideoDescription contains a group of video encoding settings. The specific video settings depend on the video codec that you choose for the property codec. Include one instance of VideoDescription per output.
|
|
5621
5621
|
* @public
|
|
5622
5622
|
*/
|
|
5623
|
-
VideoDescription?: VideoDescription;
|
|
5623
|
+
VideoDescription?: VideoDescription | undefined;
|
|
5624
5624
|
}
|
|
5625
5625
|
/**
|
|
5626
5626
|
* Group of outputs
|
|
@@ -5631,27 +5631,27 @@ export interface OutputGroup {
|
|
|
5631
5631
|
* Use automated encoding to have MediaConvert choose your encoding settings for you, based on characteristics of your input video.
|
|
5632
5632
|
* @public
|
|
5633
5633
|
*/
|
|
5634
|
-
AutomatedEncodingSettings?: AutomatedEncodingSettings;
|
|
5634
|
+
AutomatedEncodingSettings?: AutomatedEncodingSettings | undefined;
|
|
5635
5635
|
/**
|
|
5636
5636
|
* Use Custom Group Name to specify a name for the output group. This value is displayed on the console and can make your job settings JSON more human-readable. It does not affect your outputs. Use up to twelve characters that are either letters, numbers, spaces, or underscores.
|
|
5637
5637
|
* @public
|
|
5638
5638
|
*/
|
|
5639
|
-
CustomName?: string;
|
|
5639
|
+
CustomName?: string | undefined;
|
|
5640
5640
|
/**
|
|
5641
5641
|
* Name of the output group
|
|
5642
5642
|
* @public
|
|
5643
5643
|
*/
|
|
5644
|
-
Name?: string;
|
|
5644
|
+
Name?: string | undefined;
|
|
5645
5645
|
/**
|
|
5646
5646
|
* Output Group settings, including type
|
|
5647
5647
|
* @public
|
|
5648
5648
|
*/
|
|
5649
|
-
OutputGroupSettings?: OutputGroupSettings;
|
|
5649
|
+
OutputGroupSettings?: OutputGroupSettings | undefined;
|
|
5650
5650
|
/**
|
|
5651
5651
|
* This object holds groups of encoding settings, one group of settings per output.
|
|
5652
5652
|
* @public
|
|
5653
5653
|
*/
|
|
5654
|
-
Outputs?: Output[];
|
|
5654
|
+
Outputs?: Output[] | undefined;
|
|
5655
5655
|
}
|
|
5656
5656
|
/**
|
|
5657
5657
|
* @public
|
|
@@ -5675,22 +5675,22 @@ export interface TimecodeConfig {
|
|
|
5675
5675
|
* If you use an editing platform that relies on an anchor timecode, use Anchor Timecode to specify a timecode that will match the input video frame to the output video frame. Use 24-hour format with frame number, (HH:MM:SS:FF) or (HH:MM:SS;FF). This setting ignores frame rate conversion. System behavior for Anchor Timecode varies depending on your setting for Source. * If Source is set to Specified Start, the first input frame is the specified value in Start Timecode. Anchor Timecode and Start Timecode are used calculate output timecode. * If Source is set to Start at 0 the first frame is 00:00:00:00. * If Source is set to Embedded, the first frame is the timecode value on the first input frame of the input.
|
|
5676
5676
|
* @public
|
|
5677
5677
|
*/
|
|
5678
|
-
Anchor?: string;
|
|
5678
|
+
Anchor?: string | undefined;
|
|
5679
5679
|
/**
|
|
5680
5680
|
* Use Source to set how timecodes are handled within this job. To make sure that your video, audio, captions, and markers are synchronized and that time-based features, such as image inserter, work correctly, choose the Timecode source option that matches your assets. All timecodes are in a 24-hour format with frame number (HH:MM:SS:FF). * Embedded - Use the timecode that is in the input video. If no embedded timecode is in the source, the service will use Start at 0 instead. * Start at 0 - Set the timecode of the initial frame to 00:00:00:00. * Specified Start - Set the timecode of the initial frame to a value other than zero. You use Start timecode to provide this value.
|
|
5681
5681
|
* @public
|
|
5682
5682
|
*/
|
|
5683
|
-
Source?: TimecodeSource;
|
|
5683
|
+
Source?: TimecodeSource | undefined;
|
|
5684
5684
|
/**
|
|
5685
5685
|
* Only use when you set Source to Specified start. Use Start timecode to specify the timecode for the initial frame. Use 24-hour format with frame number, (HH:MM:SS:FF) or (HH:MM:SS;FF).
|
|
5686
5686
|
* @public
|
|
5687
5687
|
*/
|
|
5688
|
-
Start?: string;
|
|
5688
|
+
Start?: string | undefined;
|
|
5689
5689
|
/**
|
|
5690
5690
|
* Only applies to outputs that support program-date-time stamp. Use Timestamp offset to overwrite the timecode date without affecting the time and frame number. Provide the new date as a string in the format "yyyy-mm-dd". To use Timestamp offset, you must also enable Insert program-date-time in the output settings. For example, if the date part of your timecodes is 2002-1-25 and you want to change it to one year later, set Timestamp offset to 2003-1-25.
|
|
5691
5691
|
* @public
|
|
5692
5692
|
*/
|
|
5693
|
-
TimestampOffset?: string;
|
|
5693
|
+
TimestampOffset?: string | undefined;
|
|
5694
5694
|
}
|
|
5695
5695
|
/**
|
|
5696
5696
|
* Insert user-defined custom ID3 metadata at timecodes that you specify. In each output that you want to include this metadata, you must set ID3 metadata to Passthrough.
|
|
@@ -5701,7 +5701,7 @@ export interface TimedMetadataInsertion {
|
|
|
5701
5701
|
* Id3Insertions contains the array of Id3Insertion instances.
|
|
5702
5702
|
* @public
|
|
5703
5703
|
*/
|
|
5704
|
-
Id3Insertions?: Id3Insertion[];
|
|
5704
|
+
Id3Insertions?: Id3Insertion[] | undefined;
|
|
5705
5705
|
}
|
|
5706
5706
|
/**
|
|
5707
5707
|
* JobSettings contains all the transcode settings for a job.
|
|
@@ -5712,72 +5712,72 @@ export interface JobSettings {
|
|
|
5712
5712
|
* When specified, this offset (in milliseconds) is added to the input Ad Avail PTS time.
|
|
5713
5713
|
* @public
|
|
5714
5714
|
*/
|
|
5715
|
-
AdAvailOffset?: number;
|
|
5715
|
+
AdAvailOffset?: number | undefined;
|
|
5716
5716
|
/**
|
|
5717
5717
|
* Settings for ad avail blanking. Video can be blanked or overlaid with an image, and audio muted during SCTE-35 triggered ad avails.
|
|
5718
5718
|
* @public
|
|
5719
5719
|
*/
|
|
5720
|
-
AvailBlanking?: AvailBlanking;
|
|
5720
|
+
AvailBlanking?: AvailBlanking | undefined;
|
|
5721
5721
|
/**
|
|
5722
5722
|
* Use 3D LUTs to specify custom color mapping behavior when you convert from one color space into another. You can include up to 8 different 3D LUTs. For more information, see: https://docs.aws.amazon.com/mediaconvert/latest/ug/3d-luts.html
|
|
5723
5723
|
* @public
|
|
5724
5724
|
*/
|
|
5725
|
-
ColorConversion3DLUTSettings?: ColorConversion3DLUTSetting[];
|
|
5725
|
+
ColorConversion3DLUTSettings?: ColorConversion3DLUTSetting[] | undefined;
|
|
5726
5726
|
/**
|
|
5727
5727
|
* Settings for Event Signaling And Messaging (ESAM). If you don't do ad insertion, you can ignore these settings.
|
|
5728
5728
|
* @public
|
|
5729
5729
|
*/
|
|
5730
|
-
Esam?: EsamSettings;
|
|
5730
|
+
Esam?: EsamSettings | undefined;
|
|
5731
5731
|
/**
|
|
5732
5732
|
* If your source content has EIA-608 Line 21 Data Services, enable this feature to specify what MediaConvert does with the Extended Data Services (XDS) packets. You can choose to pass through XDS packets, or remove them from the output. For more information about XDS, see EIA-608 Line Data Services, section 9.5.1.5 05h Content Advisory.
|
|
5733
5733
|
* @public
|
|
5734
5734
|
*/
|
|
5735
|
-
ExtendedDataServices?: ExtendedDataServices;
|
|
5735
|
+
ExtendedDataServices?: ExtendedDataServices | undefined;
|
|
5736
5736
|
/**
|
|
5737
5737
|
* Specify the input that MediaConvert references for your default output settings. MediaConvert uses this input's Resolution, Frame rate, and Pixel aspect ratio for all outputs that you don't manually specify different output settings for. Enabling this setting will disable "Follow source" for all other inputs. If MediaConvert cannot follow your source, for example if you specify an audio-only input, MediaConvert uses the first followable input instead. In your JSON job specification, enter an integer from 1 to 150 corresponding to the order of your inputs.
|
|
5738
5738
|
* @public
|
|
5739
5739
|
*/
|
|
5740
|
-
FollowSource?: number;
|
|
5740
|
+
FollowSource?: number | undefined;
|
|
5741
5741
|
/**
|
|
5742
5742
|
* Use Inputs to define source file used in the transcode job. There can be multiple inputs add in a job. These inputs will be concantenated together to create the output.
|
|
5743
5743
|
* @public
|
|
5744
5744
|
*/
|
|
5745
|
-
Inputs?: Input[];
|
|
5745
|
+
Inputs?: Input[] | undefined;
|
|
5746
5746
|
/**
|
|
5747
5747
|
* Use these settings only when you use Kantar watermarking. Specify the values that MediaConvert uses to generate and place Kantar watermarks in your output audio. These settings apply to every output in your job. In addition to specifying these values, you also need to store your Kantar credentials in AWS Secrets Manager. For more information, see https://docs.aws.amazon.com/mediaconvert/latest/ug/kantar-watermarking.html.
|
|
5748
5748
|
* @public
|
|
5749
5749
|
*/
|
|
5750
|
-
KantarWatermark?: KantarWatermarkSettings;
|
|
5750
|
+
KantarWatermark?: KantarWatermarkSettings | undefined;
|
|
5751
5751
|
/**
|
|
5752
5752
|
* Overlay motion graphics on top of your video. The motion graphics that you specify here appear on all outputs in all output groups. For more information, see https://docs.aws.amazon.com/mediaconvert/latest/ug/motion-graphic-overlay.html.
|
|
5753
5753
|
* @public
|
|
5754
5754
|
*/
|
|
5755
|
-
MotionImageInserter?: MotionImageInserter;
|
|
5755
|
+
MotionImageInserter?: MotionImageInserter | undefined;
|
|
5756
5756
|
/**
|
|
5757
5757
|
* Settings for your Nielsen configuration. If you don't do Nielsen measurement and analytics, ignore these settings. When you enable Nielsen configuration, MediaConvert enables PCM to ID3 tagging for all outputs in the job.
|
|
5758
5758
|
* @public
|
|
5759
5759
|
*/
|
|
5760
|
-
NielsenConfiguration?: NielsenConfiguration;
|
|
5760
|
+
NielsenConfiguration?: NielsenConfiguration | undefined;
|
|
5761
5761
|
/**
|
|
5762
|
-
* Ignore these settings unless you are using Nielsen non-linear watermarking. Specify the values that MediaConvert uses to generate and place Nielsen watermarks in your output audio. In addition to specifying these values, you also need to set up your cloud TIC server. These settings apply to every output in your job. The MediaConvert implementation is currently with the following Nielsen versions: Nielsen Watermark SDK Version
|
|
5762
|
+
* Ignore these settings unless you are using Nielsen non-linear watermarking. Specify the values that MediaConvert uses to generate and place Nielsen watermarks in your output audio. In addition to specifying these values, you also need to set up your cloud TIC server. These settings apply to every output in your job. The MediaConvert implementation is currently with the following Nielsen versions: Nielsen Watermark SDK Version 6.0.13 Nielsen NLM Watermark Engine Version 1.3.3 Nielsen Watermark Authenticator [SID_TIC] Version [7.0.0]
|
|
5763
5763
|
* @public
|
|
5764
5764
|
*/
|
|
5765
|
-
NielsenNonLinearWatermark?: NielsenNonLinearWatermarkSettings;
|
|
5765
|
+
NielsenNonLinearWatermark?: NielsenNonLinearWatermarkSettings | undefined;
|
|
5766
5766
|
/**
|
|
5767
5767
|
* Contains one group of settings for each set of outputs that share a common package type. All unpackaged files (MPEG-4, MPEG-2 TS, Quicktime, MXF, and no container) are grouped in a single output group as well. Required in is a group of settings that apply to the whole group. This required object depends on the value you set for Type. Type, settings object pairs are as follows. * FILE_GROUP_SETTINGS, FileGroupSettings * HLS_GROUP_SETTINGS, HlsGroupSettings * DASH_ISO_GROUP_SETTINGS, DashIsoGroupSettings * MS_SMOOTH_GROUP_SETTINGS, MsSmoothGroupSettings * CMAF_GROUP_SETTINGS, CmafGroupSettings
|
|
5768
5768
|
* @public
|
|
5769
5769
|
*/
|
|
5770
|
-
OutputGroups?: OutputGroup[];
|
|
5770
|
+
OutputGroups?: OutputGroup[] | undefined;
|
|
5771
5771
|
/**
|
|
5772
5772
|
* These settings control how the service handles timecodes throughout the job. These settings don't affect input clipping.
|
|
5773
5773
|
* @public
|
|
5774
5774
|
*/
|
|
5775
|
-
TimecodeConfig?: TimecodeConfig;
|
|
5775
|
+
TimecodeConfig?: TimecodeConfig | undefined;
|
|
5776
5776
|
/**
|
|
5777
5777
|
* Insert user-defined custom ID3 metadata at timecodes that you specify. In each output that you want to include this metadata, you must set ID3 metadata to Passthrough.
|
|
5778
5778
|
* @public
|
|
5779
5779
|
*/
|
|
5780
|
-
TimedMetadataInsertion?: TimedMetadataInsertion;
|
|
5780
|
+
TimedMetadataInsertion?: TimedMetadataInsertion | undefined;
|
|
5781
5781
|
}
|
|
5782
5782
|
/**
|
|
5783
5783
|
* @public
|
|
@@ -5840,17 +5840,17 @@ export interface Timing {
|
|
|
5840
5840
|
* The time, in Unix epoch format, that the transcoding job finished
|
|
5841
5841
|
* @public
|
|
5842
5842
|
*/
|
|
5843
|
-
FinishTime?: Date;
|
|
5843
|
+
FinishTime?: Date | undefined;
|
|
5844
5844
|
/**
|
|
5845
5845
|
* The time, in Unix epoch format, that transcoding for the job began.
|
|
5846
5846
|
* @public
|
|
5847
5847
|
*/
|
|
5848
|
-
StartTime?: Date;
|
|
5848
|
+
StartTime?: Date | undefined;
|
|
5849
5849
|
/**
|
|
5850
5850
|
* The time, in Unix epoch format, that you submitted the job.
|
|
5851
5851
|
* @public
|
|
5852
5852
|
*/
|
|
5853
|
-
SubmitTime?: Date;
|
|
5853
|
+
SubmitTime?: Date | undefined;
|
|
5854
5854
|
}
|
|
5855
5855
|
/**
|
|
5856
5856
|
* Contains any warning codes and their count for the job.
|
|
@@ -5877,107 +5877,107 @@ export interface Job {
|
|
|
5877
5877
|
* Accelerated transcoding can significantly speed up jobs with long, visually complex content.
|
|
5878
5878
|
* @public
|
|
5879
5879
|
*/
|
|
5880
|
-
AccelerationSettings?: AccelerationSettings;
|
|
5880
|
+
AccelerationSettings?: AccelerationSettings | undefined;
|
|
5881
5881
|
/**
|
|
5882
5882
|
* Describes whether the current job is running with accelerated transcoding. For jobs that have Acceleration (AccelerationMode) set to DISABLED, AccelerationStatus is always NOT_APPLICABLE. For jobs that have Acceleration (AccelerationMode) set to ENABLED or PREFERRED, AccelerationStatus is one of the other states. AccelerationStatus is IN_PROGRESS initially, while the service determines whether the input files and job settings are compatible with accelerated transcoding. If they are, AcclerationStatus is ACCELERATED. If your input files and job settings aren't compatible with accelerated transcoding, the service either fails your job or runs it without accelerated transcoding, depending on how you set Acceleration (AccelerationMode). When the service runs your job without accelerated transcoding, AccelerationStatus is NOT_ACCELERATED.
|
|
5883
5883
|
* @public
|
|
5884
5884
|
*/
|
|
5885
|
-
AccelerationStatus?: AccelerationStatus;
|
|
5885
|
+
AccelerationStatus?: AccelerationStatus | undefined;
|
|
5886
5886
|
/**
|
|
5887
5887
|
* An identifier for this resource that is unique within all of AWS.
|
|
5888
5888
|
* @public
|
|
5889
5889
|
*/
|
|
5890
|
-
Arn?: string;
|
|
5890
|
+
Arn?: string | undefined;
|
|
5891
5891
|
/**
|
|
5892
5892
|
* The tag type that AWS Billing and Cost Management will use to sort your AWS Elemental MediaConvert costs on any billing report that you set up.
|
|
5893
5893
|
* @public
|
|
5894
5894
|
*/
|
|
5895
|
-
BillingTagsSource?: BillingTagsSource;
|
|
5895
|
+
BillingTagsSource?: BillingTagsSource | undefined;
|
|
5896
5896
|
/**
|
|
5897
5897
|
* Prevent duplicate jobs from being created and ensure idempotency for your requests. A client request token can be any string that includes up to 64 ASCII characters. If you reuse a client request token within one minute of a successful request, the API returns the job details of the original request instead. For more information see https://docs.aws.amazon.com/mediaconvert/latest/apireference/idempotency.html.
|
|
5898
5898
|
* @public
|
|
5899
5899
|
*/
|
|
5900
|
-
ClientRequestToken?: string;
|
|
5900
|
+
ClientRequestToken?: string | undefined;
|
|
5901
5901
|
/**
|
|
5902
5902
|
* The time, in Unix epoch format in seconds, when the job got created.
|
|
5903
5903
|
* @public
|
|
5904
5904
|
*/
|
|
5905
|
-
CreatedAt?: Date;
|
|
5905
|
+
CreatedAt?: Date | undefined;
|
|
5906
5906
|
/**
|
|
5907
5907
|
* A job's phase can be PROBING, TRANSCODING OR UPLOADING
|
|
5908
5908
|
* @public
|
|
5909
5909
|
*/
|
|
5910
|
-
CurrentPhase?: JobPhase;
|
|
5910
|
+
CurrentPhase?: JobPhase | undefined;
|
|
5911
5911
|
/**
|
|
5912
5912
|
* Error code for the job
|
|
5913
5913
|
* @public
|
|
5914
5914
|
*/
|
|
5915
|
-
ErrorCode?: number;
|
|
5915
|
+
ErrorCode?: number | undefined;
|
|
5916
5916
|
/**
|
|
5917
5917
|
* Error message of Job
|
|
5918
5918
|
* @public
|
|
5919
5919
|
*/
|
|
5920
|
-
ErrorMessage?: string;
|
|
5920
|
+
ErrorMessage?: string | undefined;
|
|
5921
5921
|
/**
|
|
5922
5922
|
* Optional list of hop destinations.
|
|
5923
5923
|
* @public
|
|
5924
5924
|
*/
|
|
5925
|
-
HopDestinations?: HopDestination[];
|
|
5925
|
+
HopDestinations?: HopDestination[] | undefined;
|
|
5926
5926
|
/**
|
|
5927
5927
|
* A portion of the job's ARN, unique within your AWS Elemental MediaConvert resources
|
|
5928
5928
|
* @public
|
|
5929
5929
|
*/
|
|
5930
|
-
Id?: string;
|
|
5930
|
+
Id?: string | undefined;
|
|
5931
5931
|
/**
|
|
5932
5932
|
* The Job engine version that you requested for your job. Valid versions are in a YYYY-MM-DD format.
|
|
5933
5933
|
* @public
|
|
5934
5934
|
*/
|
|
5935
|
-
JobEngineVersionRequested?: string;
|
|
5935
|
+
JobEngineVersionRequested?: string | undefined;
|
|
5936
5936
|
/**
|
|
5937
5937
|
* The Job engine version that your job used. Job engine versions are in a YYYY-MM-DD format. When you request an expired version, the response for this property will be empty. Requests to create jobs with an expired version result in a regular job, as if no specific Job engine version was requested. When you request an invalid version, the response for this property will be empty. Requests to create jobs with an invalid version result in a 400 error message, and no job is created.
|
|
5938
5938
|
* @public
|
|
5939
5939
|
*/
|
|
5940
|
-
JobEngineVersionUsed?: string;
|
|
5940
|
+
JobEngineVersionUsed?: string | undefined;
|
|
5941
5941
|
/**
|
|
5942
5942
|
* An estimate of how far your job has progressed. This estimate is shown as a percentage of the total time from when your job leaves its queue to when your output files appear in your output Amazon S3 bucket. AWS Elemental MediaConvert provides jobPercentComplete in CloudWatch STATUS_UPDATE events and in the response to GetJob and ListJobs requests. The jobPercentComplete estimate is reliable for the following input containers: Quicktime, Transport Stream, MP4, and MXF. For some jobs, the service can't provide information about job progress. In those cases, jobPercentComplete returns a null value.
|
|
5943
5943
|
* @public
|
|
5944
5944
|
*/
|
|
5945
|
-
JobPercentComplete?: number;
|
|
5945
|
+
JobPercentComplete?: number | undefined;
|
|
5946
5946
|
/**
|
|
5947
5947
|
* The job template that the job is created from, if it is created from a job template.
|
|
5948
5948
|
* @public
|
|
5949
5949
|
*/
|
|
5950
|
-
JobTemplate?: string;
|
|
5950
|
+
JobTemplate?: string | undefined;
|
|
5951
5951
|
/**
|
|
5952
5952
|
* Provides messages from the service about jobs that you have already successfully submitted.
|
|
5953
5953
|
* @public
|
|
5954
5954
|
*/
|
|
5955
|
-
Messages?: JobMessages;
|
|
5955
|
+
Messages?: JobMessages | undefined;
|
|
5956
5956
|
/**
|
|
5957
5957
|
* List of output group details
|
|
5958
5958
|
* @public
|
|
5959
5959
|
*/
|
|
5960
|
-
OutputGroupDetails?: OutputGroupDetail[];
|
|
5960
|
+
OutputGroupDetails?: OutputGroupDetail[] | undefined;
|
|
5961
5961
|
/**
|
|
5962
5962
|
* Relative priority on the job.
|
|
5963
5963
|
* @public
|
|
5964
5964
|
*/
|
|
5965
|
-
Priority?: number;
|
|
5965
|
+
Priority?: number | undefined;
|
|
5966
5966
|
/**
|
|
5967
5967
|
* When you create a job, you can specify a queue to send it to. If you don't specify, the job will go to the default queue. For more about queues, see the User Guide topic at https://docs.aws.amazon.com/mediaconvert/latest/ug/what-is.html
|
|
5968
5968
|
* @public
|
|
5969
5969
|
*/
|
|
5970
|
-
Queue?: string;
|
|
5970
|
+
Queue?: string | undefined;
|
|
5971
5971
|
/**
|
|
5972
5972
|
* The job's queue hopping history.
|
|
5973
5973
|
* @public
|
|
5974
5974
|
*/
|
|
5975
|
-
QueueTransitions?: QueueTransition[];
|
|
5975
|
+
QueueTransitions?: QueueTransition[] | undefined;
|
|
5976
5976
|
/**
|
|
5977
5977
|
* The number of times that the service automatically attempted to process your job after encountering an error.
|
|
5978
5978
|
* @public
|
|
5979
5979
|
*/
|
|
5980
|
-
RetryCount?: number;
|
|
5980
|
+
RetryCount?: number | undefined;
|
|
5981
5981
|
/**
|
|
5982
5982
|
* The IAM role you use for creating this job. For details about permissions, see the User Guide topic at the User Guide at https://docs.aws.amazon.com/mediaconvert/latest/ug/iam-role.html
|
|
5983
5983
|
* @public
|
|
@@ -5992,32 +5992,32 @@ export interface Job {
|
|
|
5992
5992
|
* Enable this setting when you run a test job to estimate how many reserved transcoding slots (RTS) you need. When this is enabled, MediaConvert runs your job from an on-demand queue with similar performance to what you will see with one RTS in a reserved queue. This setting is disabled by default.
|
|
5993
5993
|
* @public
|
|
5994
5994
|
*/
|
|
5995
|
-
SimulateReservedQueue?: SimulateReservedQueue;
|
|
5995
|
+
SimulateReservedQueue?: SimulateReservedQueue | undefined;
|
|
5996
5996
|
/**
|
|
5997
5997
|
* A job's status can be SUBMITTED, PROGRESSING, COMPLETE, CANCELED, or ERROR.
|
|
5998
5998
|
* @public
|
|
5999
5999
|
*/
|
|
6000
|
-
Status?: JobStatus;
|
|
6000
|
+
Status?: JobStatus | undefined;
|
|
6001
6001
|
/**
|
|
6002
6002
|
* Specify how often MediaConvert sends STATUS_UPDATE events to Amazon CloudWatch Events. Set the interval, in seconds, between status updates. MediaConvert sends an update at this interval from the time the service begins processing your job to the time it completes the transcode or encounters an error.
|
|
6003
6003
|
* @public
|
|
6004
6004
|
*/
|
|
6005
|
-
StatusUpdateInterval?: StatusUpdateInterval;
|
|
6005
|
+
StatusUpdateInterval?: StatusUpdateInterval | undefined;
|
|
6006
6006
|
/**
|
|
6007
6007
|
* Information about when jobs are submitted, started, and finished is specified in Unix epoch format in seconds.
|
|
6008
6008
|
* @public
|
|
6009
6009
|
*/
|
|
6010
|
-
Timing?: Timing;
|
|
6010
|
+
Timing?: Timing | undefined;
|
|
6011
6011
|
/**
|
|
6012
6012
|
* User-defined metadata that you want to associate with an MediaConvert job. You specify metadata in key/value pairs.
|
|
6013
6013
|
* @public
|
|
6014
6014
|
*/
|
|
6015
|
-
UserMetadata?: Record<string, string
|
|
6015
|
+
UserMetadata?: Record<string, string> | undefined;
|
|
6016
6016
|
/**
|
|
6017
6017
|
* Contains any warning messages for the job. Use to help identify potential issues with your input, output, or job. For more information, see https://docs.aws.amazon.com/mediaconvert/latest/ug/warning_codes.html
|
|
6018
6018
|
* @public
|
|
6019
6019
|
*/
|
|
6020
|
-
Warnings?: WarningGroup[];
|
|
6020
|
+
Warnings?: WarningGroup[] | undefined;
|
|
6021
6021
|
}
|
|
6022
6022
|
/**
|
|
6023
6023
|
* Use Job engine versions to run jobs for your production workflow on one version, while you test and validate the latest version. Job engine versions are in a YYYY-MM-DD format.
|
|
@@ -6028,12 +6028,12 @@ export interface JobEngineVersion {
|
|
|
6028
6028
|
* The date that this Job engine version expires. Requests to create jobs with an expired version result in a regular job, as if no specific Job engine version was requested.
|
|
6029
6029
|
* @public
|
|
6030
6030
|
*/
|
|
6031
|
-
ExpirationDate?: Date;
|
|
6031
|
+
ExpirationDate?: Date | undefined;
|
|
6032
6032
|
/**
|
|
6033
6033
|
* Use Job engine versions to run jobs for your production workflow on one version, while you test and validate the latest version. Job engine versions are in a YYYY-MM-DD format.
|
|
6034
6034
|
* @public
|
|
6035
6035
|
*/
|
|
6036
|
-
Version?: string;
|
|
6036
|
+
Version?: string | undefined;
|
|
6037
6037
|
}
|
|
6038
6038
|
/**
|
|
6039
6039
|
* JobTemplateSettings contains all the transcode settings saved in the template that will be applied to jobs created from it.
|
|
@@ -6044,72 +6044,72 @@ export interface JobTemplateSettings {
|
|
|
6044
6044
|
* When specified, this offset (in milliseconds) is added to the input Ad Avail PTS time.
|
|
6045
6045
|
* @public
|
|
6046
6046
|
*/
|
|
6047
|
-
AdAvailOffset?: number;
|
|
6047
|
+
AdAvailOffset?: number | undefined;
|
|
6048
6048
|
/**
|
|
6049
6049
|
* Settings for ad avail blanking. Video can be blanked or overlaid with an image, and audio muted during SCTE-35 triggered ad avails.
|
|
6050
6050
|
* @public
|
|
6051
6051
|
*/
|
|
6052
|
-
AvailBlanking?: AvailBlanking;
|
|
6052
|
+
AvailBlanking?: AvailBlanking | undefined;
|
|
6053
6053
|
/**
|
|
6054
6054
|
* Use 3D LUTs to specify custom color mapping behavior when you convert from one color space into another. You can include up to 8 different 3D LUTs. For more information, see: https://docs.aws.amazon.com/mediaconvert/latest/ug/3d-luts.html
|
|
6055
6055
|
* @public
|
|
6056
6056
|
*/
|
|
6057
|
-
ColorConversion3DLUTSettings?: ColorConversion3DLUTSetting[];
|
|
6057
|
+
ColorConversion3DLUTSettings?: ColorConversion3DLUTSetting[] | undefined;
|
|
6058
6058
|
/**
|
|
6059
6059
|
* Settings for Event Signaling And Messaging (ESAM). If you don't do ad insertion, you can ignore these settings.
|
|
6060
6060
|
* @public
|
|
6061
6061
|
*/
|
|
6062
|
-
Esam?: EsamSettings;
|
|
6062
|
+
Esam?: EsamSettings | undefined;
|
|
6063
6063
|
/**
|
|
6064
6064
|
* If your source content has EIA-608 Line 21 Data Services, enable this feature to specify what MediaConvert does with the Extended Data Services (XDS) packets. You can choose to pass through XDS packets, or remove them from the output. For more information about XDS, see EIA-608 Line Data Services, section 9.5.1.5 05h Content Advisory.
|
|
6065
6065
|
* @public
|
|
6066
6066
|
*/
|
|
6067
|
-
ExtendedDataServices?: ExtendedDataServices;
|
|
6067
|
+
ExtendedDataServices?: ExtendedDataServices | undefined;
|
|
6068
6068
|
/**
|
|
6069
6069
|
* Specify the input that MediaConvert references for your default output settings. MediaConvert uses this input's Resolution, Frame rate, and Pixel aspect ratio for all outputs that you don't manually specify different output settings for. Enabling this setting will disable "Follow source" for all other inputs. If MediaConvert cannot follow your source, for example if you specify an audio-only input, MediaConvert uses the first followable input instead. In your JSON job specification, enter an integer from 1 to 150 corresponding to the order of your inputs.
|
|
6070
6070
|
* @public
|
|
6071
6071
|
*/
|
|
6072
|
-
FollowSource?: number;
|
|
6072
|
+
FollowSource?: number | undefined;
|
|
6073
6073
|
/**
|
|
6074
6074
|
* Use Inputs to define the source file used in the transcode job. There can only be one input in a job template. Using the API, you can include multiple inputs when referencing a job template.
|
|
6075
6075
|
* @public
|
|
6076
6076
|
*/
|
|
6077
|
-
Inputs?: InputTemplate[];
|
|
6077
|
+
Inputs?: InputTemplate[] | undefined;
|
|
6078
6078
|
/**
|
|
6079
6079
|
* Use these settings only when you use Kantar watermarking. Specify the values that MediaConvert uses to generate and place Kantar watermarks in your output audio. These settings apply to every output in your job. In addition to specifying these values, you also need to store your Kantar credentials in AWS Secrets Manager. For more information, see https://docs.aws.amazon.com/mediaconvert/latest/ug/kantar-watermarking.html.
|
|
6080
6080
|
* @public
|
|
6081
6081
|
*/
|
|
6082
|
-
KantarWatermark?: KantarWatermarkSettings;
|
|
6082
|
+
KantarWatermark?: KantarWatermarkSettings | undefined;
|
|
6083
6083
|
/**
|
|
6084
6084
|
* Overlay motion graphics on top of your video. The motion graphics that you specify here appear on all outputs in all output groups. For more information, see https://docs.aws.amazon.com/mediaconvert/latest/ug/motion-graphic-overlay.html.
|
|
6085
6085
|
* @public
|
|
6086
6086
|
*/
|
|
6087
|
-
MotionImageInserter?: MotionImageInserter;
|
|
6087
|
+
MotionImageInserter?: MotionImageInserter | undefined;
|
|
6088
6088
|
/**
|
|
6089
6089
|
* Settings for your Nielsen configuration. If you don't do Nielsen measurement and analytics, ignore these settings. When you enable Nielsen configuration, MediaConvert enables PCM to ID3 tagging for all outputs in the job.
|
|
6090
6090
|
* @public
|
|
6091
6091
|
*/
|
|
6092
|
-
NielsenConfiguration?: NielsenConfiguration;
|
|
6092
|
+
NielsenConfiguration?: NielsenConfiguration | undefined;
|
|
6093
6093
|
/**
|
|
6094
|
-
* Ignore these settings unless you are using Nielsen non-linear watermarking. Specify the values that MediaConvert uses to generate and place Nielsen watermarks in your output audio. In addition to specifying these values, you also need to set up your cloud TIC server. These settings apply to every output in your job. The MediaConvert implementation is currently with the following Nielsen versions: Nielsen Watermark SDK Version
|
|
6094
|
+
* Ignore these settings unless you are using Nielsen non-linear watermarking. Specify the values that MediaConvert uses to generate and place Nielsen watermarks in your output audio. In addition to specifying these values, you also need to set up your cloud TIC server. These settings apply to every output in your job. The MediaConvert implementation is currently with the following Nielsen versions: Nielsen Watermark SDK Version 6.0.13 Nielsen NLM Watermark Engine Version 1.3.3 Nielsen Watermark Authenticator [SID_TIC] Version [7.0.0]
|
|
6095
6095
|
* @public
|
|
6096
6096
|
*/
|
|
6097
|
-
NielsenNonLinearWatermark?: NielsenNonLinearWatermarkSettings;
|
|
6097
|
+
NielsenNonLinearWatermark?: NielsenNonLinearWatermarkSettings | undefined;
|
|
6098
6098
|
/**
|
|
6099
6099
|
* Contains one group of settings for each set of outputs that share a common package type. All unpackaged files (MPEG-4, MPEG-2 TS, Quicktime, MXF, and no container) are grouped in a single output group as well. Required in is a group of settings that apply to the whole group. This required object depends on the value you set for Type. Type, settings object pairs are as follows. * FILE_GROUP_SETTINGS, FileGroupSettings * HLS_GROUP_SETTINGS, HlsGroupSettings * DASH_ISO_GROUP_SETTINGS, DashIsoGroupSettings * MS_SMOOTH_GROUP_SETTINGS, MsSmoothGroupSettings * CMAF_GROUP_SETTINGS, CmafGroupSettings
|
|
6100
6100
|
* @public
|
|
6101
6101
|
*/
|
|
6102
|
-
OutputGroups?: OutputGroup[];
|
|
6102
|
+
OutputGroups?: OutputGroup[] | undefined;
|
|
6103
6103
|
/**
|
|
6104
6104
|
* These settings control how the service handles timecodes throughout the job. These settings don't affect input clipping.
|
|
6105
6105
|
* @public
|
|
6106
6106
|
*/
|
|
6107
|
-
TimecodeConfig?: TimecodeConfig;
|
|
6107
|
+
TimecodeConfig?: TimecodeConfig | undefined;
|
|
6108
6108
|
/**
|
|
6109
6109
|
* Insert user-defined custom ID3 metadata at timecodes that you specify. In each output that you want to include this metadata, you must set ID3 metadata to Passthrough.
|
|
6110
6110
|
* @public
|
|
6111
6111
|
*/
|
|
6112
|
-
TimedMetadataInsertion?: TimedMetadataInsertion;
|
|
6112
|
+
TimedMetadataInsertion?: TimedMetadataInsertion | undefined;
|
|
6113
6113
|
}
|
|
6114
6114
|
/**
|
|
6115
6115
|
* @public
|
|
@@ -6132,37 +6132,37 @@ export interface JobTemplate {
|
|
|
6132
6132
|
* Accelerated transcoding can significantly speed up jobs with long, visually complex content.
|
|
6133
6133
|
* @public
|
|
6134
6134
|
*/
|
|
6135
|
-
AccelerationSettings?: AccelerationSettings;
|
|
6135
|
+
AccelerationSettings?: AccelerationSettings | undefined;
|
|
6136
6136
|
/**
|
|
6137
6137
|
* An identifier for this resource that is unique within all of AWS.
|
|
6138
6138
|
* @public
|
|
6139
6139
|
*/
|
|
6140
|
-
Arn?: string;
|
|
6140
|
+
Arn?: string | undefined;
|
|
6141
6141
|
/**
|
|
6142
6142
|
* An optional category you create to organize your job templates.
|
|
6143
6143
|
* @public
|
|
6144
6144
|
*/
|
|
6145
|
-
Category?: string;
|
|
6145
|
+
Category?: string | undefined;
|
|
6146
6146
|
/**
|
|
6147
6147
|
* The timestamp in epoch seconds for Job template creation.
|
|
6148
6148
|
* @public
|
|
6149
6149
|
*/
|
|
6150
|
-
CreatedAt?: Date;
|
|
6150
|
+
CreatedAt?: Date | undefined;
|
|
6151
6151
|
/**
|
|
6152
6152
|
* An optional description you create for each job template.
|
|
6153
6153
|
* @public
|
|
6154
6154
|
*/
|
|
6155
|
-
Description?: string;
|
|
6155
|
+
Description?: string | undefined;
|
|
6156
6156
|
/**
|
|
6157
6157
|
* Optional list of hop destinations.
|
|
6158
6158
|
* @public
|
|
6159
6159
|
*/
|
|
6160
|
-
HopDestinations?: HopDestination[];
|
|
6160
|
+
HopDestinations?: HopDestination[] | undefined;
|
|
6161
6161
|
/**
|
|
6162
6162
|
* The timestamp in epoch seconds when the Job template was last updated.
|
|
6163
6163
|
* @public
|
|
6164
6164
|
*/
|
|
6165
|
-
LastUpdated?: Date;
|
|
6165
|
+
LastUpdated?: Date | undefined;
|
|
6166
6166
|
/**
|
|
6167
6167
|
* A name you create for each job template. Each name must be unique within your account.
|
|
6168
6168
|
* @public
|
|
@@ -6172,12 +6172,12 @@ export interface JobTemplate {
|
|
|
6172
6172
|
* Relative priority on the job.
|
|
6173
6173
|
* @public
|
|
6174
6174
|
*/
|
|
6175
|
-
Priority?: number;
|
|
6175
|
+
Priority?: number | undefined;
|
|
6176
6176
|
/**
|
|
6177
6177
|
* Optional. The queue that jobs created from this template are assigned to. If you don't specify this, jobs will go to the default queue.
|
|
6178
6178
|
* @public
|
|
6179
6179
|
*/
|
|
6180
|
-
Queue?: string;
|
|
6180
|
+
Queue?: string | undefined;
|
|
6181
6181
|
/**
|
|
6182
6182
|
* JobTemplateSettings contains all the transcode settings saved in the template that will be applied to jobs created from it.
|
|
6183
6183
|
* @public
|
|
@@ -6187,12 +6187,12 @@ export interface JobTemplate {
|
|
|
6187
6187
|
* Specify how often MediaConvert sends STATUS_UPDATE events to Amazon CloudWatch Events. Set the interval, in seconds, between status updates. MediaConvert sends an update at this interval from the time the service begins processing your job to the time it completes the transcode or encounters an error.
|
|
6188
6188
|
* @public
|
|
6189
6189
|
*/
|
|
6190
|
-
StatusUpdateInterval?: StatusUpdateInterval;
|
|
6190
|
+
StatusUpdateInterval?: StatusUpdateInterval | undefined;
|
|
6191
6191
|
/**
|
|
6192
6192
|
* A job template can be of two types: system or custom. System or built-in job templates can't be modified or deleted by the user.
|
|
6193
6193
|
* @public
|
|
6194
6194
|
*/
|
|
6195
|
-
Type?: Type;
|
|
6195
|
+
Type?: Type | undefined;
|
|
6196
6196
|
}
|
|
6197
6197
|
/**
|
|
6198
6198
|
* Settings for preset
|
|
@@ -6203,22 +6203,22 @@ export interface PresetSettings {
|
|
|
6203
6203
|
* Contains groups of audio encoding settings organized by audio codec. Include one instance of per output. Can contain multiple groups of encoding settings.
|
|
6204
6204
|
* @public
|
|
6205
6205
|
*/
|
|
6206
|
-
AudioDescriptions?: AudioDescription[];
|
|
6206
|
+
AudioDescriptions?: AudioDescription[] | undefined;
|
|
6207
6207
|
/**
|
|
6208
6208
|
* This object holds groups of settings related to captions for one output. For each output that has captions, include one instance of CaptionDescriptions.
|
|
6209
6209
|
* @public
|
|
6210
6210
|
*/
|
|
6211
|
-
CaptionDescriptions?: CaptionDescriptionPreset[];
|
|
6211
|
+
CaptionDescriptions?: CaptionDescriptionPreset[] | undefined;
|
|
6212
6212
|
/**
|
|
6213
6213
|
* Container specific settings.
|
|
6214
6214
|
* @public
|
|
6215
6215
|
*/
|
|
6216
|
-
ContainerSettings?: ContainerSettings;
|
|
6216
|
+
ContainerSettings?: ContainerSettings | undefined;
|
|
6217
6217
|
/**
|
|
6218
6218
|
* VideoDescription contains a group of video encoding settings. The specific video settings depend on the video codec that you choose for the property codec. Include one instance of VideoDescription per output.
|
|
6219
6219
|
* @public
|
|
6220
6220
|
*/
|
|
6221
|
-
VideoDescription?: VideoDescription;
|
|
6221
|
+
VideoDescription?: VideoDescription | undefined;
|
|
6222
6222
|
}
|
|
6223
6223
|
/**
|
|
6224
6224
|
* A preset is a collection of preconfigured media conversion settings that you want MediaConvert to apply to the output during the conversion process.
|
|
@@ -6229,27 +6229,27 @@ export interface Preset {
|
|
|
6229
6229
|
* An identifier for this resource that is unique within all of AWS.
|
|
6230
6230
|
* @public
|
|
6231
6231
|
*/
|
|
6232
|
-
Arn?: string;
|
|
6232
|
+
Arn?: string | undefined;
|
|
6233
6233
|
/**
|
|
6234
6234
|
* An optional category you create to organize your presets.
|
|
6235
6235
|
* @public
|
|
6236
6236
|
*/
|
|
6237
|
-
Category?: string;
|
|
6237
|
+
Category?: string | undefined;
|
|
6238
6238
|
/**
|
|
6239
6239
|
* The timestamp in epoch seconds for preset creation.
|
|
6240
6240
|
* @public
|
|
6241
6241
|
*/
|
|
6242
|
-
CreatedAt?: Date;
|
|
6242
|
+
CreatedAt?: Date | undefined;
|
|
6243
6243
|
/**
|
|
6244
6244
|
* An optional description you create for each preset.
|
|
6245
6245
|
* @public
|
|
6246
6246
|
*/
|
|
6247
|
-
Description?: string;
|
|
6247
|
+
Description?: string | undefined;
|
|
6248
6248
|
/**
|
|
6249
6249
|
* The timestamp in epoch seconds when the preset was last updated.
|
|
6250
6250
|
* @public
|
|
6251
6251
|
*/
|
|
6252
|
-
LastUpdated?: Date;
|
|
6252
|
+
LastUpdated?: Date | undefined;
|
|
6253
6253
|
/**
|
|
6254
6254
|
* A name you create for each preset. Each name must be unique within your account.
|
|
6255
6255
|
* @public
|
|
@@ -6264,7 +6264,7 @@ export interface Preset {
|
|
|
6264
6264
|
* A preset can be of two types: system or custom. System or built-in preset can't be modified or deleted by the user.
|
|
6265
6265
|
* @public
|
|
6266
6266
|
*/
|
|
6267
|
-
Type?: Type;
|
|
6267
|
+
Type?: Type | undefined;
|
|
6268
6268
|
}
|
|
6269
6269
|
/**
|
|
6270
6270
|
* @public
|