@aws-sdk/client-mediaconvert 3.377.0 → 3.378.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 +243 -239
- package/dist-types/models/models_1.d.ts +234 -231
- package/package.json +35 -35
|
@@ -61,7 +61,7 @@ export declare const M2tsDataPtsControl: {
|
|
|
61
61
|
export type M2tsDataPtsControl = (typeof M2tsDataPtsControl)[keyof typeof M2tsDataPtsControl];
|
|
62
62
|
/**
|
|
63
63
|
* @public
|
|
64
|
-
* Use these settings to insert a DVB Network Information Table (NIT) in the transport stream of this output.
|
|
64
|
+
* Use these settings to insert a DVB Network Information Table (NIT) in the transport stream of this output.
|
|
65
65
|
*/
|
|
66
66
|
export interface DvbNitSettings {
|
|
67
67
|
/**
|
|
@@ -93,7 +93,7 @@ export declare const OutputSdt: {
|
|
|
93
93
|
export type OutputSdt = (typeof OutputSdt)[keyof typeof OutputSdt];
|
|
94
94
|
/**
|
|
95
95
|
* @public
|
|
96
|
-
* Use these settings to insert a DVB Service Description Table (SDT) in the transport stream of this output.
|
|
96
|
+
* Use these settings to insert a DVB Service Description Table (SDT) in the transport stream of this output.
|
|
97
97
|
*/
|
|
98
98
|
export interface DvbSdtSettings {
|
|
99
99
|
/**
|
|
@@ -115,7 +115,7 @@ export interface DvbSdtSettings {
|
|
|
115
115
|
}
|
|
116
116
|
/**
|
|
117
117
|
* @public
|
|
118
|
-
* Use these settings to insert a DVB Time and Date Table (TDT) in the transport stream of this output.
|
|
118
|
+
* Use these settings to insert a DVB Time and Date Table (TDT) in the transport stream of this output.
|
|
119
119
|
*/
|
|
120
120
|
export interface DvbTdtSettings {
|
|
121
121
|
/**
|
|
@@ -221,7 +221,7 @@ export declare const M2tsRateMode: {
|
|
|
221
221
|
export type M2tsRateMode = (typeof M2tsRateMode)[keyof typeof M2tsRateMode];
|
|
222
222
|
/**
|
|
223
223
|
* @public
|
|
224
|
-
* Settings for SCTE-35 signals from ESAM. 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
|
|
224
|
+
* Settings for SCTE-35 signals from ESAM. 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.
|
|
225
225
|
*/
|
|
226
226
|
export interface M2tsScte35Esam {
|
|
227
227
|
/**
|
|
@@ -271,7 +271,7 @@ export declare const M2tsSegmentationStyle: {
|
|
|
271
271
|
export type M2tsSegmentationStyle = (typeof M2tsSegmentationStyle)[keyof typeof M2tsSegmentationStyle];
|
|
272
272
|
/**
|
|
273
273
|
* @public
|
|
274
|
-
* MPEG-2 TS container settings. These apply to outputs in a File output group when the output's container
|
|
274
|
+
* 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.
|
|
275
275
|
*/
|
|
276
276
|
export interface M2tsSettings {
|
|
277
277
|
/**
|
|
@@ -279,7 +279,7 @@ export interface M2tsSettings {
|
|
|
279
279
|
*/
|
|
280
280
|
AudioBufferModel?: M2tsAudioBufferModel | string;
|
|
281
281
|
/**
|
|
282
|
-
* 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
|
|
282
|
+
* 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.
|
|
283
283
|
*/
|
|
284
284
|
AudioDuration?: M2tsAudioDuration | string;
|
|
285
285
|
/**
|
|
@@ -299,15 +299,15 @@ export interface M2tsSettings {
|
|
|
299
299
|
*/
|
|
300
300
|
BufferModel?: M2tsBufferModel | string;
|
|
301
301
|
/**
|
|
302
|
-
* 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
|
|
302
|
+
* 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.
|
|
303
303
|
*/
|
|
304
304
|
DataPTSControl?: M2tsDataPtsControl | string;
|
|
305
305
|
/**
|
|
306
|
-
* Use these settings to insert a DVB Network Information Table (NIT) in the transport stream of this output.
|
|
306
|
+
* Use these settings to insert a DVB Network Information Table (NIT) in the transport stream of this output.
|
|
307
307
|
*/
|
|
308
308
|
DvbNitSettings?: DvbNitSettings;
|
|
309
309
|
/**
|
|
310
|
-
* Use these settings to insert a DVB Service Description Table (SDT) in the transport stream of this output.
|
|
310
|
+
* Use these settings to insert a DVB Service Description Table (SDT) in the transport stream of this output.
|
|
311
311
|
*/
|
|
312
312
|
DvbSdtSettings?: DvbSdtSettings;
|
|
313
313
|
/**
|
|
@@ -315,7 +315,7 @@ export interface M2tsSettings {
|
|
|
315
315
|
*/
|
|
316
316
|
DvbSubPids?: number[];
|
|
317
317
|
/**
|
|
318
|
-
* Use these settings to insert a DVB Time and Date Table (TDT) in the transport stream of this output.
|
|
318
|
+
* Use these settings to insert a DVB Time and Date Table (TDT) in the transport stream of this output.
|
|
319
319
|
*/
|
|
320
320
|
DvbTdtSettings?: DvbTdtSettings;
|
|
321
321
|
/**
|
|
@@ -335,7 +335,7 @@ export interface M2tsSettings {
|
|
|
335
335
|
*/
|
|
336
336
|
EsRateInPes?: M2tsEsRateInPes | string;
|
|
337
337
|
/**
|
|
338
|
-
* Keep the default value
|
|
338
|
+
* 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.
|
|
339
339
|
*/
|
|
340
340
|
ForceTsVideoEbpOrder?: M2tsForceTsVideoEbpOrder | string;
|
|
341
341
|
/**
|
|
@@ -371,7 +371,7 @@ export interface M2tsSettings {
|
|
|
371
371
|
*/
|
|
372
372
|
PcrControl?: M2tsPcrControl | string;
|
|
373
373
|
/**
|
|
374
|
-
* 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
|
|
374
|
+
* 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.
|
|
375
375
|
*/
|
|
376
376
|
PcrPid?: number;
|
|
377
377
|
/**
|
|
@@ -387,7 +387,7 @@ export interface M2tsSettings {
|
|
|
387
387
|
*/
|
|
388
388
|
PrivateMetadataPid?: number;
|
|
389
389
|
/**
|
|
390
|
-
* Use Program number
|
|
390
|
+
* 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.
|
|
391
391
|
*/
|
|
392
392
|
ProgramNumber?: number;
|
|
393
393
|
/**
|
|
@@ -395,7 +395,7 @@ export interface M2tsSettings {
|
|
|
395
395
|
*/
|
|
396
396
|
RateMode?: M2tsRateMode | string;
|
|
397
397
|
/**
|
|
398
|
-
* 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
|
|
398
|
+
* 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.
|
|
399
399
|
*/
|
|
400
400
|
Scte35Esam?: M2tsScte35Esam;
|
|
401
401
|
/**
|
|
@@ -403,7 +403,7 @@ export interface M2tsSettings {
|
|
|
403
403
|
*/
|
|
404
404
|
Scte35Pid?: number;
|
|
405
405
|
/**
|
|
406
|
-
* For SCTE-35 markers from your input-- Choose Passthrough
|
|
406
|
+
* 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).
|
|
407
407
|
*/
|
|
408
408
|
Scte35Source?: M2tsScte35Source | string;
|
|
409
409
|
/**
|
|
@@ -509,7 +509,7 @@ export type TimedMetadata = (typeof TimedMetadata)[keyof typeof TimedMetadata];
|
|
|
509
509
|
*/
|
|
510
510
|
export interface M3u8Settings {
|
|
511
511
|
/**
|
|
512
|
-
* 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
|
|
512
|
+
* 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.
|
|
513
513
|
*/
|
|
514
514
|
AudioDuration?: M3u8AudioDuration | string;
|
|
515
515
|
/**
|
|
@@ -521,7 +521,7 @@ export interface M3u8Settings {
|
|
|
521
521
|
*/
|
|
522
522
|
AudioPids?: number[];
|
|
523
523
|
/**
|
|
524
|
-
* 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
|
|
524
|
+
* 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.
|
|
525
525
|
*/
|
|
526
526
|
DataPTSControl?: M3u8DataPtsControl | string;
|
|
527
527
|
/**
|
|
@@ -565,11 +565,11 @@ export interface M3u8Settings {
|
|
|
565
565
|
*/
|
|
566
566
|
Scte35Pid?: number;
|
|
567
567
|
/**
|
|
568
|
-
* For SCTE-35 markers from your input-- Choose Passthrough
|
|
568
|
+
* 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.
|
|
569
569
|
*/
|
|
570
570
|
Scte35Source?: M3u8Scte35Source | string;
|
|
571
571
|
/**
|
|
572
|
-
* Set ID3 metadata
|
|
572
|
+
* 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.
|
|
573
573
|
*/
|
|
574
574
|
TimedMetadata?: TimedMetadata | string;
|
|
575
575
|
/**
|
|
@@ -713,7 +713,7 @@ export type Mp4MoovPlacement = (typeof Mp4MoovPlacement)[keyof typeof Mp4MoovPla
|
|
|
713
713
|
*/
|
|
714
714
|
export interface Mp4Settings {
|
|
715
715
|
/**
|
|
716
|
-
* 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
|
|
716
|
+
* 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.
|
|
717
717
|
*/
|
|
718
718
|
AudioDuration?: CmfcAudioDuration | string;
|
|
719
719
|
/**
|
|
@@ -721,7 +721,7 @@ export interface Mp4Settings {
|
|
|
721
721
|
*/
|
|
722
722
|
CslgAtom?: Mp4CslgAtom | string;
|
|
723
723
|
/**
|
|
724
|
-
* 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
|
|
724
|
+
* 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.
|
|
725
725
|
*/
|
|
726
726
|
CttsVersion?: number;
|
|
727
727
|
/**
|
|
@@ -851,15 +851,15 @@ export type MpdTimedMetadataBoxVersion = (typeof MpdTimedMetadataBoxVersion)[key
|
|
|
851
851
|
*/
|
|
852
852
|
export interface MpdSettings {
|
|
853
853
|
/**
|
|
854
|
-
* Optional. Choose Include
|
|
854
|
+
* 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"/>
|
|
855
855
|
*/
|
|
856
856
|
AccessibilityCaptionHints?: MpdAccessibilityCaptionHints | string;
|
|
857
857
|
/**
|
|
858
|
-
* 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
|
|
858
|
+
* 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.
|
|
859
859
|
*/
|
|
860
860
|
AudioDuration?: MpdAudioDuration | string;
|
|
861
861
|
/**
|
|
862
|
-
* 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
|
|
862
|
+
* 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.
|
|
863
863
|
*/
|
|
864
864
|
CaptionContainerType?: MpdCaptionContainerType | string;
|
|
865
865
|
/**
|
|
@@ -867,34 +867,34 @@ export interface MpdSettings {
|
|
|
867
867
|
*/
|
|
868
868
|
KlvMetadata?: MpdKlvMetadata | string;
|
|
869
869
|
/**
|
|
870
|
-
* 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
|
|
870
|
+
* 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.
|
|
871
871
|
*/
|
|
872
872
|
ManifestMetadataSignaling?: MpdManifestMetadataSignaling | string;
|
|
873
873
|
/**
|
|
874
|
-
* 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
|
|
874
|
+
* 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.
|
|
875
875
|
*/
|
|
876
876
|
Scte35Esam?: MpdScte35Esam | string;
|
|
877
877
|
/**
|
|
878
|
-
* Ignore this setting unless you have SCTE-35 markers in your input video file. Choose Passthrough
|
|
878
|
+
* 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.
|
|
879
879
|
*/
|
|
880
880
|
Scte35Source?: MpdScte35Source | string;
|
|
881
881
|
/**
|
|
882
|
-
* To include ID3 metadata in this output: Set ID3 metadata
|
|
882
|
+
* 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.
|
|
883
883
|
*/
|
|
884
884
|
TimedMetadata?: MpdTimedMetadata | string;
|
|
885
885
|
/**
|
|
886
886
|
* Specify the event message box (eMSG) version for ID3 timed metadata in your output.
|
|
887
887
|
* For more information, see ISO/IEC 23009-1:2022 section 5.10.3.3.3 Syntax.
|
|
888
888
|
* Leave blank to use the default value Version 0.
|
|
889
|
-
* When you specify Version 1, you must also set ID3 metadata
|
|
889
|
+
* When you specify Version 1, you must also set ID3 metadata to Passthrough.
|
|
890
890
|
*/
|
|
891
891
|
TimedMetadataBoxVersion?: MpdTimedMetadataBoxVersion | string;
|
|
892
892
|
/**
|
|
893
|
-
* Specify the event message box (eMSG) scheme ID URI
|
|
893
|
+
* 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.
|
|
894
894
|
*/
|
|
895
895
|
TimedMetadataSchemeIdUri?: string;
|
|
896
896
|
/**
|
|
897
|
-
* 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
|
|
897
|
+
* 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.
|
|
898
898
|
*/
|
|
899
899
|
TimedMetadataValue?: string;
|
|
900
900
|
}
|
|
@@ -943,11 +943,11 @@ export type MxfXavcDurationMode = (typeof MxfXavcDurationMode)[keyof typeof MxfX
|
|
|
943
943
|
*/
|
|
944
944
|
export interface MxfXavcProfileSettings {
|
|
945
945
|
/**
|
|
946
|
-
* To create an output that complies with the XAVC file format guidelines for interoperability, keep the default value, Drop frames for compliance
|
|
946
|
+
* 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.
|
|
947
947
|
*/
|
|
948
948
|
DurationMode?: MxfXavcDurationMode | string;
|
|
949
949
|
/**
|
|
950
|
-
* Specify a value for this setting only for outputs that you set up with one of these two XAVC profiles: XAVC HD Intra CBG
|
|
950
|
+
* 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.
|
|
951
951
|
*/
|
|
952
952
|
MaxAncDataSize?: number;
|
|
953
953
|
}
|
|
@@ -957,7 +957,7 @@ export interface MxfXavcProfileSettings {
|
|
|
957
957
|
*/
|
|
958
958
|
export interface MxfSettings {
|
|
959
959
|
/**
|
|
960
|
-
* 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
|
|
960
|
+
* 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.
|
|
961
961
|
*/
|
|
962
962
|
AfdSignaling?: MxfAfdSignaling | string;
|
|
963
963
|
/**
|
|
@@ -987,7 +987,7 @@ export interface ContainerSettings {
|
|
|
987
987
|
*/
|
|
988
988
|
F4vSettings?: F4vSettings;
|
|
989
989
|
/**
|
|
990
|
-
* MPEG-2 TS container settings. These apply to outputs in a File output group when the output's container
|
|
990
|
+
* 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.
|
|
991
991
|
*/
|
|
992
992
|
M2tsSettings?: M2tsSettings;
|
|
993
993
|
/**
|
|
@@ -1071,7 +1071,7 @@ export interface HlsSettings {
|
|
|
1071
1071
|
*/
|
|
1072
1072
|
AudioGroupId?: string;
|
|
1073
1073
|
/**
|
|
1074
|
-
* 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
|
|
1074
|
+
* 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.
|
|
1075
1075
|
*/
|
|
1076
1076
|
AudioOnlyContainer?: HlsAudioOnlyContainer | string;
|
|
1077
1077
|
/**
|
|
@@ -1083,11 +1083,11 @@ export interface HlsSettings {
|
|
|
1083
1083
|
*/
|
|
1084
1084
|
AudioTrackType?: HlsAudioTrackType | string;
|
|
1085
1085
|
/**
|
|
1086
|
-
* Specify whether to flag this audio track as descriptive video service (DVS) in your HLS parent manifest. When you choose Flag
|
|
1086
|
+
* 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.
|
|
1087
1087
|
*/
|
|
1088
1088
|
DescriptiveVideoServiceFlag?: HlsDescriptiveVideoServiceFlag | string;
|
|
1089
1089
|
/**
|
|
1090
|
-
* Choose Include
|
|
1090
|
+
* 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.
|
|
1091
1091
|
*/
|
|
1092
1092
|
IFrameOnlyManifest?: HlsIFrameOnlyManifest | string;
|
|
1093
1093
|
/**
|
|
@@ -1185,11 +1185,11 @@ export declare const Av1FramerateConversionAlgorithm: {
|
|
|
1185
1185
|
export type Av1FramerateConversionAlgorithm = (typeof Av1FramerateConversionAlgorithm)[keyof typeof Av1FramerateConversionAlgorithm];
|
|
1186
1186
|
/**
|
|
1187
1187
|
* @public
|
|
1188
|
-
* Settings for quality-defined variable bitrate encoding with the AV1 codec. Use these settings only when you set QVBR for Rate control mode
|
|
1188
|
+
* Settings for quality-defined variable bitrate encoding with the AV1 codec. Use these settings only when you set QVBR for Rate control mode.
|
|
1189
1189
|
*/
|
|
1190
1190
|
export interface Av1QvbrSettings {
|
|
1191
1191
|
/**
|
|
1192
|
-
* Use this setting only when you set Rate control mode
|
|
1192
|
+
* 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.
|
|
1193
1193
|
*/
|
|
1194
1194
|
QvbrQualityLevel?: number;
|
|
1195
1195
|
/**
|
|
@@ -1226,15 +1226,15 @@ export type Av1SpatialAdaptiveQuantization = (typeof Av1SpatialAdaptiveQuantizat
|
|
|
1226
1226
|
*/
|
|
1227
1227
|
export interface Av1Settings {
|
|
1228
1228
|
/**
|
|
1229
|
-
* Specify the strength of any adaptive quantization filters that you enable. The value that you choose here applies to Spatial adaptive quantization
|
|
1229
|
+
* Specify the strength of any adaptive quantization filters that you enable. The value that you choose here applies to Spatial adaptive quantization.
|
|
1230
1230
|
*/
|
|
1231
1231
|
AdaptiveQuantization?: Av1AdaptiveQuantization | string;
|
|
1232
1232
|
/**
|
|
1233
|
-
* Specify the Bit depth
|
|
1233
|
+
* Specify the Bit depth. You can choose 8-bit or 10-bit.
|
|
1234
1234
|
*/
|
|
1235
1235
|
BitDepth?: Av1BitDepth | string;
|
|
1236
1236
|
/**
|
|
1237
|
-
*
|
|
1237
|
+
* 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.
|
|
1238
1238
|
*/
|
|
1239
1239
|
FramerateControl?: Av1FramerateControl | string;
|
|
1240
1240
|
/**
|
|
@@ -1262,7 +1262,7 @@ export interface Av1Settings {
|
|
|
1262
1262
|
*/
|
|
1263
1263
|
NumberBFramesBetweenReferenceFrames?: number;
|
|
1264
1264
|
/**
|
|
1265
|
-
* Settings for quality-defined variable bitrate encoding with the H.265 codec. Use these settings only when you set QVBR for Rate control mode
|
|
1265
|
+
* Settings for quality-defined variable bitrate encoding with the H.265 codec. Use these settings only when you set QVBR for Rate control mode.
|
|
1266
1266
|
*/
|
|
1267
1267
|
QvbrSettings?: Av1QvbrSettings;
|
|
1268
1268
|
/**
|
|
@@ -1274,7 +1274,7 @@ export interface Av1Settings {
|
|
|
1274
1274
|
*/
|
|
1275
1275
|
Slices?: number;
|
|
1276
1276
|
/**
|
|
1277
|
-
* Keep the default value, Enabled
|
|
1277
|
+
* 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.
|
|
1278
1278
|
*/
|
|
1279
1279
|
SpatialAdaptiveQuantization?: Av1SpatialAdaptiveQuantization | string;
|
|
1280
1280
|
}
|
|
@@ -1306,11 +1306,11 @@ export declare const AvcIntraUhdQualityTuningLevel: {
|
|
|
1306
1306
|
export type AvcIntraUhdQualityTuningLevel = (typeof AvcIntraUhdQualityTuningLevel)[keyof typeof AvcIntraUhdQualityTuningLevel];
|
|
1307
1307
|
/**
|
|
1308
1308
|
* @public
|
|
1309
|
-
* Optional when you set AVC-Intra class
|
|
1309
|
+
* 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.
|
|
1310
1310
|
*/
|
|
1311
1311
|
export interface AvcIntraUhdSettings {
|
|
1312
1312
|
/**
|
|
1313
|
-
* Optional. Use Quality tuning level
|
|
1313
|
+
* 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.
|
|
1314
1314
|
*/
|
|
1315
1315
|
QualityTuningLevel?: AvcIntraUhdQualityTuningLevel | string;
|
|
1316
1316
|
}
|
|
@@ -1400,11 +1400,11 @@ export interface AvcIntraSettings {
|
|
|
1400
1400
|
*/
|
|
1401
1401
|
AvcIntraClass?: AvcIntraClass | string;
|
|
1402
1402
|
/**
|
|
1403
|
-
* Optional when you set AVC-Intra class
|
|
1403
|
+
* 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.
|
|
1404
1404
|
*/
|
|
1405
1405
|
AvcIntraUhdSettings?: AvcIntraUhdSettings;
|
|
1406
1406
|
/**
|
|
1407
|
-
* 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.
|
|
1407
|
+
* 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.
|
|
1408
1408
|
*/
|
|
1409
1409
|
FramerateControl?: AvcIntraFramerateControl | string;
|
|
1410
1410
|
/**
|
|
@@ -1420,19 +1420,19 @@ export interface AvcIntraSettings {
|
|
|
1420
1420
|
*/
|
|
1421
1421
|
FramerateNumerator?: number;
|
|
1422
1422
|
/**
|
|
1423
|
-
* Choose the scan line type for the output. Keep the default value, Progressive
|
|
1423
|
+
* 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.
|
|
1424
1424
|
*/
|
|
1425
1425
|
InterlaceMode?: AvcIntraInterlaceMode | string;
|
|
1426
1426
|
/**
|
|
1427
|
-
* Use this setting for interlaced outputs, when your output frame rate is half of your input frame rate. In this situation, choose Optimized interlacing
|
|
1427
|
+
* 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.
|
|
1428
1428
|
*/
|
|
1429
1429
|
ScanTypeConversionMode?: AvcIntraScanTypeConversionMode | string;
|
|
1430
1430
|
/**
|
|
1431
|
-
* 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.
|
|
1431
|
+
* 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.
|
|
1432
1432
|
*/
|
|
1433
1433
|
SlowPal?: AvcIntraSlowPal | string;
|
|
1434
1434
|
/**
|
|
1435
|
-
* 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
|
|
1435
|
+
* 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.
|
|
1436
1436
|
*/
|
|
1437
1437
|
Telecine?: AvcIntraTelecine | string;
|
|
1438
1438
|
}
|
|
@@ -1460,7 +1460,7 @@ export declare const VideoCodec: {
|
|
|
1460
1460
|
export type VideoCodec = (typeof VideoCodec)[keyof typeof VideoCodec];
|
|
1461
1461
|
/**
|
|
1462
1462
|
* @public
|
|
1463
|
-
* Required when you set
|
|
1463
|
+
* Required when you set Codec to the value FRAME_CAPTURE.
|
|
1464
1464
|
*/
|
|
1465
1465
|
export interface FrameCaptureSettings {
|
|
1466
1466
|
/**
|
|
@@ -1724,7 +1724,7 @@ export declare const H264QualityTuningLevel: {
|
|
|
1724
1724
|
export type H264QualityTuningLevel = (typeof H264QualityTuningLevel)[keyof typeof H264QualityTuningLevel];
|
|
1725
1725
|
/**
|
|
1726
1726
|
* @public
|
|
1727
|
-
* Settings for quality-defined variable bitrate encoding with the H.264 codec. Use these settings only when you set QVBR for Rate control mode
|
|
1727
|
+
* Settings for quality-defined variable bitrate encoding with the H.264 codec. Use these settings only when you set QVBR for Rate control mode.
|
|
1728
1728
|
*/
|
|
1729
1729
|
export interface H264QvbrSettings {
|
|
1730
1730
|
/**
|
|
@@ -1732,7 +1732,7 @@ export interface H264QvbrSettings {
|
|
|
1732
1732
|
*/
|
|
1733
1733
|
MaxAverageBitrate?: number;
|
|
1734
1734
|
/**
|
|
1735
|
-
* Use this setting only when you set Rate control mode
|
|
1735
|
+
* 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.
|
|
1736
1736
|
*/
|
|
1737
1737
|
QvbrQualityLevel?: number;
|
|
1738
1738
|
/**
|
|
@@ -1865,11 +1865,11 @@ export declare const H264UnregisteredSeiTimecode: {
|
|
|
1865
1865
|
export type H264UnregisteredSeiTimecode = (typeof H264UnregisteredSeiTimecode)[keyof typeof H264UnregisteredSeiTimecode];
|
|
1866
1866
|
/**
|
|
1867
1867
|
* @public
|
|
1868
|
-
* Required when you set
|
|
1868
|
+
* Required when you set Codec to the value H_264.
|
|
1869
1869
|
*/
|
|
1870
1870
|
export interface H264Settings {
|
|
1871
1871
|
/**
|
|
1872
|
-
* Keep the default value, Auto
|
|
1872
|
+
* 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.
|
|
1873
1873
|
*/
|
|
1874
1874
|
AdaptiveQuantization?: H264AdaptiveQuantization | string;
|
|
1875
1875
|
/**
|
|
@@ -1881,7 +1881,7 @@ export interface H264Settings {
|
|
|
1881
1881
|
*/
|
|
1882
1882
|
Bitrate?: number;
|
|
1883
1883
|
/**
|
|
1884
|
-
* Specify an H.264 level that is consistent with your output video settings. If you aren't sure what level to specify, choose Auto
|
|
1884
|
+
* Specify an H.264 level that is consistent with your output video settings. If you aren't sure what level to specify, choose Auto.
|
|
1885
1885
|
*/
|
|
1886
1886
|
CodecLevel?: H264CodecLevel | string;
|
|
1887
1887
|
/**
|
|
@@ -1897,15 +1897,15 @@ export interface H264Settings {
|
|
|
1897
1897
|
*/
|
|
1898
1898
|
EntropyEncoding?: H264EntropyEncoding | string;
|
|
1899
1899
|
/**
|
|
1900
|
-
* 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
|
|
1900
|
+
* 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.
|
|
1901
1901
|
*/
|
|
1902
1902
|
FieldEncoding?: H264FieldEncoding | string;
|
|
1903
1903
|
/**
|
|
1904
|
-
* 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
|
|
1904
|
+
* 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.
|
|
1905
1905
|
*/
|
|
1906
1906
|
FlickerAdaptiveQuantization?: H264FlickerAdaptiveQuantization | string;
|
|
1907
1907
|
/**
|
|
1908
|
-
* 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.
|
|
1908
|
+
* 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.
|
|
1909
1909
|
*/
|
|
1910
1910
|
FramerateControl?: H264FramerateControl | string;
|
|
1911
1911
|
/**
|
|
@@ -1925,15 +1925,15 @@ export interface H264Settings {
|
|
|
1925
1925
|
*/
|
|
1926
1926
|
GopBReference?: H264GopBReference | string;
|
|
1927
1927
|
/**
|
|
1928
|
-
* 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.
|
|
1928
|
+
* 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.
|
|
1929
1929
|
*/
|
|
1930
1930
|
GopClosedCadence?: number;
|
|
1931
1931
|
/**
|
|
1932
|
-
* Use this setting only when you set GOP mode control
|
|
1932
|
+
* 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.
|
|
1933
1933
|
*/
|
|
1934
1934
|
GopSize?: number;
|
|
1935
1935
|
/**
|
|
1936
|
-
* 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
|
|
1936
|
+
* 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.
|
|
1937
1937
|
*/
|
|
1938
1938
|
GopSizeUnits?: H264GopSizeUnits | string;
|
|
1939
1939
|
/**
|
|
@@ -1949,7 +1949,7 @@ export interface H264Settings {
|
|
|
1949
1949
|
*/
|
|
1950
1950
|
HrdBufferSize?: number;
|
|
1951
1951
|
/**
|
|
1952
|
-
* Choose the scan line type for the output. Keep the default value, Progressive
|
|
1952
|
+
* 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.
|
|
1953
1953
|
*/
|
|
1954
1954
|
InterlaceMode?: H264InterlaceMode | string;
|
|
1955
1955
|
/**
|
|
@@ -1957,7 +1957,7 @@ export interface H264Settings {
|
|
|
1957
1957
|
*/
|
|
1958
1958
|
MaxBitrate?: number;
|
|
1959
1959
|
/**
|
|
1960
|
-
* Use this setting only when you also enable Scene change detection
|
|
1960
|
+
* Use this setting only when you also enable Scene change detection. This setting determines how the encoder manages the spacing between I-frames that it inserts as part of the I-frame cadence and the I-frames that it inserts for Scene change detection. 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. When you explicitly specify a value for this setting, the encoder determines whether to skip a cadence-driven I-frame by the value you set. For example, if you set Min I interval to 5 and a cadence-driven I-frame would fall within 5 frames of a scene-change I-frame, then the encoder skips the cadence-driven I-frame. In this way, one GOP is shrunk slightly and one GOP is stretched slightly. When the cadence-driven I-frames are farther from the scene-change I-frame than the value you set, then the encoder leaves all I-frames in place and the GOPs surrounding the scene change are smaller than the usual cadence GOPs.
|
|
1961
1961
|
*/
|
|
1962
1962
|
MinIInterval?: number;
|
|
1963
1963
|
/**
|
|
@@ -1969,15 +1969,15 @@ export interface H264Settings {
|
|
|
1969
1969
|
*/
|
|
1970
1970
|
NumberReferenceFrames?: number;
|
|
1971
1971
|
/**
|
|
1972
|
-
* Optional. Specify how the service determines the pixel aspect ratio (PAR) for this output. The default behavior, Follow source
|
|
1972
|
+
* 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.
|
|
1973
1973
|
*/
|
|
1974
1974
|
ParControl?: H264ParControl | string;
|
|
1975
1975
|
/**
|
|
1976
|
-
* Required when you set Pixel aspect ratio
|
|
1976
|
+
* 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.
|
|
1977
1977
|
*/
|
|
1978
1978
|
ParDenominator?: number;
|
|
1979
1979
|
/**
|
|
1980
|
-
* Required when you set Pixel aspect ratio
|
|
1980
|
+
* 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.
|
|
1981
1981
|
*/
|
|
1982
1982
|
ParNumerator?: number;
|
|
1983
1983
|
/**
|
|
@@ -1985,7 +1985,7 @@ export interface H264Settings {
|
|
|
1985
1985
|
*/
|
|
1986
1986
|
QualityTuningLevel?: H264QualityTuningLevel | string;
|
|
1987
1987
|
/**
|
|
1988
|
-
* Settings for quality-defined variable bitrate encoding with the H.265 codec. Use these settings only when you set QVBR for Rate control mode
|
|
1988
|
+
* Settings for quality-defined variable bitrate encoding with the H.265 codec. Use these settings only when you set QVBR for Rate control mode.
|
|
1989
1989
|
*/
|
|
1990
1990
|
QvbrSettings?: H264QvbrSettings;
|
|
1991
1991
|
/**
|
|
@@ -1997,11 +1997,11 @@ export interface H264Settings {
|
|
|
1997
1997
|
*/
|
|
1998
1998
|
RepeatPps?: H264RepeatPps | string;
|
|
1999
1999
|
/**
|
|
2000
|
-
* Use this setting for interlaced outputs, when your output frame rate is half of your input frame rate. In this situation, choose Optimized interlacing
|
|
2000
|
+
* 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.
|
|
2001
2001
|
*/
|
|
2002
2002
|
ScanTypeConversionMode?: H264ScanTypeConversionMode | string;
|
|
2003
2003
|
/**
|
|
2004
|
-
* 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
|
|
2004
|
+
* 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.
|
|
2005
2005
|
*/
|
|
2006
2006
|
SceneChangeDetect?: H264SceneChangeDetect | string;
|
|
2007
2007
|
/**
|
|
@@ -2009,15 +2009,15 @@ export interface H264Settings {
|
|
|
2009
2009
|
*/
|
|
2010
2010
|
Slices?: number;
|
|
2011
2011
|
/**
|
|
2012
|
-
* 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.
|
|
2012
|
+
* 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.
|
|
2013
2013
|
*/
|
|
2014
2014
|
SlowPal?: H264SlowPal | string;
|
|
2015
2015
|
/**
|
|
2016
|
-
* 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
|
|
2016
|
+
* 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.
|
|
2017
2017
|
*/
|
|
2018
2018
|
Softness?: number;
|
|
2019
2019
|
/**
|
|
2020
|
-
* Only use this setting when you change the default value, Auto
|
|
2020
|
+
* 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.
|
|
2021
2021
|
*/
|
|
2022
2022
|
SpatialAdaptiveQuantization?: H264SpatialAdaptiveQuantization | string;
|
|
2023
2023
|
/**
|
|
@@ -2025,11 +2025,11 @@ export interface H264Settings {
|
|
|
2025
2025
|
*/
|
|
2026
2026
|
Syntax?: H264Syntax | string;
|
|
2027
2027
|
/**
|
|
2028
|
-
* 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
|
|
2028
|
+
* 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.
|
|
2029
2029
|
*/
|
|
2030
2030
|
Telecine?: H264Telecine | string;
|
|
2031
2031
|
/**
|
|
2032
|
-
* 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
|
|
2032
|
+
* 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.
|
|
2033
2033
|
*/
|
|
2034
2034
|
TemporalAdaptiveQuantization?: H264TemporalAdaptiveQuantization | string;
|
|
2035
2035
|
/**
|
|
@@ -2224,7 +2224,7 @@ export declare const H265QualityTuningLevel: {
|
|
|
2224
2224
|
export type H265QualityTuningLevel = (typeof H265QualityTuningLevel)[keyof typeof H265QualityTuningLevel];
|
|
2225
2225
|
/**
|
|
2226
2226
|
* @public
|
|
2227
|
-
* Settings for quality-defined variable bitrate encoding with the H.265 codec. Use these settings only when you set QVBR for Rate control mode
|
|
2227
|
+
* Settings for quality-defined variable bitrate encoding with the H.265 codec. Use these settings only when you set QVBR for Rate control mode.
|
|
2228
2228
|
*/
|
|
2229
2229
|
export interface H265QvbrSettings {
|
|
2230
2230
|
/**
|
|
@@ -2232,7 +2232,7 @@ export interface H265QvbrSettings {
|
|
|
2232
2232
|
*/
|
|
2233
2233
|
MaxAverageBitrate?: number;
|
|
2234
2234
|
/**
|
|
2235
|
-
* Use this setting only when you set Rate control mode
|
|
2235
|
+
* 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.
|
|
2236
2236
|
*/
|
|
2237
2237
|
QvbrQualityLevel?: number;
|
|
2238
2238
|
/**
|
|
@@ -2394,7 +2394,7 @@ export type H265WriteMp4PackagingType = (typeof H265WriteMp4PackagingType)[keyof
|
|
|
2394
2394
|
*/
|
|
2395
2395
|
export interface H265Settings {
|
|
2396
2396
|
/**
|
|
2397
|
-
* When you set Adaptive Quantization
|
|
2397
|
+
* 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.
|
|
2398
2398
|
*/
|
|
2399
2399
|
AdaptiveQuantization?: H265AdaptiveQuantization | string;
|
|
2400
2400
|
/**
|
|
@@ -2422,11 +2422,11 @@ export interface H265Settings {
|
|
|
2422
2422
|
*/
|
|
2423
2423
|
DynamicSubGop?: H265DynamicSubGop | string;
|
|
2424
2424
|
/**
|
|
2425
|
-
* 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
|
|
2425
|
+
* 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.
|
|
2426
2426
|
*/
|
|
2427
2427
|
FlickerAdaptiveQuantization?: H265FlickerAdaptiveQuantization | string;
|
|
2428
2428
|
/**
|
|
2429
|
-
*
|
|
2429
|
+
* 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.
|
|
2430
2430
|
*/
|
|
2431
2431
|
FramerateControl?: H265FramerateControl | string;
|
|
2432
2432
|
/**
|
|
@@ -2446,15 +2446,15 @@ export interface H265Settings {
|
|
|
2446
2446
|
*/
|
|
2447
2447
|
GopBReference?: H265GopBReference | string;
|
|
2448
2448
|
/**
|
|
2449
|
-
* 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,
|
|
2449
|
+
* 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.
|
|
2450
2450
|
*/
|
|
2451
2451
|
GopClosedCadence?: number;
|
|
2452
2452
|
/**
|
|
2453
|
-
* Use this setting only when you set GOP mode control
|
|
2453
|
+
* 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.
|
|
2454
2454
|
*/
|
|
2455
2455
|
GopSize?: number;
|
|
2456
2456
|
/**
|
|
2457
|
-
* 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
|
|
2457
|
+
* 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.
|
|
2458
2458
|
*/
|
|
2459
2459
|
GopSizeUnits?: H265GopSizeUnits | string;
|
|
2460
2460
|
/**
|
|
@@ -2470,7 +2470,7 @@ export interface H265Settings {
|
|
|
2470
2470
|
*/
|
|
2471
2471
|
HrdBufferSize?: number;
|
|
2472
2472
|
/**
|
|
2473
|
-
* Choose the scan line type for the output. Keep the default value, Progressive
|
|
2473
|
+
* 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.
|
|
2474
2474
|
*/
|
|
2475
2475
|
InterlaceMode?: H265InterlaceMode | string;
|
|
2476
2476
|
/**
|
|
@@ -2478,7 +2478,7 @@ export interface H265Settings {
|
|
|
2478
2478
|
*/
|
|
2479
2479
|
MaxBitrate?: number;
|
|
2480
2480
|
/**
|
|
2481
|
-
* Use this setting only when you also enable Scene change detection
|
|
2481
|
+
* Use this setting only when you also enable Scene change detection. This setting determines how the encoder manages the spacing between I-frames that it inserts as part of the I-frame cadence and the I-frames that it inserts for Scene change detection. 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. When you explicitly specify a value for this setting, the encoder determines whether to skip a cadence-driven I-frame by the value you set. For example, if you set Min I interval to 5 and a cadence-driven I-frame would fall within 5 frames of a scene-change I-frame, then the encoder skips the cadence-driven I-frame. In this way, one GOP is shrunk slightly and one GOP is stretched slightly. When the cadence-driven I-frames are farther from the scene-change I-frame than the value you set, then the encoder leaves all I-frames in place and the GOPs surrounding the scene change are smaller than the usual cadence GOPs.
|
|
2482
2482
|
*/
|
|
2483
2483
|
MinIInterval?: number;
|
|
2484
2484
|
/**
|
|
@@ -2490,23 +2490,23 @@ export interface H265Settings {
|
|
|
2490
2490
|
*/
|
|
2491
2491
|
NumberReferenceFrames?: number;
|
|
2492
2492
|
/**
|
|
2493
|
-
* Optional. Specify how the service determines the pixel aspect ratio (PAR) for this output. The default behavior, Follow source
|
|
2493
|
+
* 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.
|
|
2494
2494
|
*/
|
|
2495
2495
|
ParControl?: H265ParControl | string;
|
|
2496
2496
|
/**
|
|
2497
|
-
* Required when you set Pixel aspect ratio
|
|
2497
|
+
* 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.
|
|
2498
2498
|
*/
|
|
2499
2499
|
ParDenominator?: number;
|
|
2500
2500
|
/**
|
|
2501
|
-
* Required when you set Pixel aspect ratio
|
|
2501
|
+
* 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.
|
|
2502
2502
|
*/
|
|
2503
2503
|
ParNumerator?: number;
|
|
2504
2504
|
/**
|
|
2505
|
-
* Optional. Use Quality tuning level
|
|
2505
|
+
* 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.
|
|
2506
2506
|
*/
|
|
2507
2507
|
QualityTuningLevel?: H265QualityTuningLevel | string;
|
|
2508
2508
|
/**
|
|
2509
|
-
* Settings for quality-defined variable bitrate encoding with the H.265 codec. Use these settings only when you set QVBR for Rate control mode
|
|
2509
|
+
* Settings for quality-defined variable bitrate encoding with the H.265 codec. Use these settings only when you set QVBR for Rate control mode.
|
|
2510
2510
|
*/
|
|
2511
2511
|
QvbrSettings?: H265QvbrSettings;
|
|
2512
2512
|
/**
|
|
@@ -2518,11 +2518,11 @@ export interface H265Settings {
|
|
|
2518
2518
|
*/
|
|
2519
2519
|
SampleAdaptiveOffsetFilterMode?: H265SampleAdaptiveOffsetFilterMode | string;
|
|
2520
2520
|
/**
|
|
2521
|
-
* Use this setting for interlaced outputs, when your output frame rate is half of your input frame rate. In this situation, choose Optimized interlacing
|
|
2521
|
+
* 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.
|
|
2522
2522
|
*/
|
|
2523
2523
|
ScanTypeConversionMode?: H265ScanTypeConversionMode | string;
|
|
2524
2524
|
/**
|
|
2525
|
-
* 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
|
|
2525
|
+
* 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.
|
|
2526
2526
|
*/
|
|
2527
2527
|
SceneChangeDetect?: H265SceneChangeDetect | string;
|
|
2528
2528
|
/**
|
|
@@ -2530,19 +2530,19 @@ export interface H265Settings {
|
|
|
2530
2530
|
*/
|
|
2531
2531
|
Slices?: number;
|
|
2532
2532
|
/**
|
|
2533
|
-
* 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.
|
|
2533
|
+
* 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.
|
|
2534
2534
|
*/
|
|
2535
2535
|
SlowPal?: H265SlowPal | string;
|
|
2536
2536
|
/**
|
|
2537
|
-
* Keep the default value, Enabled
|
|
2537
|
+
* 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.
|
|
2538
2538
|
*/
|
|
2539
2539
|
SpatialAdaptiveQuantization?: H265SpatialAdaptiveQuantization | string;
|
|
2540
2540
|
/**
|
|
2541
|
-
* This field applies only if the Streams > Advanced > Framerate
|
|
2541
|
+
* 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.
|
|
2542
2542
|
*/
|
|
2543
2543
|
Telecine?: H265Telecine | string;
|
|
2544
2544
|
/**
|
|
2545
|
-
* Keep the default value, Enabled
|
|
2545
|
+
* 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.
|
|
2546
2546
|
*/
|
|
2547
2547
|
TemporalAdaptiveQuantization?: H265TemporalAdaptiveQuantization | string;
|
|
2548
2548
|
/**
|
|
@@ -2805,11 +2805,11 @@ export declare const Mpeg2TemporalAdaptiveQuantization: {
|
|
|
2805
2805
|
export type Mpeg2TemporalAdaptiveQuantization = (typeof Mpeg2TemporalAdaptiveQuantization)[keyof typeof Mpeg2TemporalAdaptiveQuantization];
|
|
2806
2806
|
/**
|
|
2807
2807
|
* @public
|
|
2808
|
-
* Required when you set
|
|
2808
|
+
* Required when you set Codec to the value MPEG2.
|
|
2809
2809
|
*/
|
|
2810
2810
|
export interface Mpeg2Settings {
|
|
2811
2811
|
/**
|
|
2812
|
-
* 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
|
|
2812
|
+
* 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.
|
|
2813
2813
|
*/
|
|
2814
2814
|
AdaptiveQuantization?: Mpeg2AdaptiveQuantization | string;
|
|
2815
2815
|
/**
|
|
@@ -2817,19 +2817,19 @@ export interface Mpeg2Settings {
|
|
|
2817
2817
|
*/
|
|
2818
2818
|
Bitrate?: number;
|
|
2819
2819
|
/**
|
|
2820
|
-
* Use Level
|
|
2820
|
+
* Use Level to set the MPEG-2 level for the video output.
|
|
2821
2821
|
*/
|
|
2822
2822
|
CodecLevel?: Mpeg2CodecLevel | string;
|
|
2823
2823
|
/**
|
|
2824
|
-
* Use Profile
|
|
2824
|
+
* Use Profile to set the MPEG-2 profile for the video output.
|
|
2825
2825
|
*/
|
|
2826
2826
|
CodecProfile?: Mpeg2CodecProfile | string;
|
|
2827
2827
|
/**
|
|
2828
|
-
* 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
|
|
2828
|
+
* 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.
|
|
2829
2829
|
*/
|
|
2830
2830
|
DynamicSubGop?: Mpeg2DynamicSubGop | string;
|
|
2831
2831
|
/**
|
|
2832
|
-
* 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.
|
|
2832
|
+
* 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.
|
|
2833
2833
|
*/
|
|
2834
2834
|
FramerateControl?: Mpeg2FramerateControl | string;
|
|
2835
2835
|
/**
|
|
@@ -2849,11 +2849,11 @@ export interface Mpeg2Settings {
|
|
|
2849
2849
|
*/
|
|
2850
2850
|
GopClosedCadence?: number;
|
|
2851
2851
|
/**
|
|
2852
|
-
* 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
|
|
2852
|
+
* 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.
|
|
2853
2853
|
*/
|
|
2854
2854
|
GopSize?: number;
|
|
2855
2855
|
/**
|
|
2856
|
-
* Specify the units for GOP size
|
|
2856
|
+
* Specify the units for GOP size. If you don't specify a value here, by default the encoder measures GOP size in frames.
|
|
2857
2857
|
*/
|
|
2858
2858
|
GopSizeUnits?: Mpeg2GopSizeUnits | string;
|
|
2859
2859
|
/**
|
|
@@ -2869,11 +2869,11 @@ export interface Mpeg2Settings {
|
|
|
2869
2869
|
*/
|
|
2870
2870
|
HrdBufferSize?: number;
|
|
2871
2871
|
/**
|
|
2872
|
-
* Choose the scan line type for the output. Keep the default value, Progressive
|
|
2872
|
+
* 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.
|
|
2873
2873
|
*/
|
|
2874
2874
|
InterlaceMode?: Mpeg2InterlaceMode | string;
|
|
2875
2875
|
/**
|
|
2876
|
-
* Use Intra DC precision
|
|
2876
|
+
* 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.
|
|
2877
2877
|
*/
|
|
2878
2878
|
IntraDcPrecision?: Mpeg2IntraDcPrecision | string;
|
|
2879
2879
|
/**
|
|
@@ -2881,7 +2881,7 @@ export interface Mpeg2Settings {
|
|
|
2881
2881
|
*/
|
|
2882
2882
|
MaxBitrate?: number;
|
|
2883
2883
|
/**
|
|
2884
|
-
* Use this setting only when you also enable Scene change detection
|
|
2884
|
+
* Use this setting only when you also enable Scene change detection. This setting determines how the encoder manages the spacing between I-frames that it inserts as part of the I-frame cadence and the I-frames that it inserts for Scene change detection. When you specify a value for this setting, the encoder determines whether to skip a cadence-driven I-frame by the value you set. For example, if you set Min I interval to 5 and a cadence-driven I-frame would fall within 5 frames of a scene-change I-frame, then the encoder skips the cadence-driven I-frame. In this way, one GOP is shrunk slightly and one GOP is stretched slightly. When the cadence-driven I-frames are farther from the scene-change I-frame than the value you set, then the encoder leaves all I-frames in place and the GOPs surrounding the scene change are smaller than the usual cadence GOPs.
|
|
2885
2885
|
*/
|
|
2886
2886
|
MinIInterval?: number;
|
|
2887
2887
|
/**
|
|
@@ -2889,27 +2889,27 @@ export interface Mpeg2Settings {
|
|
|
2889
2889
|
*/
|
|
2890
2890
|
NumberBFramesBetweenReferenceFrames?: number;
|
|
2891
2891
|
/**
|
|
2892
|
-
* Optional. Specify how the service determines the pixel aspect ratio (PAR) for this output. The default behavior, Follow source
|
|
2892
|
+
* 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.
|
|
2893
2893
|
*/
|
|
2894
2894
|
ParControl?: Mpeg2ParControl | string;
|
|
2895
2895
|
/**
|
|
2896
|
-
* Required when you set Pixel aspect ratio
|
|
2896
|
+
* 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.
|
|
2897
2897
|
*/
|
|
2898
2898
|
ParDenominator?: number;
|
|
2899
2899
|
/**
|
|
2900
|
-
* Required when you set Pixel aspect ratio
|
|
2900
|
+
* 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.
|
|
2901
2901
|
*/
|
|
2902
2902
|
ParNumerator?: number;
|
|
2903
2903
|
/**
|
|
2904
|
-
* Optional. Use Quality tuning level
|
|
2904
|
+
* 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.
|
|
2905
2905
|
*/
|
|
2906
2906
|
QualityTuningLevel?: Mpeg2QualityTuningLevel | string;
|
|
2907
2907
|
/**
|
|
2908
|
-
* Use Rate control mode
|
|
2908
|
+
* Use Rate control mode to specify whether the bitrate is variable (vbr) or constant (cbr).
|
|
2909
2909
|
*/
|
|
2910
2910
|
RateControlMode?: Mpeg2RateControlMode | string;
|
|
2911
2911
|
/**
|
|
2912
|
-
* Use this setting for interlaced outputs, when your output frame rate is half of your input frame rate. In this situation, choose Optimized interlacing
|
|
2912
|
+
* 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.
|
|
2913
2913
|
*/
|
|
2914
2914
|
ScanTypeConversionMode?: Mpeg2ScanTypeConversionMode | string;
|
|
2915
2915
|
/**
|
|
@@ -2917,27 +2917,27 @@ export interface Mpeg2Settings {
|
|
|
2917
2917
|
*/
|
|
2918
2918
|
SceneChangeDetect?: Mpeg2SceneChangeDetect | string;
|
|
2919
2919
|
/**
|
|
2920
|
-
* 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.
|
|
2920
|
+
* 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.
|
|
2921
2921
|
*/
|
|
2922
2922
|
SlowPal?: Mpeg2SlowPal | string;
|
|
2923
2923
|
/**
|
|
2924
|
-
* 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
|
|
2924
|
+
* 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.
|
|
2925
2925
|
*/
|
|
2926
2926
|
Softness?: number;
|
|
2927
2927
|
/**
|
|
2928
|
-
* Keep the default value, Enabled
|
|
2928
|
+
* 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.
|
|
2929
2929
|
*/
|
|
2930
2930
|
SpatialAdaptiveQuantization?: Mpeg2SpatialAdaptiveQuantization | string;
|
|
2931
2931
|
/**
|
|
2932
|
-
* 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
|
|
2932
|
+
* 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.
|
|
2933
2933
|
*/
|
|
2934
2934
|
Syntax?: Mpeg2Syntax | string;
|
|
2935
2935
|
/**
|
|
2936
|
-
* 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
|
|
2936
|
+
* 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.
|
|
2937
2937
|
*/
|
|
2938
2938
|
Telecine?: Mpeg2Telecine | string;
|
|
2939
2939
|
/**
|
|
2940
|
-
* Keep the default value, Enabled
|
|
2940
|
+
* 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.
|
|
2941
2941
|
*/
|
|
2942
2942
|
TemporalAdaptiveQuantization?: Mpeg2TemporalAdaptiveQuantization | string;
|
|
2943
2943
|
}
|
|
@@ -3059,19 +3059,19 @@ export declare const ProresTelecine: {
|
|
|
3059
3059
|
export type ProresTelecine = (typeof ProresTelecine)[keyof typeof ProresTelecine];
|
|
3060
3060
|
/**
|
|
3061
3061
|
* @public
|
|
3062
|
-
* Required when you set
|
|
3062
|
+
* Required when you set Codec to the value PRORES.
|
|
3063
3063
|
*/
|
|
3064
3064
|
export interface ProresSettings {
|
|
3065
3065
|
/**
|
|
3066
|
-
* 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
|
|
3066
|
+
* 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.
|
|
3067
3067
|
*/
|
|
3068
3068
|
ChromaSampling?: ProresChromaSampling | string;
|
|
3069
3069
|
/**
|
|
3070
|
-
* Use Profile
|
|
3070
|
+
* Use Profile to specify the type of Apple ProRes codec to use for this output.
|
|
3071
3071
|
*/
|
|
3072
3072
|
CodecProfile?: ProresCodecProfile | string;
|
|
3073
3073
|
/**
|
|
3074
|
-
* 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.
|
|
3074
|
+
* 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.
|
|
3075
3075
|
*/
|
|
3076
3076
|
FramerateControl?: ProresFramerateControl | string;
|
|
3077
3077
|
/**
|
|
@@ -3087,31 +3087,31 @@ export interface ProresSettings {
|
|
|
3087
3087
|
*/
|
|
3088
3088
|
FramerateNumerator?: number;
|
|
3089
3089
|
/**
|
|
3090
|
-
* Choose the scan line type for the output. Keep the default value, Progressive
|
|
3090
|
+
* 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.
|
|
3091
3091
|
*/
|
|
3092
3092
|
InterlaceMode?: ProresInterlaceMode | string;
|
|
3093
3093
|
/**
|
|
3094
|
-
* Optional. Specify how the service determines the pixel aspect ratio (PAR) for this output. The default behavior, Follow source
|
|
3094
|
+
* 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.
|
|
3095
3095
|
*/
|
|
3096
3096
|
ParControl?: ProresParControl | string;
|
|
3097
3097
|
/**
|
|
3098
|
-
* Required when you set Pixel aspect ratio
|
|
3098
|
+
* 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.
|
|
3099
3099
|
*/
|
|
3100
3100
|
ParDenominator?: number;
|
|
3101
3101
|
/**
|
|
3102
|
-
* Required when you set Pixel aspect ratio
|
|
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 parNumerator is 40.
|
|
3103
3103
|
*/
|
|
3104
3104
|
ParNumerator?: number;
|
|
3105
3105
|
/**
|
|
3106
|
-
* Use this setting for interlaced outputs, when your output frame rate is half of your input frame rate. In this situation, choose Optimized interlacing
|
|
3106
|
+
* 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.
|
|
3107
3107
|
*/
|
|
3108
3108
|
ScanTypeConversionMode?: ProresScanTypeConversionMode | string;
|
|
3109
3109
|
/**
|
|
3110
|
-
* 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.
|
|
3110
|
+
* 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.
|
|
3111
3111
|
*/
|
|
3112
3112
|
SlowPal?: ProresSlowPal | string;
|
|
3113
3113
|
/**
|
|
3114
|
-
* 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
|
|
3114
|
+
* 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.
|
|
3115
3115
|
*/
|
|
3116
3116
|
Telecine?: ProresTelecine | string;
|
|
3117
3117
|
}
|
|
@@ -3203,11 +3203,11 @@ export declare const Vc3Class: {
|
|
|
3203
3203
|
export type Vc3Class = (typeof Vc3Class)[keyof typeof Vc3Class];
|
|
3204
3204
|
/**
|
|
3205
3205
|
* @public
|
|
3206
|
-
* Required when you set
|
|
3206
|
+
* Required when you set Codec to the value VC3
|
|
3207
3207
|
*/
|
|
3208
3208
|
export interface Vc3Settings {
|
|
3209
3209
|
/**
|
|
3210
|
-
* 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.
|
|
3210
|
+
* 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.
|
|
3211
3211
|
*/
|
|
3212
3212
|
FramerateControl?: Vc3FramerateControl | string;
|
|
3213
3213
|
/**
|
|
@@ -3227,19 +3227,19 @@ export interface Vc3Settings {
|
|
|
3227
3227
|
*/
|
|
3228
3228
|
InterlaceMode?: Vc3InterlaceMode | string;
|
|
3229
3229
|
/**
|
|
3230
|
-
* Use this setting for interlaced outputs, when your output frame rate is half of your input frame rate. In this situation, choose Optimized interlacing
|
|
3230
|
+
* 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.
|
|
3231
3231
|
*/
|
|
3232
3232
|
ScanTypeConversionMode?: Vc3ScanTypeConversionMode | string;
|
|
3233
3233
|
/**
|
|
3234
|
-
* 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.
|
|
3234
|
+
* 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.
|
|
3235
3235
|
*/
|
|
3236
3236
|
SlowPal?: Vc3SlowPal | string;
|
|
3237
3237
|
/**
|
|
3238
|
-
* 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
|
|
3238
|
+
* 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.
|
|
3239
3239
|
*/
|
|
3240
3240
|
Telecine?: Vc3Telecine | string;
|
|
3241
3241
|
/**
|
|
3242
|
-
* 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
|
|
3242
|
+
* 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.
|
|
3243
3243
|
*/
|
|
3244
3244
|
Vc3Class?: Vc3Class | string;
|
|
3245
3245
|
}
|
|
@@ -3305,7 +3305,7 @@ export declare const Vp8RateControlMode: {
|
|
|
3305
3305
|
export type Vp8RateControlMode = (typeof Vp8RateControlMode)[keyof typeof Vp8RateControlMode];
|
|
3306
3306
|
/**
|
|
3307
3307
|
* @public
|
|
3308
|
-
* Required when you set
|
|
3308
|
+
* Required when you set Codec to the value VP8.
|
|
3309
3309
|
*/
|
|
3310
3310
|
export interface Vp8Settings {
|
|
3311
3311
|
/**
|
|
@@ -3313,7 +3313,7 @@ export interface Vp8Settings {
|
|
|
3313
3313
|
*/
|
|
3314
3314
|
Bitrate?: number;
|
|
3315
3315
|
/**
|
|
3316
|
-
* 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.
|
|
3316
|
+
* 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.
|
|
3317
3317
|
*/
|
|
3318
3318
|
FramerateControl?: Vp8FramerateControl | string;
|
|
3319
3319
|
/**
|
|
@@ -3341,19 +3341,19 @@ export interface Vp8Settings {
|
|
|
3341
3341
|
*/
|
|
3342
3342
|
MaxBitrate?: number;
|
|
3343
3343
|
/**
|
|
3344
|
-
* Optional. Specify how the service determines the pixel aspect ratio (PAR) for this output. The default behavior, Follow source
|
|
3344
|
+
* 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.
|
|
3345
3345
|
*/
|
|
3346
3346
|
ParControl?: Vp8ParControl | string;
|
|
3347
3347
|
/**
|
|
3348
|
-
* Required when you set Pixel aspect ratio
|
|
3348
|
+
* 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.
|
|
3349
3349
|
*/
|
|
3350
3350
|
ParDenominator?: number;
|
|
3351
3351
|
/**
|
|
3352
|
-
* Required when you set Pixel aspect ratio
|
|
3352
|
+
* 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.
|
|
3353
3353
|
*/
|
|
3354
3354
|
ParNumerator?: number;
|
|
3355
3355
|
/**
|
|
3356
|
-
* Optional. Use Quality tuning level
|
|
3356
|
+
* 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.
|
|
3357
3357
|
*/
|
|
3358
3358
|
QualityTuningLevel?: Vp8QualityTuningLevel | string;
|
|
3359
3359
|
/**
|
|
@@ -3423,7 +3423,7 @@ export declare const Vp9RateControlMode: {
|
|
|
3423
3423
|
export type Vp9RateControlMode = (typeof Vp9RateControlMode)[keyof typeof Vp9RateControlMode];
|
|
3424
3424
|
/**
|
|
3425
3425
|
* @public
|
|
3426
|
-
* Required when you set
|
|
3426
|
+
* Required when you set Codec to the value VP9.
|
|
3427
3427
|
*/
|
|
3428
3428
|
export interface Vp9Settings {
|
|
3429
3429
|
/**
|
|
@@ -3431,7 +3431,7 @@ export interface Vp9Settings {
|
|
|
3431
3431
|
*/
|
|
3432
3432
|
Bitrate?: number;
|
|
3433
3433
|
/**
|
|
3434
|
-
* 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.
|
|
3434
|
+
* 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.
|
|
3435
3435
|
*/
|
|
3436
3436
|
FramerateControl?: Vp9FramerateControl | string;
|
|
3437
3437
|
/**
|
|
@@ -3463,15 +3463,15 @@ export interface Vp9Settings {
|
|
|
3463
3463
|
*/
|
|
3464
3464
|
ParControl?: Vp9ParControl | string;
|
|
3465
3465
|
/**
|
|
3466
|
-
* Required when you set Pixel aspect ratio
|
|
3466
|
+
* 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.
|
|
3467
3467
|
*/
|
|
3468
3468
|
ParDenominator?: number;
|
|
3469
3469
|
/**
|
|
3470
|
-
* Required when you set Pixel aspect ratio
|
|
3470
|
+
* 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.
|
|
3471
3471
|
*/
|
|
3472
3472
|
ParNumerator?: number;
|
|
3473
3473
|
/**
|
|
3474
|
-
* Optional. Use Quality tuning level
|
|
3474
|
+
* 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.
|
|
3475
3475
|
*/
|
|
3476
3476
|
QualityTuningLevel?: Vp9QualityTuningLevel | string;
|
|
3477
3477
|
/**
|
|
@@ -3600,7 +3600,7 @@ export declare const Xavc4kIntraCbgProfileClass: {
|
|
|
3600
3600
|
export type Xavc4kIntraCbgProfileClass = (typeof Xavc4kIntraCbgProfileClass)[keyof typeof Xavc4kIntraCbgProfileClass];
|
|
3601
3601
|
/**
|
|
3602
3602
|
* @public
|
|
3603
|
-
* Required when you set
|
|
3603
|
+
* Required when you set Profile to the value XAVC_4K_INTRA_CBG.
|
|
3604
3604
|
*/
|
|
3605
3605
|
export interface Xavc4kIntraCbgProfileSettings {
|
|
3606
3606
|
/**
|
|
@@ -3623,7 +3623,7 @@ export declare const Xavc4kIntraVbrProfileClass: {
|
|
|
3623
3623
|
export type Xavc4kIntraVbrProfileClass = (typeof Xavc4kIntraVbrProfileClass)[keyof typeof Xavc4kIntraVbrProfileClass];
|
|
3624
3624
|
/**
|
|
3625
3625
|
* @public
|
|
3626
|
-
* Required when you set
|
|
3626
|
+
* Required when you set Profile to the value XAVC_4K_INTRA_VBR.
|
|
3627
3627
|
*/
|
|
3628
3628
|
export interface Xavc4kIntraVbrProfileSettings {
|
|
3629
3629
|
/**
|
|
@@ -3695,7 +3695,7 @@ export declare const Xavc4kProfileQualityTuningLevel: {
|
|
|
3695
3695
|
export type Xavc4kProfileQualityTuningLevel = (typeof Xavc4kProfileQualityTuningLevel)[keyof typeof Xavc4kProfileQualityTuningLevel];
|
|
3696
3696
|
/**
|
|
3697
3697
|
* @public
|
|
3698
|
-
* Required when you set
|
|
3698
|
+
* Required when you set Profile to the value XAVC_4K.
|
|
3699
3699
|
*/
|
|
3700
3700
|
export interface Xavc4kProfileSettings {
|
|
3701
3701
|
/**
|
|
@@ -3707,11 +3707,11 @@ export interface Xavc4kProfileSettings {
|
|
|
3707
3707
|
*/
|
|
3708
3708
|
CodecProfile?: Xavc4kProfileCodecProfile | string;
|
|
3709
3709
|
/**
|
|
3710
|
-
* The best way to set up adaptive quantization is to keep the default value, Auto
|
|
3710
|
+
* 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.
|
|
3711
3711
|
*/
|
|
3712
3712
|
FlickerAdaptiveQuantization?: XavcFlickerAdaptiveQuantization | string;
|
|
3713
3713
|
/**
|
|
3714
|
-
* Specify whether the encoder uses B-frames as reference frames for other pictures in the same GOP. Choose Allow
|
|
3714
|
+
* 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.
|
|
3715
3715
|
*/
|
|
3716
3716
|
GopBReference?: XavcGopBReference | string;
|
|
3717
3717
|
/**
|
|
@@ -3723,7 +3723,7 @@ export interface Xavc4kProfileSettings {
|
|
|
3723
3723
|
*/
|
|
3724
3724
|
HrdBufferSize?: number;
|
|
3725
3725
|
/**
|
|
3726
|
-
* Optional. Use Quality tuning level
|
|
3726
|
+
* 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.
|
|
3727
3727
|
*/
|
|
3728
3728
|
QualityTuningLevel?: Xavc4kProfileQualityTuningLevel | string;
|
|
3729
3729
|
/**
|
|
@@ -3746,7 +3746,7 @@ export declare const XavcHdIntraCbgProfileClass: {
|
|
|
3746
3746
|
export type XavcHdIntraCbgProfileClass = (typeof XavcHdIntraCbgProfileClass)[keyof typeof XavcHdIntraCbgProfileClass];
|
|
3747
3747
|
/**
|
|
3748
3748
|
* @public
|
|
3749
|
-
* Required when you set
|
|
3749
|
+
* Required when you set Profile to the value XAVC_HD_INTRA_CBG.
|
|
3750
3750
|
*/
|
|
3751
3751
|
export interface XavcHdIntraCbgProfileSettings {
|
|
3752
3752
|
/**
|
|
@@ -3809,7 +3809,7 @@ export declare const XavcHdProfileTelecine: {
|
|
|
3809
3809
|
export type XavcHdProfileTelecine = (typeof XavcHdProfileTelecine)[keyof typeof XavcHdProfileTelecine];
|
|
3810
3810
|
/**
|
|
3811
3811
|
* @public
|
|
3812
|
-
* Required when you set
|
|
3812
|
+
* Required when you set Profile to the value XAVC_HD.
|
|
3813
3813
|
*/
|
|
3814
3814
|
export interface XavcHdProfileSettings {
|
|
3815
3815
|
/**
|
|
@@ -3817,11 +3817,11 @@ export interface XavcHdProfileSettings {
|
|
|
3817
3817
|
*/
|
|
3818
3818
|
BitrateClass?: XavcHdProfileBitrateClass | string;
|
|
3819
3819
|
/**
|
|
3820
|
-
* The best way to set up adaptive quantization is to keep the default value, Auto
|
|
3820
|
+
* 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.
|
|
3821
3821
|
*/
|
|
3822
3822
|
FlickerAdaptiveQuantization?: XavcFlickerAdaptiveQuantization | string;
|
|
3823
3823
|
/**
|
|
3824
|
-
* Specify whether the encoder uses B-frames as reference frames for other pictures in the same GOP. Choose Allow
|
|
3824
|
+
* 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.
|
|
3825
3825
|
*/
|
|
3826
3826
|
GopBReference?: XavcGopBReference | string;
|
|
3827
3827
|
/**
|
|
@@ -3833,11 +3833,11 @@ export interface XavcHdProfileSettings {
|
|
|
3833
3833
|
*/
|
|
3834
3834
|
HrdBufferSize?: number;
|
|
3835
3835
|
/**
|
|
3836
|
-
* Choose the scan line type for the output. Keep the default value, Progressive
|
|
3836
|
+
* 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.
|
|
3837
3837
|
*/
|
|
3838
3838
|
InterlaceMode?: XavcInterlaceMode | string;
|
|
3839
3839
|
/**
|
|
3840
|
-
* Optional. Use Quality tuning level
|
|
3840
|
+
* 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.
|
|
3841
3841
|
*/
|
|
3842
3842
|
QualityTuningLevel?: XavcHdProfileQualityTuningLevel | string;
|
|
3843
3843
|
/**
|
|
@@ -3845,17 +3845,17 @@ export interface XavcHdProfileSettings {
|
|
|
3845
3845
|
*/
|
|
3846
3846
|
Slices?: number;
|
|
3847
3847
|
/**
|
|
3848
|
-
* Ignore this setting unless you set Frame rate (framerateNumerator divided by framerateDenominator) to 29.970. If your input framerate is 23.976, choose Hard
|
|
3848
|
+
* 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.
|
|
3849
3849
|
*/
|
|
3850
3850
|
Telecine?: XavcHdProfileTelecine | string;
|
|
3851
3851
|
}
|
|
3852
3852
|
/**
|
|
3853
3853
|
* @public
|
|
3854
|
-
* Required when you set
|
|
3854
|
+
* Required when you set Codec to the value XAVC.
|
|
3855
3855
|
*/
|
|
3856
3856
|
export interface XavcSettings {
|
|
3857
3857
|
/**
|
|
3858
|
-
* Keep the default value, Auto
|
|
3858
|
+
* 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.
|
|
3859
3859
|
*/
|
|
3860
3860
|
AdaptiveQuantization?: XavcAdaptiveQuantization | string;
|
|
3861
3861
|
/**
|
|
@@ -3863,7 +3863,7 @@ export interface XavcSettings {
|
|
|
3863
3863
|
*/
|
|
3864
3864
|
EntropyEncoding?: XavcEntropyEncoding | string;
|
|
3865
3865
|
/**
|
|
3866
|
-
* 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.
|
|
3866
|
+
* 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.
|
|
3867
3867
|
*/
|
|
3868
3868
|
FramerateControl?: XavcFramerateControl | string;
|
|
3869
3869
|
/**
|
|
@@ -3883,45 +3883,45 @@ export interface XavcSettings {
|
|
|
3883
3883
|
*/
|
|
3884
3884
|
Profile?: XavcProfile | string;
|
|
3885
3885
|
/**
|
|
3886
|
-
* 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.
|
|
3886
|
+
* 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.
|
|
3887
3887
|
*/
|
|
3888
3888
|
SlowPal?: XavcSlowPal | string;
|
|
3889
3889
|
/**
|
|
3890
|
-
* 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
|
|
3890
|
+
* 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.
|
|
3891
3891
|
*/
|
|
3892
3892
|
Softness?: number;
|
|
3893
3893
|
/**
|
|
3894
|
-
* The best way to set up adaptive quantization is to keep the default value, Auto
|
|
3894
|
+
* 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.
|
|
3895
3895
|
*/
|
|
3896
3896
|
SpatialAdaptiveQuantization?: XavcSpatialAdaptiveQuantization | string;
|
|
3897
3897
|
/**
|
|
3898
|
-
* The best way to set up adaptive quantization is to keep the default value, Auto
|
|
3898
|
+
* 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.
|
|
3899
3899
|
*/
|
|
3900
3900
|
TemporalAdaptiveQuantization?: XavcTemporalAdaptiveQuantization | string;
|
|
3901
3901
|
/**
|
|
3902
|
-
* Required when you set
|
|
3902
|
+
* Required when you set Profile to the value XAVC_4K_INTRA_CBG.
|
|
3903
3903
|
*/
|
|
3904
3904
|
Xavc4kIntraCbgProfileSettings?: Xavc4kIntraCbgProfileSettings;
|
|
3905
3905
|
/**
|
|
3906
|
-
* Required when you set
|
|
3906
|
+
* Required when you set Profile to the value XAVC_4K_INTRA_VBR.
|
|
3907
3907
|
*/
|
|
3908
3908
|
Xavc4kIntraVbrProfileSettings?: Xavc4kIntraVbrProfileSettings;
|
|
3909
3909
|
/**
|
|
3910
|
-
* Required when you set
|
|
3910
|
+
* Required when you set Profile to the value XAVC_4K.
|
|
3911
3911
|
*/
|
|
3912
3912
|
Xavc4kProfileSettings?: Xavc4kProfileSettings;
|
|
3913
3913
|
/**
|
|
3914
|
-
* Required when you set
|
|
3914
|
+
* Required when you set Profile to the value XAVC_HD_INTRA_CBG.
|
|
3915
3915
|
*/
|
|
3916
3916
|
XavcHdIntraCbgProfileSettings?: XavcHdIntraCbgProfileSettings;
|
|
3917
3917
|
/**
|
|
3918
|
-
* Required when you set
|
|
3918
|
+
* Required when you set Profile to the value XAVC_HD.
|
|
3919
3919
|
*/
|
|
3920
3920
|
XavcHdProfileSettings?: XavcHdProfileSettings;
|
|
3921
3921
|
}
|
|
3922
3922
|
/**
|
|
3923
3923
|
* @public
|
|
3924
|
-
* Video codec settings
|
|
3924
|
+
* 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 * VC3, Vc3Settings * VP8, Vp8Settings * VP9, Vp9Settings * XAVC, XavcSettings
|
|
3925
3925
|
*/
|
|
3926
3926
|
export interface VideoCodecSettings {
|
|
3927
3927
|
/**
|
|
@@ -3933,15 +3933,15 @@ export interface VideoCodecSettings {
|
|
|
3933
3933
|
*/
|
|
3934
3934
|
AvcIntraSettings?: AvcIntraSettings;
|
|
3935
3935
|
/**
|
|
3936
|
-
* 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
|
|
3936
|
+
* 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.
|
|
3937
3937
|
*/
|
|
3938
3938
|
Codec?: VideoCodec | string;
|
|
3939
3939
|
/**
|
|
3940
|
-
* Required when you set
|
|
3940
|
+
* Required when you set Codec to the value FRAME_CAPTURE.
|
|
3941
3941
|
*/
|
|
3942
3942
|
FrameCaptureSettings?: FrameCaptureSettings;
|
|
3943
3943
|
/**
|
|
3944
|
-
* Required when you set
|
|
3944
|
+
* Required when you set Codec to the value H_264.
|
|
3945
3945
|
*/
|
|
3946
3946
|
H264Settings?: H264Settings;
|
|
3947
3947
|
/**
|
|
@@ -3949,27 +3949,27 @@ export interface VideoCodecSettings {
|
|
|
3949
3949
|
*/
|
|
3950
3950
|
H265Settings?: H265Settings;
|
|
3951
3951
|
/**
|
|
3952
|
-
* Required when you set
|
|
3952
|
+
* Required when you set Codec to the value MPEG2.
|
|
3953
3953
|
*/
|
|
3954
3954
|
Mpeg2Settings?: Mpeg2Settings;
|
|
3955
3955
|
/**
|
|
3956
|
-
* Required when you set
|
|
3956
|
+
* Required when you set Codec to the value PRORES.
|
|
3957
3957
|
*/
|
|
3958
3958
|
ProresSettings?: ProresSettings;
|
|
3959
3959
|
/**
|
|
3960
|
-
* Required when you set
|
|
3960
|
+
* Required when you set Codec to the value VC3
|
|
3961
3961
|
*/
|
|
3962
3962
|
Vc3Settings?: Vc3Settings;
|
|
3963
3963
|
/**
|
|
3964
|
-
* Required when you set
|
|
3964
|
+
* Required when you set Codec to the value VP8.
|
|
3965
3965
|
*/
|
|
3966
3966
|
Vp8Settings?: Vp8Settings;
|
|
3967
3967
|
/**
|
|
3968
|
-
* Required when you set
|
|
3968
|
+
* Required when you set Codec to the value VP9.
|
|
3969
3969
|
*/
|
|
3970
3970
|
Vp9Settings?: Vp9Settings;
|
|
3971
3971
|
/**
|
|
3972
|
-
* Required when you set
|
|
3972
|
+
* Required when you set Codec to the value XAVC.
|
|
3973
3973
|
*/
|
|
3974
3974
|
XavcSettings?: XavcSettings;
|
|
3975
3975
|
}
|
|
@@ -4126,7 +4126,7 @@ export interface ColorCorrector {
|
|
|
4126
4126
|
*/
|
|
4127
4127
|
Contrast?: number;
|
|
4128
4128
|
/**
|
|
4129
|
-
* 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
|
|
4129
|
+
* 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.
|
|
4130
4130
|
*/
|
|
4131
4131
|
Hdr10Metadata?: Hdr10Metadata;
|
|
4132
4132
|
/**
|
|
@@ -4204,7 +4204,10 @@ export interface Deinterlacer {
|
|
|
4204
4204
|
*/
|
|
4205
4205
|
Control?: DeinterlacerControl | string;
|
|
4206
4206
|
/**
|
|
4207
|
-
* Use Deinterlacer
|
|
4207
|
+
* Use Deinterlacer to choose how the service will do deinterlacing. Default is Deinterlace.
|
|
4208
|
+
* - Deinterlace converts interlaced to progressive.
|
|
4209
|
+
* - Inverse telecine converts Hard Telecine 29.97i to progressive 23.976p.
|
|
4210
|
+
* - Adaptive auto-detects and converts to progressive.
|
|
4208
4211
|
*/
|
|
4209
4212
|
Mode?: DeinterlacerMode | string;
|
|
4210
4213
|
}
|
|
@@ -4377,11 +4380,11 @@ export interface NoiseReducerTemporalFilterSettings {
|
|
|
4377
4380
|
*/
|
|
4378
4381
|
AggressiveMode?: number;
|
|
4379
4382
|
/**
|
|
4380
|
-
* When you set Noise reducer
|
|
4383
|
+
* 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.
|
|
4381
4384
|
*/
|
|
4382
4385
|
PostTemporalSharpening?: NoiseFilterPostTemporalSharpening | string;
|
|
4383
4386
|
/**
|
|
4384
|
-
* Use Post temporal sharpening strength
|
|
4387
|
+
* 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.
|
|
4385
4388
|
*/
|
|
4386
4389
|
PostTemporalSharpeningStrength?: NoiseFilterPostTemporalSharpeningStrength | string;
|
|
4387
4390
|
/**
|
|
@@ -4399,7 +4402,7 @@ export interface NoiseReducerTemporalFilterSettings {
|
|
|
4399
4402
|
*/
|
|
4400
4403
|
export interface NoiseReducer {
|
|
4401
4404
|
/**
|
|
4402
|
-
* Use Noise reducer filter
|
|
4405
|
+
* 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.
|
|
4403
4406
|
*/
|
|
4404
4407
|
Filter?: NoiseReducerFilter | string;
|
|
4405
4408
|
/**
|
|
@@ -4436,15 +4439,15 @@ export type WatermarkingStrength = (typeof WatermarkingStrength)[keyof typeof Wa
|
|
|
4436
4439
|
*/
|
|
4437
4440
|
export interface NexGuardFileMarkerSettings {
|
|
4438
4441
|
/**
|
|
4439
|
-
* 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
|
|
4442
|
+
* 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.
|
|
4440
4443
|
*/
|
|
4441
4444
|
License?: string;
|
|
4442
4445
|
/**
|
|
4443
|
-
* 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
|
|
4446
|
+
* 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.
|
|
4444
4447
|
*/
|
|
4445
4448
|
Payload?: number;
|
|
4446
4449
|
/**
|
|
4447
|
-
* Enter one of the watermarking preset strings that Nagra provides you. Required when you include Nagra NexGuard File Marker watermarking
|
|
4450
|
+
* Enter one of the watermarking preset strings that Nagra provides you. Required when you include Nagra NexGuard File Marker watermarking in your job.
|
|
4448
4451
|
*/
|
|
4449
4452
|
Preset?: string;
|
|
4450
4453
|
/**
|
|
@@ -4487,21 +4490,21 @@ export type TimecodeBurninPosition = (typeof TimecodeBurninPosition)[keyof typeo
|
|
|
4487
4490
|
*/
|
|
4488
4491
|
export interface TimecodeBurnin {
|
|
4489
4492
|
/**
|
|
4490
|
-
* Use Font
|
|
4493
|
+
* Use Font size to set the font size of any burned-in timecode. Valid values are 10, 16, 32, 48.
|
|
4491
4494
|
*/
|
|
4492
4495
|
FontSize?: number;
|
|
4493
4496
|
/**
|
|
4494
|
-
* Use Position
|
|
4497
|
+
* Use Position under Timecode burn-in to specify the location the burned-in timecode on output video.
|
|
4495
4498
|
*/
|
|
4496
4499
|
Position?: TimecodeBurninPosition | string;
|
|
4497
4500
|
/**
|
|
4498
|
-
* Use Prefix
|
|
4501
|
+
* 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.
|
|
4499
4502
|
*/
|
|
4500
4503
|
Prefix?: string;
|
|
4501
4504
|
}
|
|
4502
4505
|
/**
|
|
4503
4506
|
* @public
|
|
4504
|
-
* Find additional transcoding features under Preprocessors
|
|
4507
|
+
* Find additional transcoding features under Preprocessors. Enable the features at each output individually. These features are disabled by default.
|
|
4505
4508
|
*/
|
|
4506
4509
|
export interface VideoPreprocessor {
|
|
4507
4510
|
/**
|
|
@@ -4521,7 +4524,7 @@ export interface VideoPreprocessor {
|
|
|
4521
4524
|
*/
|
|
4522
4525
|
Hdr10Plus?: Hdr10Plus;
|
|
4523
4526
|
/**
|
|
4524
|
-
* Enable the Image inserter
|
|
4527
|
+
* 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.
|
|
4525
4528
|
*/
|
|
4526
4529
|
ImageInserter?: ImageInserter;
|
|
4527
4530
|
/**
|
|
@@ -4539,11 +4542,11 @@ export interface VideoPreprocessor {
|
|
|
4539
4542
|
}
|
|
4540
4543
|
/**
|
|
4541
4544
|
* @public
|
|
4542
|
-
* Settings related to video encoding of your output. The specific video settings depend on the video codec that you choose.
|
|
4545
|
+
* Settings related to video encoding of your output. The specific video settings depend on the video codec that you choose.
|
|
4543
4546
|
*/
|
|
4544
4547
|
export interface VideoDescription {
|
|
4545
4548
|
/**
|
|
4546
|
-
* This setting only applies to H.264, H.265, and MPEG2 outputs. Use Insert AFD signaling
|
|
4549
|
+
* 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.
|
|
4547
4550
|
*/
|
|
4548
4551
|
AfdSignaling?: AfdSignaling | string;
|
|
4549
4552
|
/**
|
|
@@ -4551,23 +4554,23 @@ export interface VideoDescription {
|
|
|
4551
4554
|
*/
|
|
4552
4555
|
AntiAlias?: AntiAlias | string;
|
|
4553
4556
|
/**
|
|
4554
|
-
* Video codec settings
|
|
4557
|
+
* 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 * VC3, Vc3Settings * VP8, Vp8Settings * VP9, Vp9Settings * XAVC, XavcSettings
|
|
4555
4558
|
*/
|
|
4556
4559
|
CodecSettings?: VideoCodecSettings;
|
|
4557
4560
|
/**
|
|
4558
|
-
* Choose Insert
|
|
4561
|
+
* 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.
|
|
4559
4562
|
*/
|
|
4560
4563
|
ColorMetadata?: ColorMetadata | string;
|
|
4561
4564
|
/**
|
|
4562
|
-
* Use Cropping selection
|
|
4565
|
+
* Use Cropping selection to specify the video area that the service will include in the output video frame.
|
|
4563
4566
|
*/
|
|
4564
4567
|
Crop?: Rectangle;
|
|
4565
4568
|
/**
|
|
4566
|
-
* 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
|
|
4569
|
+
* 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.
|
|
4567
4570
|
*/
|
|
4568
4571
|
DropFrameTimecode?: DropFrameTimecode | string;
|
|
4569
4572
|
/**
|
|
4570
|
-
* Applies only if you set AFD Signaling
|
|
4573
|
+
* 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.
|
|
4571
4574
|
*/
|
|
4572
4575
|
FixedAfd?: number;
|
|
4573
4576
|
/**
|
|
@@ -4575,27 +4578,27 @@ export interface VideoDescription {
|
|
|
4575
4578
|
*/
|
|
4576
4579
|
Height?: number;
|
|
4577
4580
|
/**
|
|
4578
|
-
* Use Selection placement
|
|
4581
|
+
* Use Selection placement to define the video area in your output frame. The area outside of the rectangle that you specify here is black.
|
|
4579
4582
|
*/
|
|
4580
4583
|
Position?: Rectangle;
|
|
4581
4584
|
/**
|
|
4582
|
-
* Use Respond to AFD
|
|
4585
|
+
* 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.
|
|
4583
4586
|
*/
|
|
4584
4587
|
RespondToAfd?: RespondToAfd | string;
|
|
4585
4588
|
/**
|
|
4586
|
-
* Specify how the service handles outputs that have a different aspect ratio from the input aspect ratio. Choose Stretch to output
|
|
4589
|
+
* Specify how the service handles outputs that have a different aspect ratio from the input aspect ratio. Choose Stretch to output to have the service stretch your video image to fit. Keep the setting Default to have the service letterbox your video instead. This setting overrides any value that you specify for the setting Selection placement in this output.
|
|
4587
4590
|
*/
|
|
4588
4591
|
ScalingBehavior?: ScalingBehavior | string;
|
|
4589
4592
|
/**
|
|
4590
|
-
* Use Sharpness
|
|
4593
|
+
* 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.
|
|
4591
4594
|
*/
|
|
4592
4595
|
Sharpness?: number;
|
|
4593
4596
|
/**
|
|
4594
|
-
* 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
|
|
4597
|
+
* 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.
|
|
4595
4598
|
*/
|
|
4596
4599
|
TimecodeInsertion?: VideoTimecodeInsertion | string;
|
|
4597
4600
|
/**
|
|
4598
|
-
* Find additional transcoding features under Preprocessors
|
|
4601
|
+
* Find additional transcoding features under Preprocessors. Enable the features at each output individually. These features are disabled by default.
|
|
4599
4602
|
*/
|
|
4600
4603
|
VideoPreprocessors?: VideoPreprocessor;
|
|
4601
4604
|
/**
|
|
@@ -4609,11 +4612,11 @@ export interface VideoDescription {
|
|
|
4609
4612
|
*/
|
|
4610
4613
|
export interface Output {
|
|
4611
4614
|
/**
|
|
4612
|
-
*
|
|
4615
|
+
* Contains groups of audio encoding settings organized by audio codec. Include one instance of per output. Can contain multiple groups of encoding settings.
|
|
4613
4616
|
*/
|
|
4614
4617
|
AudioDescriptions?: AudioDescription[];
|
|
4615
4618
|
/**
|
|
4616
|
-
*
|
|
4619
|
+
* Contains groups of captions settings. For each output that has captions, include one instance of CaptionDescriptions. Can contain multiple groups of captions settings.
|
|
4617
4620
|
*/
|
|
4618
4621
|
CaptionDescriptions?: CaptionDescription[];
|
|
4619
4622
|
/**
|
|
@@ -4621,11 +4624,11 @@ export interface Output {
|
|
|
4621
4624
|
*/
|
|
4622
4625
|
ContainerSettings?: ContainerSettings;
|
|
4623
4626
|
/**
|
|
4624
|
-
* Use Extension
|
|
4627
|
+
* 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)
|
|
4625
4628
|
*/
|
|
4626
4629
|
Extension?: string;
|
|
4627
4630
|
/**
|
|
4628
|
-
* Use Name modifier
|
|
4631
|
+
* 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.
|
|
4629
4632
|
*/
|
|
4630
4633
|
NameModifier?: string;
|
|
4631
4634
|
/**
|
|
@@ -4633,7 +4636,7 @@ export interface Output {
|
|
|
4633
4636
|
*/
|
|
4634
4637
|
OutputSettings?: OutputSettings;
|
|
4635
4638
|
/**
|
|
4636
|
-
* Use Preset
|
|
4639
|
+
* 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.
|
|
4637
4640
|
*/
|
|
4638
4641
|
Preset?: string;
|
|
4639
4642
|
/**
|
|
@@ -4651,7 +4654,7 @@ export interface OutputGroup {
|
|
|
4651
4654
|
*/
|
|
4652
4655
|
AutomatedEncodingSettings?: AutomatedEncodingSettings;
|
|
4653
4656
|
/**
|
|
4654
|
-
* Use Custom Group Name
|
|
4657
|
+
* 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.
|
|
4655
4658
|
*/
|
|
4656
4659
|
CustomName?: string;
|
|
4657
4660
|
/**
|
|
@@ -4686,25 +4689,25 @@ export type TimecodeSource = (typeof TimecodeSource)[keyof typeof TimecodeSource
|
|
|
4686
4689
|
*/
|
|
4687
4690
|
export interface TimecodeConfig {
|
|
4688
4691
|
/**
|
|
4689
|
-
* If you use an editing platform that relies on an anchor timecode, use Anchor Timecode
|
|
4692
|
+
* 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.
|
|
4690
4693
|
*/
|
|
4691
4694
|
Anchor?: string;
|
|
4692
4695
|
/**
|
|
4693
|
-
* Use Source
|
|
4696
|
+
* 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.
|
|
4694
4697
|
*/
|
|
4695
4698
|
Source?: TimecodeSource | string;
|
|
4696
4699
|
/**
|
|
4697
|
-
* Only use when you set Source
|
|
4700
|
+
* 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).
|
|
4698
4701
|
*/
|
|
4699
4702
|
Start?: string;
|
|
4700
4703
|
/**
|
|
4701
|
-
* Only applies to outputs that support program-date-time stamp. Use Timestamp offset
|
|
4704
|
+
* 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.
|
|
4702
4705
|
*/
|
|
4703
4706
|
TimestampOffset?: string;
|
|
4704
4707
|
}
|
|
4705
4708
|
/**
|
|
4706
4709
|
* @public
|
|
4707
|
-
* Insert user-defined custom ID3 metadata
|
|
4710
|
+
* 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.
|
|
4708
4711
|
*/
|
|
4709
4712
|
export interface TimedMetadataInsertion {
|
|
4710
4713
|
/**
|
|
@@ -4734,7 +4737,7 @@ export interface JobSettings {
|
|
|
4734
4737
|
*/
|
|
4735
4738
|
ExtendedDataServices?: ExtendedDataServices;
|
|
4736
4739
|
/**
|
|
4737
|
-
* Use Inputs
|
|
4740
|
+
* 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.
|
|
4738
4741
|
*/
|
|
4739
4742
|
Inputs?: Input[];
|
|
4740
4743
|
/**
|
|
@@ -4746,7 +4749,7 @@ export interface JobSettings {
|
|
|
4746
4749
|
*/
|
|
4747
4750
|
MotionImageInserter?: MotionImageInserter;
|
|
4748
4751
|
/**
|
|
4749
|
-
* Settings for your Nielsen configuration. If you don't do Nielsen measurement and analytics, ignore these settings. When you enable Nielsen configuration
|
|
4752
|
+
* 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.
|
|
4750
4753
|
*/
|
|
4751
4754
|
NielsenConfiguration?: NielsenConfiguration;
|
|
4752
4755
|
/**
|
|
@@ -4754,7 +4757,7 @@ export interface JobSettings {
|
|
|
4754
4757
|
*/
|
|
4755
4758
|
NielsenNonLinearWatermark?: NielsenNonLinearWatermarkSettings;
|
|
4756
4759
|
/**
|
|
4757
|
-
*
|
|
4760
|
+
* 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
|
|
4758
4761
|
*/
|
|
4759
4762
|
OutputGroups?: OutputGroup[];
|
|
4760
4763
|
/**
|
|
@@ -4762,7 +4765,7 @@ export interface JobSettings {
|
|
|
4762
4765
|
*/
|
|
4763
4766
|
TimecodeConfig?: TimecodeConfig;
|
|
4764
4767
|
/**
|
|
4765
|
-
* Insert user-defined custom ID3 metadata
|
|
4768
|
+
* 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.
|
|
4766
4769
|
*/
|
|
4767
4770
|
TimedMetadataInsertion?: TimedMetadataInsertion;
|
|
4768
4771
|
}
|
|
@@ -4986,7 +4989,7 @@ export interface JobTemplateSettings {
|
|
|
4986
4989
|
*/
|
|
4987
4990
|
ExtendedDataServices?: ExtendedDataServices;
|
|
4988
4991
|
/**
|
|
4989
|
-
* Use Inputs
|
|
4992
|
+
* 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.
|
|
4990
4993
|
*/
|
|
4991
4994
|
Inputs?: InputTemplate[];
|
|
4992
4995
|
/**
|
|
@@ -4998,7 +5001,7 @@ export interface JobTemplateSettings {
|
|
|
4998
5001
|
*/
|
|
4999
5002
|
MotionImageInserter?: MotionImageInserter;
|
|
5000
5003
|
/**
|
|
5001
|
-
* Settings for your Nielsen configuration. If you don't do Nielsen measurement and analytics, ignore these settings. When you enable Nielsen configuration
|
|
5004
|
+
* 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.
|
|
5002
5005
|
*/
|
|
5003
5006
|
NielsenConfiguration?: NielsenConfiguration;
|
|
5004
5007
|
/**
|
|
@@ -5006,7 +5009,7 @@ export interface JobTemplateSettings {
|
|
|
5006
5009
|
*/
|
|
5007
5010
|
NielsenNonLinearWatermark?: NielsenNonLinearWatermarkSettings;
|
|
5008
5011
|
/**
|
|
5009
|
-
*
|
|
5012
|
+
* 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
|
|
5010
5013
|
*/
|
|
5011
5014
|
OutputGroups?: OutputGroup[];
|
|
5012
5015
|
/**
|
|
@@ -5014,7 +5017,7 @@ export interface JobTemplateSettings {
|
|
|
5014
5017
|
*/
|
|
5015
5018
|
TimecodeConfig?: TimecodeConfig;
|
|
5016
5019
|
/**
|
|
5017
|
-
* Insert user-defined custom ID3 metadata
|
|
5020
|
+
* 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.
|
|
5018
5021
|
*/
|
|
5019
5022
|
TimedMetadataInsertion?: TimedMetadataInsertion;
|
|
5020
5023
|
}
|
|
@@ -5094,7 +5097,7 @@ export interface JobTemplate {
|
|
|
5094
5097
|
*/
|
|
5095
5098
|
export interface PresetSettings {
|
|
5096
5099
|
/**
|
|
5097
|
-
*
|
|
5100
|
+
* Contains groups of audio encoding settings organized by audio codec. Include one instance of per output. Can contain multiple groups of encoding settings.
|
|
5098
5101
|
*/
|
|
5099
5102
|
AudioDescriptions?: AudioDescription[];
|
|
5100
5103
|
/**
|