@aws-sdk/client-mediaconvert 3.282.0 → 3.284.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/models/models_0.js +1 -0
- package/dist-cjs/models/models_1.js +1 -0
- package/dist-es/models/models_0.js +1 -0
- package/dist-es/models/models_1.js +1 -0
- package/dist-types/models/models_0.d.ts +7 -4
- package/dist-types/models/models_1.d.ts +10 -4
- package/dist-types/ts3.4/models/models_0.d.ts +1 -0
- package/dist-types/ts3.4/models/models_1.d.ts +1 -0
- package/package.json +1 -1
|
@@ -858,6 +858,7 @@ var ColorSpace;
|
|
|
858
858
|
ColorSpace["FOLLOW"] = "FOLLOW";
|
|
859
859
|
ColorSpace["HDR10"] = "HDR10";
|
|
860
860
|
ColorSpace["HLG_2020"] = "HLG_2020";
|
|
861
|
+
ColorSpace["P3D65_HDR"] = "P3D65_HDR";
|
|
861
862
|
ColorSpace["P3D65_SDR"] = "P3D65_SDR";
|
|
862
863
|
ColorSpace["P3DCI"] = "P3DCI";
|
|
863
864
|
ColorSpace["REC_601"] = "REC_601";
|
|
@@ -1059,6 +1059,7 @@ var ColorSpaceConversion;
|
|
|
1059
1059
|
ColorSpaceConversion["FORCE_709"] = "FORCE_709";
|
|
1060
1060
|
ColorSpaceConversion["FORCE_HDR10"] = "FORCE_HDR10";
|
|
1061
1061
|
ColorSpaceConversion["FORCE_HLG_2020"] = "FORCE_HLG_2020";
|
|
1062
|
+
ColorSpaceConversion["FORCE_P3D65_HDR"] = "FORCE_P3D65_HDR";
|
|
1062
1063
|
ColorSpaceConversion["FORCE_P3D65_SDR"] = "FORCE_P3D65_SDR";
|
|
1063
1064
|
ColorSpaceConversion["FORCE_P3DCI"] = "FORCE_P3DCI";
|
|
1064
1065
|
ColorSpaceConversion["NONE"] = "NONE";
|
|
@@ -850,6 +850,7 @@ export var ColorSpace;
|
|
|
850
850
|
ColorSpace["FOLLOW"] = "FOLLOW";
|
|
851
851
|
ColorSpace["HDR10"] = "HDR10";
|
|
852
852
|
ColorSpace["HLG_2020"] = "HLG_2020";
|
|
853
|
+
ColorSpace["P3D65_HDR"] = "P3D65_HDR";
|
|
853
854
|
ColorSpace["P3D65_SDR"] = "P3D65_SDR";
|
|
854
855
|
ColorSpace["P3DCI"] = "P3DCI";
|
|
855
856
|
ColorSpace["REC_601"] = "REC_601";
|
|
@@ -1051,6 +1051,7 @@ export var ColorSpaceConversion;
|
|
|
1051
1051
|
ColorSpaceConversion["FORCE_709"] = "FORCE_709";
|
|
1052
1052
|
ColorSpaceConversion["FORCE_HDR10"] = "FORCE_HDR10";
|
|
1053
1053
|
ColorSpaceConversion["FORCE_HLG_2020"] = "FORCE_HLG_2020";
|
|
1054
|
+
ColorSpaceConversion["FORCE_P3D65_HDR"] = "FORCE_P3D65_HDR";
|
|
1054
1055
|
ColorSpaceConversion["FORCE_P3D65_SDR"] = "FORCE_P3D65_SDR";
|
|
1055
1056
|
ColorSpaceConversion["FORCE_P3DCI"] = "FORCE_P3DCI";
|
|
1056
1057
|
ColorSpaceConversion["NONE"] = "NONE";
|
|
@@ -2223,6 +2223,7 @@ export declare enum ColorSpace {
|
|
|
2223
2223
|
FOLLOW = "FOLLOW",
|
|
2224
2224
|
HDR10 = "HDR10",
|
|
2225
2225
|
HLG_2020 = "HLG_2020",
|
|
2226
|
+
P3D65_HDR = "P3D65_HDR",
|
|
2226
2227
|
P3D65_SDR = "P3D65_SDR",
|
|
2227
2228
|
P3DCI = "P3DCI",
|
|
2228
2229
|
REC_601 = "REC_601",
|
|
@@ -2314,10 +2315,12 @@ export interface VideoSelector {
|
|
|
2314
2315
|
*/
|
|
2315
2316
|
AlphaBehavior?: AlphaBehavior | string;
|
|
2316
2317
|
/**
|
|
2317
|
-
* If your input video has accurate color space metadata, or if you don't know about color space
|
|
2318
|
-
* *
|
|
2319
|
-
* *
|
|
2320
|
-
* *
|
|
2318
|
+
* If your input video has accurate color space metadata, or if you don't know about color space: Keep the default value, Follow. MediaConvert will automatically detect your input color space. If your input video has metadata indicating the wrong color space, or has missing metadata: Specify the accurate color space here. If your input video is HDR 10 and the SMPTE ST 2086 Mastering Display Color Volume static metadata isn't present in your video stream, or if that metadata is present but not accurate: Choose Force HDR 10. Specify correct values in the input HDR 10 metadata settings. For more information about HDR jobs, see https://docs.aws.amazon.com/console/mediaconvert/hdr. When you specify an input color space, MediaConvert uses the following color space metadata, which includes color primaries, transfer characteristics, and matrix coefficients:
|
|
2319
|
+
* * HDR 10: BT.2020, PQ, BT.2020 non-constant
|
|
2320
|
+
* * HLG 2020: BT.2020, HLG, BT.2020 non-constant
|
|
2321
|
+
* * P3DCI (Theater): DCIP3, SMPTE 428M, BT.709
|
|
2322
|
+
* * P3D65 (SDR): Display P3, sRGB, BT.709
|
|
2323
|
+
* * P3D65 (HDR): Display P3, PQ, BT.709
|
|
2321
2324
|
*/
|
|
2322
2325
|
ColorSpace?: ColorSpace | string;
|
|
2323
2326
|
/**
|
|
@@ -935,7 +935,7 @@ export declare enum BandwidthReductionFilterStrength {
|
|
|
935
935
|
OFF = "OFF"
|
|
936
936
|
}
|
|
937
937
|
/**
|
|
938
|
-
* The Bandwidth reduction filter increases the video quality of your output relative to its bitrate. Use to lower the bitrate of your constant quality QVBR output, with little or no perceptual decrease in quality. Or, use to increase the video quality of outputs with other rate control modes relative to the bitrate that you specify. Bandwidth reduction increases further when your input is low quality or noisy.Outputs that use this feature incur pro-tier pricing.When you include Bandwidth reduction filter, you cannot include the Noise reducer preprocessor.
|
|
938
|
+
* The Bandwidth reduction filter increases the video quality of your output relative to its bitrate. Use to lower the bitrate of your constant quality QVBR output, with little or no perceptual decrease in quality. Or, use to increase the video quality of outputs with other rate control modes relative to the bitrate that you specify. Bandwidth reduction increases further when your input is low quality or noisy. Outputs that use this feature incur pro-tier pricing. When you include Bandwidth reduction filter, you cannot include the Noise reducer preprocessor.
|
|
939
939
|
*/
|
|
940
940
|
export interface BandwidthReductionFilter {
|
|
941
941
|
/**
|
|
@@ -943,7 +943,7 @@ export interface BandwidthReductionFilter {
|
|
|
943
943
|
*/
|
|
944
944
|
Sharpening?: BandwidthReductionFilterSharpening | string;
|
|
945
945
|
/**
|
|
946
|
-
* Specify the strength of the Bandwidth reduction filter. For most workflows, we recommend that you choose Auto
|
|
946
|
+
* Specify the strength of the Bandwidth reduction filter. For most workflows, we recommend that you choose Auto to reduce the bandwidth of your output with little to no perceptual decrease in video quality. For high quality and high bitrate outputs, choose Low. For the most bandwidth reduction, choose High. We recommend that you choose High for low bitrate outputs. Note that High may incur a slight increase in the softness of your output.
|
|
947
947
|
*/
|
|
948
948
|
Strength?: BandwidthReductionFilterStrength | string;
|
|
949
949
|
}
|
|
@@ -1094,7 +1094,7 @@ export interface H264Settings {
|
|
|
1094
1094
|
*/
|
|
1095
1095
|
AdaptiveQuantization?: H264AdaptiveQuantization | string;
|
|
1096
1096
|
/**
|
|
1097
|
-
* The Bandwidth reduction filter increases the video quality of your output relative to its bitrate. Use to lower the bitrate of your constant quality QVBR output, with little or no perceptual decrease in quality. Or, use to increase the video quality of outputs with other rate control modes relative to the bitrate that you specify. Bandwidth reduction increases further when your input is low quality or noisy.Outputs that use this feature incur pro-tier pricing.When you include Bandwidth reduction filter, you cannot include the Noise reducer preprocessor.
|
|
1097
|
+
* The Bandwidth reduction filter increases the video quality of your output relative to its bitrate. Use to lower the bitrate of your constant quality QVBR output, with little or no perceptual decrease in quality. Or, use to increase the video quality of outputs with other rate control modes relative to the bitrate that you specify. Bandwidth reduction increases further when your input is low quality or noisy. Outputs that use this feature incur pro-tier pricing. When you include Bandwidth reduction filter, you cannot include the Noise reducer preprocessor.
|
|
1098
1098
|
*/
|
|
1099
1099
|
BandwidthReductionFilter?: BandwidthReductionFilter;
|
|
1100
1100
|
/**
|
|
@@ -2503,6 +2503,7 @@ export declare enum ColorSpaceConversion {
|
|
|
2503
2503
|
FORCE_709 = "FORCE_709",
|
|
2504
2504
|
FORCE_HDR10 = "FORCE_HDR10",
|
|
2505
2505
|
FORCE_HLG_2020 = "FORCE_HLG_2020",
|
|
2506
|
+
FORCE_P3D65_HDR = "FORCE_P3D65_HDR",
|
|
2506
2507
|
FORCE_P3D65_SDR = "FORCE_P3D65_SDR",
|
|
2507
2508
|
FORCE_P3DCI = "FORCE_P3DCI",
|
|
2508
2509
|
NONE = "NONE"
|
|
@@ -2529,7 +2530,12 @@ export interface ColorCorrector {
|
|
|
2529
2530
|
*/
|
|
2530
2531
|
ClipLimits?: ClipLimits;
|
|
2531
2532
|
/**
|
|
2532
|
-
* Specify the color space you want for this output. The service supports conversion between HDR formats, between SDR formats, from SDR to HDR, and from HDR to SDR. SDR to HDR conversion doesn't upgrade the dynamic range. The converted video has an HDR format, but visually appears the same as an unconverted output. HDR to SDR conversion uses
|
|
2533
|
+
* Specify the color space you want for this output. The service supports conversion between HDR formats, between SDR formats, from SDR to HDR, and from HDR to SDR. SDR to HDR conversion doesn't upgrade the dynamic range. The converted video has an HDR format, but visually appears the same as an unconverted output. HDR to SDR conversion uses tone mapping to approximate the outcome of manually regrading from HDR to SDR. When you specify an output color space, MediaConvert uses the following color space metadata, which includes color primaries, transfer characteristics, and matrix coefficients:
|
|
2534
|
+
* * HDR 10: BT.2020, PQ, BT.2020 non-constant
|
|
2535
|
+
* * HLG 2020: BT.2020, HLG, BT.2020 non-constant
|
|
2536
|
+
* * P3DCI (Theater): DCIP3, SMPTE 428M, BT.709
|
|
2537
|
+
* * P3D65 (SDR): Display P3, sRGB, BT.709
|
|
2538
|
+
* * P3D65 (HDR): Display P3, PQ, BT.709
|
|
2533
2539
|
*/
|
|
2534
2540
|
ColorSpaceConversion?: ColorSpaceConversion | string;
|
|
2535
2541
|
/**
|
|
@@ -1343,6 +1343,7 @@ export declare enum ColorSpaceConversion {
|
|
|
1343
1343
|
FORCE_709 = "FORCE_709",
|
|
1344
1344
|
FORCE_HDR10 = "FORCE_HDR10",
|
|
1345
1345
|
FORCE_HLG_2020 = "FORCE_HLG_2020",
|
|
1346
|
+
FORCE_P3D65_HDR = "FORCE_P3D65_HDR",
|
|
1346
1347
|
FORCE_P3D65_SDR = "FORCE_P3D65_SDR",
|
|
1347
1348
|
FORCE_P3DCI = "FORCE_P3DCI",
|
|
1348
1349
|
NONE = "NONE",
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-mediaconvert",
|
|
3
3
|
"description": "AWS SDK for JavaScript Mediaconvert Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.284.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|