@aws-sdk/client-mediaconvert 3.913.0 → 3.916.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/README.md +16 -0
- package/dist-cjs/endpoint/ruleset.js +1 -1
- package/dist-cjs/index.js +178 -0
- package/dist-es/MediaConvert.js +4 -0
- package/dist-es/commands/GetJobsQueryResultsCommand.js +22 -0
- package/dist-es/commands/StartJobsQueryCommand.js +22 -0
- package/dist-es/commands/index.js +2 -0
- package/dist-es/endpoint/ruleset.js +1 -1
- package/dist-es/models/models_0.js +1 -0
- package/dist-es/models/models_2.js +32 -0
- package/dist-es/protocols/Aws_restJson1.js +105 -1
- package/dist-types/MediaConvert.d.ts +15 -0
- package/dist-types/MediaConvertClient.d.ts +4 -2
- package/dist-types/commands/AssociateCertificateCommand.d.ts +3 -0
- package/dist-types/commands/CancelJobCommand.d.ts +3 -0
- package/dist-types/commands/CreateJobCommand.d.ts +17 -10
- package/dist-types/commands/CreateJobTemplateCommand.d.ts +13 -10
- package/dist-types/commands/CreatePresetCommand.d.ts +13 -10
- package/dist-types/commands/CreateQueueCommand.d.ts +3 -0
- package/dist-types/commands/CreateResourceShareCommand.d.ts +3 -0
- package/dist-types/commands/DeleteJobTemplateCommand.d.ts +3 -0
- package/dist-types/commands/DeletePolicyCommand.d.ts +3 -0
- package/dist-types/commands/DeletePresetCommand.d.ts +3 -0
- package/dist-types/commands/DeleteQueueCommand.d.ts +3 -0
- package/dist-types/commands/DescribeEndpointsCommand.d.ts +3 -0
- package/dist-types/commands/DisassociateCertificateCommand.d.ts +3 -0
- package/dist-types/commands/GetJobCommand.d.ts +10 -5
- package/dist-types/commands/GetJobTemplateCommand.d.ts +8 -5
- package/dist-types/commands/GetJobsQueryResultsCommand.d.ts +1727 -0
- package/dist-types/commands/GetPolicyCommand.d.ts +3 -0
- package/dist-types/commands/GetPresetCommand.d.ts +8 -5
- package/dist-types/commands/GetQueueCommand.d.ts +3 -0
- package/dist-types/commands/ListJobTemplatesCommand.d.ts +8 -5
- package/dist-types/commands/ListJobsCommand.d.ts +10 -5
- package/dist-types/commands/ListPresetsCommand.d.ts +8 -5
- package/dist-types/commands/ListQueuesCommand.d.ts +3 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +3 -0
- package/dist-types/commands/ListVersionsCommand.d.ts +3 -0
- package/dist-types/commands/ProbeCommand.d.ts +20 -1
- package/dist-types/commands/PutPolicyCommand.d.ts +3 -0
- package/dist-types/commands/SearchJobsCommand.d.ts +10 -5
- package/dist-types/commands/StartJobsQueryCommand.d.ts +105 -0
- package/dist-types/commands/TagResourceCommand.d.ts +3 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +3 -0
- package/dist-types/commands/UpdateJobTemplateCommand.d.ts +13 -10
- package/dist-types/commands/UpdatePresetCommand.d.ts +13 -10
- package/dist-types/commands/UpdateQueueCommand.d.ts +3 -0
- package/dist-types/commands/index.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +21 -10
- package/dist-types/models/models_1.d.ts +8 -8
- package/dist-types/models/models_2.d.ts +205 -11
- package/dist-types/protocols/Aws_restJson1.d.ts +18 -0
- package/dist-types/ts3.4/MediaConvert.d.ts +35 -0
- package/dist-types/ts3.4/MediaConvertClient.d.ts +12 -0
- package/dist-types/ts3.4/commands/GetJobsQueryResultsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/StartJobsQueryCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/index.d.ts +2 -0
- package/dist-types/ts3.4/models/models_0.d.ts +3 -0
- package/dist-types/ts3.4/models/models_2.d.ts +65 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +24 -0
- package/package.json +33 -33
|
@@ -697,7 +697,7 @@ declare const UpdateJobTemplateCommand_base: {
|
|
|
697
697
|
* ManifestEncoding: "UTF8" || "UTF16",
|
|
698
698
|
* },
|
|
699
699
|
* PerFrameMetrics: [ // __listOfFrameMetricType
|
|
700
|
-
* "PSNR" || "SSIM" || "MS_SSIM" || "PSNR_HVS" || "VMAF" || "QVBR",
|
|
700
|
+
* "PSNR" || "SSIM" || "MS_SSIM" || "PSNR_HVS" || "VMAF" || "QVBR" || "SHOT_CHANGE",
|
|
701
701
|
* ],
|
|
702
702
|
* Type: "HLS_GROUP_SETTINGS" || "DASH_ISO_GROUP_SETTINGS" || "FILE_GROUP_SETTINGS" || "MS_SMOOTH_GROUP_SETTINGS" || "CMAF_GROUP_SETTINGS",
|
|
703
703
|
* },
|
|
@@ -1136,7 +1136,7 @@ declare const UpdateJobTemplateCommand_base: {
|
|
|
1136
1136
|
* MaxBitrate: Number("int"),
|
|
1137
1137
|
* NumberBFramesBetweenReferenceFrames: Number("int"),
|
|
1138
1138
|
* PerFrameMetrics: [
|
|
1139
|
-
* "PSNR" || "SSIM" || "MS_SSIM" || "PSNR_HVS" || "VMAF" || "QVBR",
|
|
1139
|
+
* "PSNR" || "SSIM" || "MS_SSIM" || "PSNR_HVS" || "VMAF" || "QVBR" || "SHOT_CHANGE",
|
|
1140
1140
|
* ],
|
|
1141
1141
|
* QvbrSettings: { // Av1QvbrSettings
|
|
1142
1142
|
* QvbrQualityLevel: Number("int"),
|
|
@@ -1157,7 +1157,7 @@ declare const UpdateJobTemplateCommand_base: {
|
|
|
1157
1157
|
* FramerateNumerator: Number("int"),
|
|
1158
1158
|
* InterlaceMode: "PROGRESSIVE" || "TOP_FIELD" || "BOTTOM_FIELD" || "FOLLOW_TOP_FIELD" || "FOLLOW_BOTTOM_FIELD",
|
|
1159
1159
|
* PerFrameMetrics: [
|
|
1160
|
-
* "PSNR" || "SSIM" || "MS_SSIM" || "PSNR_HVS" || "VMAF" || "QVBR",
|
|
1160
|
+
* "PSNR" || "SSIM" || "MS_SSIM" || "PSNR_HVS" || "VMAF" || "QVBR" || "SHOT_CHANGE",
|
|
1161
1161
|
* ],
|
|
1162
1162
|
* ScanTypeConversionMode: "INTERLACED" || "INTERLACED_OPTIMIZE",
|
|
1163
1163
|
* SlowPal: "DISABLED" || "ENABLED",
|
|
@@ -1210,7 +1210,7 @@ declare const UpdateJobTemplateCommand_base: {
|
|
|
1210
1210
|
* ParDenominator: Number("int"),
|
|
1211
1211
|
* ParNumerator: Number("int"),
|
|
1212
1212
|
* PerFrameMetrics: [
|
|
1213
|
-
* "PSNR" || "SSIM" || "MS_SSIM" || "PSNR_HVS" || "VMAF" || "QVBR",
|
|
1213
|
+
* "PSNR" || "SSIM" || "MS_SSIM" || "PSNR_HVS" || "VMAF" || "QVBR" || "SHOT_CHANGE",
|
|
1214
1214
|
* ],
|
|
1215
1215
|
* QualityTuningLevel: "SINGLE_PASS" || "SINGLE_PASS_HQ" || "MULTI_PASS_HQ",
|
|
1216
1216
|
* QvbrSettings: { // H264QvbrSettings
|
|
@@ -1267,7 +1267,7 @@ declare const UpdateJobTemplateCommand_base: {
|
|
|
1267
1267
|
* ParDenominator: Number("int"),
|
|
1268
1268
|
* ParNumerator: Number("int"),
|
|
1269
1269
|
* PerFrameMetrics: [
|
|
1270
|
-
* "PSNR" || "SSIM" || "MS_SSIM" || "PSNR_HVS" || "VMAF" || "QVBR",
|
|
1270
|
+
* "PSNR" || "SSIM" || "MS_SSIM" || "PSNR_HVS" || "VMAF" || "QVBR" || "SHOT_CHANGE",
|
|
1271
1271
|
* ],
|
|
1272
1272
|
* QualityTuningLevel: "SINGLE_PASS" || "SINGLE_PASS_HQ" || "MULTI_PASS_HQ",
|
|
1273
1273
|
* QvbrSettings: { // H265QvbrSettings
|
|
@@ -2249,7 +2249,7 @@ declare const UpdateJobTemplateCommand_base: {
|
|
|
2249
2249
|
* // ManifestEncoding: "UTF8" || "UTF16",
|
|
2250
2250
|
* // },
|
|
2251
2251
|
* // PerFrameMetrics: [ // __listOfFrameMetricType
|
|
2252
|
-
* // "PSNR" || "SSIM" || "MS_SSIM" || "PSNR_HVS" || "VMAF" || "QVBR",
|
|
2252
|
+
* // "PSNR" || "SSIM" || "MS_SSIM" || "PSNR_HVS" || "VMAF" || "QVBR" || "SHOT_CHANGE",
|
|
2253
2253
|
* // ],
|
|
2254
2254
|
* // Type: "HLS_GROUP_SETTINGS" || "DASH_ISO_GROUP_SETTINGS" || "FILE_GROUP_SETTINGS" || "MS_SMOOTH_GROUP_SETTINGS" || "CMAF_GROUP_SETTINGS",
|
|
2255
2255
|
* // },
|
|
@@ -2688,7 +2688,7 @@ declare const UpdateJobTemplateCommand_base: {
|
|
|
2688
2688
|
* // MaxBitrate: Number("int"),
|
|
2689
2689
|
* // NumberBFramesBetweenReferenceFrames: Number("int"),
|
|
2690
2690
|
* // PerFrameMetrics: [
|
|
2691
|
-
* // "PSNR" || "SSIM" || "MS_SSIM" || "PSNR_HVS" || "VMAF" || "QVBR",
|
|
2691
|
+
* // "PSNR" || "SSIM" || "MS_SSIM" || "PSNR_HVS" || "VMAF" || "QVBR" || "SHOT_CHANGE",
|
|
2692
2692
|
* // ],
|
|
2693
2693
|
* // QvbrSettings: { // Av1QvbrSettings
|
|
2694
2694
|
* // QvbrQualityLevel: Number("int"),
|
|
@@ -2709,7 +2709,7 @@ declare const UpdateJobTemplateCommand_base: {
|
|
|
2709
2709
|
* // FramerateNumerator: Number("int"),
|
|
2710
2710
|
* // InterlaceMode: "PROGRESSIVE" || "TOP_FIELD" || "BOTTOM_FIELD" || "FOLLOW_TOP_FIELD" || "FOLLOW_BOTTOM_FIELD",
|
|
2711
2711
|
* // PerFrameMetrics: [
|
|
2712
|
-
* // "PSNR" || "SSIM" || "MS_SSIM" || "PSNR_HVS" || "VMAF" || "QVBR",
|
|
2712
|
+
* // "PSNR" || "SSIM" || "MS_SSIM" || "PSNR_HVS" || "VMAF" || "QVBR" || "SHOT_CHANGE",
|
|
2713
2713
|
* // ],
|
|
2714
2714
|
* // ScanTypeConversionMode: "INTERLACED" || "INTERLACED_OPTIMIZE",
|
|
2715
2715
|
* // SlowPal: "DISABLED" || "ENABLED",
|
|
@@ -2762,7 +2762,7 @@ declare const UpdateJobTemplateCommand_base: {
|
|
|
2762
2762
|
* // ParDenominator: Number("int"),
|
|
2763
2763
|
* // ParNumerator: Number("int"),
|
|
2764
2764
|
* // PerFrameMetrics: [
|
|
2765
|
-
* // "PSNR" || "SSIM" || "MS_SSIM" || "PSNR_HVS" || "VMAF" || "QVBR",
|
|
2765
|
+
* // "PSNR" || "SSIM" || "MS_SSIM" || "PSNR_HVS" || "VMAF" || "QVBR" || "SHOT_CHANGE",
|
|
2766
2766
|
* // ],
|
|
2767
2767
|
* // QualityTuningLevel: "SINGLE_PASS" || "SINGLE_PASS_HQ" || "MULTI_PASS_HQ",
|
|
2768
2768
|
* // QvbrSettings: { // H264QvbrSettings
|
|
@@ -2819,7 +2819,7 @@ declare const UpdateJobTemplateCommand_base: {
|
|
|
2819
2819
|
* // ParDenominator: Number("int"),
|
|
2820
2820
|
* // ParNumerator: Number("int"),
|
|
2821
2821
|
* // PerFrameMetrics: [
|
|
2822
|
-
* // "PSNR" || "SSIM" || "MS_SSIM" || "PSNR_HVS" || "VMAF" || "QVBR",
|
|
2822
|
+
* // "PSNR" || "SSIM" || "MS_SSIM" || "PSNR_HVS" || "VMAF" || "QVBR" || "SHOT_CHANGE",
|
|
2823
2823
|
* // ],
|
|
2824
2824
|
* // QualityTuningLevel: "SINGLE_PASS" || "SINGLE_PASS_HQ" || "MULTI_PASS_HQ",
|
|
2825
2825
|
* // QvbrSettings: { // H265QvbrSettings
|
|
@@ -3160,6 +3160,9 @@ declare const UpdateJobTemplateCommand_base: {
|
|
|
3160
3160
|
* @throws {@link NotFoundException} (client fault)
|
|
3161
3161
|
* The resource you requested doesn't exist.
|
|
3162
3162
|
*
|
|
3163
|
+
* @throws {@link ServiceQuotaExceededException} (client fault)
|
|
3164
|
+
* You attempted to create more resources than the service allows based on service quotas.
|
|
3165
|
+
*
|
|
3163
3166
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
3164
3167
|
* Too many requests have been sent in too short of a time. The service limits the rate at which it will accept requests.
|
|
3165
3168
|
*
|
|
@@ -459,7 +459,7 @@ declare const UpdatePresetCommand_base: {
|
|
|
459
459
|
* MaxBitrate: Number("int"),
|
|
460
460
|
* NumberBFramesBetweenReferenceFrames: Number("int"),
|
|
461
461
|
* PerFrameMetrics: [ // __listOfFrameMetricType
|
|
462
|
-
* "PSNR" || "SSIM" || "MS_SSIM" || "PSNR_HVS" || "VMAF" || "QVBR",
|
|
462
|
+
* "PSNR" || "SSIM" || "MS_SSIM" || "PSNR_HVS" || "VMAF" || "QVBR" || "SHOT_CHANGE",
|
|
463
463
|
* ],
|
|
464
464
|
* QvbrSettings: { // Av1QvbrSettings
|
|
465
465
|
* QvbrQualityLevel: Number("int"),
|
|
@@ -480,7 +480,7 @@ declare const UpdatePresetCommand_base: {
|
|
|
480
480
|
* FramerateNumerator: Number("int"),
|
|
481
481
|
* InterlaceMode: "PROGRESSIVE" || "TOP_FIELD" || "BOTTOM_FIELD" || "FOLLOW_TOP_FIELD" || "FOLLOW_BOTTOM_FIELD",
|
|
482
482
|
* PerFrameMetrics: [
|
|
483
|
-
* "PSNR" || "SSIM" || "MS_SSIM" || "PSNR_HVS" || "VMAF" || "QVBR",
|
|
483
|
+
* "PSNR" || "SSIM" || "MS_SSIM" || "PSNR_HVS" || "VMAF" || "QVBR" || "SHOT_CHANGE",
|
|
484
484
|
* ],
|
|
485
485
|
* ScanTypeConversionMode: "INTERLACED" || "INTERLACED_OPTIMIZE",
|
|
486
486
|
* SlowPal: "DISABLED" || "ENABLED",
|
|
@@ -533,7 +533,7 @@ declare const UpdatePresetCommand_base: {
|
|
|
533
533
|
* ParDenominator: Number("int"),
|
|
534
534
|
* ParNumerator: Number("int"),
|
|
535
535
|
* PerFrameMetrics: [
|
|
536
|
-
* "PSNR" || "SSIM" || "MS_SSIM" || "PSNR_HVS" || "VMAF" || "QVBR",
|
|
536
|
+
* "PSNR" || "SSIM" || "MS_SSIM" || "PSNR_HVS" || "VMAF" || "QVBR" || "SHOT_CHANGE",
|
|
537
537
|
* ],
|
|
538
538
|
* QualityTuningLevel: "SINGLE_PASS" || "SINGLE_PASS_HQ" || "MULTI_PASS_HQ",
|
|
539
539
|
* QvbrSettings: { // H264QvbrSettings
|
|
@@ -590,7 +590,7 @@ declare const UpdatePresetCommand_base: {
|
|
|
590
590
|
* ParDenominator: Number("int"),
|
|
591
591
|
* ParNumerator: Number("int"),
|
|
592
592
|
* PerFrameMetrics: [
|
|
593
|
-
* "PSNR" || "SSIM" || "MS_SSIM" || "PSNR_HVS" || "VMAF" || "QVBR",
|
|
593
|
+
* "PSNR" || "SSIM" || "MS_SSIM" || "PSNR_HVS" || "VMAF" || "QVBR" || "SHOT_CHANGE",
|
|
594
594
|
* ],
|
|
595
595
|
* QualityTuningLevel: "SINGLE_PASS" || "SINGLE_PASS_HQ" || "MULTI_PASS_HQ",
|
|
596
596
|
* QvbrSettings: { // H265QvbrSettings
|
|
@@ -637,7 +637,7 @@ declare const UpdatePresetCommand_base: {
|
|
|
637
637
|
* ParDenominator: Number("int"),
|
|
638
638
|
* ParNumerator: Number("int"),
|
|
639
639
|
* PerFrameMetrics: [
|
|
640
|
-
* "PSNR" || "SSIM" || "MS_SSIM" || "PSNR_HVS" || "VMAF" || "QVBR",
|
|
640
|
+
* "PSNR" || "SSIM" || "MS_SSIM" || "PSNR_HVS" || "VMAF" || "QVBR" || "SHOT_CHANGE",
|
|
641
641
|
* ],
|
|
642
642
|
* QualityTuningLevel: "SINGLE_PASS" || "MULTI_PASS",
|
|
643
643
|
* RateControlMode: "VBR" || "CBR",
|
|
@@ -1317,7 +1317,7 @@ declare const UpdatePresetCommand_base: {
|
|
|
1317
1317
|
* // MaxBitrate: Number("int"),
|
|
1318
1318
|
* // NumberBFramesBetweenReferenceFrames: Number("int"),
|
|
1319
1319
|
* // PerFrameMetrics: [ // __listOfFrameMetricType
|
|
1320
|
-
* // "PSNR" || "SSIM" || "MS_SSIM" || "PSNR_HVS" || "VMAF" || "QVBR",
|
|
1320
|
+
* // "PSNR" || "SSIM" || "MS_SSIM" || "PSNR_HVS" || "VMAF" || "QVBR" || "SHOT_CHANGE",
|
|
1321
1321
|
* // ],
|
|
1322
1322
|
* // QvbrSettings: { // Av1QvbrSettings
|
|
1323
1323
|
* // QvbrQualityLevel: Number("int"),
|
|
@@ -1338,7 +1338,7 @@ declare const UpdatePresetCommand_base: {
|
|
|
1338
1338
|
* // FramerateNumerator: Number("int"),
|
|
1339
1339
|
* // InterlaceMode: "PROGRESSIVE" || "TOP_FIELD" || "BOTTOM_FIELD" || "FOLLOW_TOP_FIELD" || "FOLLOW_BOTTOM_FIELD",
|
|
1340
1340
|
* // PerFrameMetrics: [
|
|
1341
|
-
* // "PSNR" || "SSIM" || "MS_SSIM" || "PSNR_HVS" || "VMAF" || "QVBR",
|
|
1341
|
+
* // "PSNR" || "SSIM" || "MS_SSIM" || "PSNR_HVS" || "VMAF" || "QVBR" || "SHOT_CHANGE",
|
|
1342
1342
|
* // ],
|
|
1343
1343
|
* // ScanTypeConversionMode: "INTERLACED" || "INTERLACED_OPTIMIZE",
|
|
1344
1344
|
* // SlowPal: "DISABLED" || "ENABLED",
|
|
@@ -1391,7 +1391,7 @@ declare const UpdatePresetCommand_base: {
|
|
|
1391
1391
|
* // ParDenominator: Number("int"),
|
|
1392
1392
|
* // ParNumerator: Number("int"),
|
|
1393
1393
|
* // PerFrameMetrics: [
|
|
1394
|
-
* // "PSNR" || "SSIM" || "MS_SSIM" || "PSNR_HVS" || "VMAF" || "QVBR",
|
|
1394
|
+
* // "PSNR" || "SSIM" || "MS_SSIM" || "PSNR_HVS" || "VMAF" || "QVBR" || "SHOT_CHANGE",
|
|
1395
1395
|
* // ],
|
|
1396
1396
|
* // QualityTuningLevel: "SINGLE_PASS" || "SINGLE_PASS_HQ" || "MULTI_PASS_HQ",
|
|
1397
1397
|
* // QvbrSettings: { // H264QvbrSettings
|
|
@@ -1448,7 +1448,7 @@ declare const UpdatePresetCommand_base: {
|
|
|
1448
1448
|
* // ParDenominator: Number("int"),
|
|
1449
1449
|
* // ParNumerator: Number("int"),
|
|
1450
1450
|
* // PerFrameMetrics: [
|
|
1451
|
-
* // "PSNR" || "SSIM" || "MS_SSIM" || "PSNR_HVS" || "VMAF" || "QVBR",
|
|
1451
|
+
* // "PSNR" || "SSIM" || "MS_SSIM" || "PSNR_HVS" || "VMAF" || "QVBR" || "SHOT_CHANGE",
|
|
1452
1452
|
* // ],
|
|
1453
1453
|
* // QualityTuningLevel: "SINGLE_PASS" || "SINGLE_PASS_HQ" || "MULTI_PASS_HQ",
|
|
1454
1454
|
* // QvbrSettings: { // H265QvbrSettings
|
|
@@ -1495,7 +1495,7 @@ declare const UpdatePresetCommand_base: {
|
|
|
1495
1495
|
* // ParDenominator: Number("int"),
|
|
1496
1496
|
* // ParNumerator: Number("int"),
|
|
1497
1497
|
* // PerFrameMetrics: [
|
|
1498
|
-
* // "PSNR" || "SSIM" || "MS_SSIM" || "PSNR_HVS" || "VMAF" || "QVBR",
|
|
1498
|
+
* // "PSNR" || "SSIM" || "MS_SSIM" || "PSNR_HVS" || "VMAF" || "QVBR" || "SHOT_CHANGE",
|
|
1499
1499
|
* // ],
|
|
1500
1500
|
* // QualityTuningLevel: "SINGLE_PASS" || "MULTI_PASS",
|
|
1501
1501
|
* // RateControlMode: "VBR" || "CBR",
|
|
@@ -1772,6 +1772,9 @@ declare const UpdatePresetCommand_base: {
|
|
|
1772
1772
|
* @throws {@link NotFoundException} (client fault)
|
|
1773
1773
|
* The resource you requested doesn't exist.
|
|
1774
1774
|
*
|
|
1775
|
+
* @throws {@link ServiceQuotaExceededException} (client fault)
|
|
1776
|
+
* You attempted to create more resources than the service allows based on service quotas.
|
|
1777
|
+
*
|
|
1775
1778
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
1776
1779
|
* Too many requests have been sent in too short of a time. The service limits the rate at which it will accept requests.
|
|
1777
1780
|
*
|
|
@@ -104,6 +104,9 @@ declare const UpdateQueueCommand_base: {
|
|
|
104
104
|
* @throws {@link NotFoundException} (client fault)
|
|
105
105
|
* The resource you requested doesn't exist.
|
|
106
106
|
*
|
|
107
|
+
* @throws {@link ServiceQuotaExceededException} (client fault)
|
|
108
|
+
* You attempted to create more resources than the service allows based on service quotas.
|
|
109
|
+
*
|
|
107
110
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
108
111
|
* Too many requests have been sent in too short of a time. The service limits the rate at which it will accept requests.
|
|
109
112
|
*
|
|
@@ -13,6 +13,7 @@ export * from "./DescribeEndpointsCommand";
|
|
|
13
13
|
export * from "./DisassociateCertificateCommand";
|
|
14
14
|
export * from "./GetJobCommand";
|
|
15
15
|
export * from "./GetJobTemplateCommand";
|
|
16
|
+
export * from "./GetJobsQueryResultsCommand";
|
|
16
17
|
export * from "./GetPolicyCommand";
|
|
17
18
|
export * from "./GetPresetCommand";
|
|
18
19
|
export * from "./GetQueueCommand";
|
|
@@ -25,6 +26,7 @@ export * from "./ListVersionsCommand";
|
|
|
25
26
|
export * from "./ProbeCommand";
|
|
26
27
|
export * from "./PutPolicyCommand";
|
|
27
28
|
export * from "./SearchJobsCommand";
|
|
29
|
+
export * from "./StartJobsQueryCommand";
|
|
28
30
|
export * from "./TagResourceCommand";
|
|
29
31
|
export * from "./UntagResourceCommand";
|
|
30
32
|
export * from "./UpdateJobTemplateCommand";
|
|
@@ -1639,7 +1639,7 @@ export interface AudioDescription {
|
|
|
1639
1639
|
*/
|
|
1640
1640
|
CustomLanguageCode?: string | undefined;
|
|
1641
1641
|
/**
|
|
1642
|
-
*
|
|
1642
|
+
* Specify the language for your output audio track. To follow the input language: Leave blank. When you do, also set Language code control to Follow input. If no input language is detected MediaConvert will not write an output language code. To follow the input langauge, but fall back to a specified language code if there is no input language to follow: Enter an ISO 639-2 three-letter language code in all capital letters. When you do, also set Language code control to Follow input. To specify the language code: Enter an ISO 639 three-letter language code in all capital letters. When you do, also set Language code control to Use configured.
|
|
1643
1643
|
* @public
|
|
1644
1644
|
*/
|
|
1645
1645
|
LanguageCode?: LanguageCode | undefined;
|
|
@@ -2430,7 +2430,7 @@ export type ImscStylePassthrough = (typeof ImscStylePassthrough)[keyof typeof Im
|
|
|
2430
2430
|
*/
|
|
2431
2431
|
export interface ImscDestinationSettings {
|
|
2432
2432
|
/**
|
|
2433
|
-
* If the IMSC captions track is intended to provide accessibility for people who are deaf or hard of hearing: Set Accessibility subtitles to Enabled. When you do, MediaConvert adds accessibility attributes to your output HLS or DASH manifest. For HLS manifests, MediaConvert adds the following accessibility attributes under EXT-X-MEDIA for this track: CHARACTERISTICS="public.accessibility.
|
|
2433
|
+
* If the IMSC captions track is intended to provide accessibility for people who are deaf or hard of hearing: Set Accessibility subtitles to Enabled. When you do, MediaConvert adds accessibility attributes to your output HLS or DASH manifest. For HLS manifests, MediaConvert adds the following accessibility attributes under EXT-X-MEDIA for this track: CHARACTERISTICS="public.accessibility.transcribes-spoken-dialog,public.accessibility.describes-music-and-sound" and AUTOSELECT="YES". For DASH manifests, MediaConvert adds the following in the adaptation set for this track: <Accessibility schemeIdUri="urn:mpeg:dash:role:2011" value="caption"/>. If the captions track is not intended to provide such accessibility: Keep the default value, Disabled. When you do, for DASH manifests, MediaConvert instead adds the following in the adaptation set for this track: <Role schemeIDUri="urn:mpeg:dash:role:2011" value="subtitle"/>.
|
|
2434
2434
|
* @public
|
|
2435
2435
|
*/
|
|
2436
2436
|
Accessibility?: ImscAccessibilitySubs | undefined;
|
|
@@ -2575,7 +2575,7 @@ export type WebvttStylePassthrough = (typeof WebvttStylePassthrough)[keyof typeo
|
|
|
2575
2575
|
*/
|
|
2576
2576
|
export interface WebvttDestinationSettings {
|
|
2577
2577
|
/**
|
|
2578
|
-
* If the WebVTT captions track is intended to provide accessibility for people who are deaf or hard of hearing: Set Accessibility subtitles to Enabled. When you do, MediaConvert adds accessibility attributes to your output HLS or DASH manifest. For HLS manifests, MediaConvert adds the following accessibility attributes under EXT-X-MEDIA for this track: CHARACTERISTICS="public.accessibility.
|
|
2578
|
+
* If the WebVTT captions track is intended to provide accessibility for people who are deaf or hard of hearing: Set Accessibility subtitles to Enabled. When you do, MediaConvert adds accessibility attributes to your output HLS or DASH manifest. For HLS manifests, MediaConvert adds the following accessibility attributes under EXT-X-MEDIA for this track: CHARACTERISTICS="public.accessibility.transcribes-spoken-dialog,public.accessibility.describes-music-and-sound" and AUTOSELECT="YES". For DASH manifests, MediaConvert adds the following in the adaptation set for this track: <Accessibility schemeIdUri="urn:mpeg:dash:role:2011" value="caption"/>. If the captions track is not intended to provide such accessibility: Keep the default value, Disabled. When you do, for DASH manifests, MediaConvert instead adds the following in the adaptation set for this track: <Role schemeIDUri="urn:mpeg:dash:role:2011" value="subtitle"/>.
|
|
2579
2579
|
* @public
|
|
2580
2580
|
*/
|
|
2581
2581
|
Accessibility?: WebvttAccessibilitySubs | undefined;
|
|
@@ -2799,6 +2799,7 @@ export declare const FrameMetricType: {
|
|
|
2799
2799
|
readonly PSNR: "PSNR";
|
|
2800
2800
|
readonly PSNR_HVS: "PSNR_HVS";
|
|
2801
2801
|
readonly QVBR: "QVBR";
|
|
2802
|
+
readonly SHOT_CHANGE: "SHOT_CHANGE";
|
|
2802
2803
|
readonly SSIM: "SSIM";
|
|
2803
2804
|
readonly VMAF: "VMAF";
|
|
2804
2805
|
};
|
|
@@ -2845,12 +2846,12 @@ export interface HlsCaptionLanguageMapping {
|
|
|
2845
2846
|
*/
|
|
2846
2847
|
CaptionChannel?: number | undefined;
|
|
2847
2848
|
/**
|
|
2848
|
-
* Specify the language
|
|
2849
|
+
* Specify the language, using an ISO 639-2 three-letter code in all capital letters. You can find a list of codes at: https://www.loc.gov/standards/iso639-2/php/code_list.php
|
|
2849
2850
|
* @public
|
|
2850
2851
|
*/
|
|
2851
2852
|
CustomLanguageCode?: string | undefined;
|
|
2852
2853
|
/**
|
|
2853
|
-
* Specify the language, using
|
|
2854
|
+
* Specify the language, using an ISO 639-2 three-letter code in all capital letters. You can find a list of codes at: https://www.loc.gov/standards/iso639-2/php/code_list.php
|
|
2854
2855
|
* @public
|
|
2855
2856
|
*/
|
|
2856
2857
|
LanguageCode?: LanguageCode | undefined;
|
|
@@ -2999,7 +3000,7 @@ export interface HlsRenditionGroupSettings {
|
|
|
2999
3000
|
*/
|
|
3000
3001
|
RenditionGroupId?: string | undefined;
|
|
3001
3002
|
/**
|
|
3002
|
-
*
|
|
3003
|
+
* Optionally specify the language, using an ISO 639-2 or ISO 639-3 three-letter code in all capital letters. You can find a list of codes at: https://www.loc.gov/standards/iso639-2/php/code_list.php
|
|
3003
3004
|
* @public
|
|
3004
3005
|
*/
|
|
3005
3006
|
RenditionLanguageCode?: LanguageCode | undefined;
|
|
@@ -3055,7 +3056,7 @@ export interface AudioSelector {
|
|
|
3055
3056
|
*/
|
|
3056
3057
|
HlsRenditionGroupSettings?: HlsRenditionGroupSettings | undefined;
|
|
3057
3058
|
/**
|
|
3058
|
-
* Specify the language
|
|
3059
|
+
* Specify the language, using an ISO 639-2 three-letter code in all capital letters. You can find a list of codes at: https://www.loc.gov/standards/iso639-2/php/code_list.php
|
|
3059
3060
|
* @public
|
|
3060
3061
|
*/
|
|
3061
3062
|
LanguageCode?: LanguageCode | undefined;
|
|
@@ -3082,7 +3083,7 @@ export interface AudioSelector {
|
|
|
3082
3083
|
*/
|
|
3083
3084
|
RemixSettings?: RemixSettings | undefined;
|
|
3084
3085
|
/**
|
|
3085
|
-
* Specify how MediaConvert selects audio content within your input. The default is Track. PID: Select audio by specifying the Packet Identifier (PID) values for MPEG Transport Stream inputs. Use this when you know the exact PID values of your audio streams. Track: Default. Select audio by track number. This is the most common option and works with most input container formats. Language code: Select audio by language using ISO 639-2 or ISO 639-3 three-letter
|
|
3086
|
+
* Specify how MediaConvert selects audio content within your input. The default is Track. PID: Select audio by specifying the Packet Identifier (PID) values for MPEG Transport Stream inputs. Use this when you know the exact PID values of your audio streams. Track: Default. Select audio by track number. This is the most common option and works with most input container formats. Language code: Select audio by language using an ISO 639-2 or ISO 639-3 three-letter code in all capital letters. Use this when your source has embedded language metadata and you want to select tracks based on their language. HLS rendition group: Select audio from an HLS rendition group. Use this when your input is an HLS package with multiple audio renditions and you want to select specific rendition groups. All PCM: Select all uncompressed PCM audio tracks from your input automatically. This is useful when you want to include all PCM audio tracks without specifying individual track numbers.
|
|
3086
3087
|
* @public
|
|
3087
3088
|
*/
|
|
3088
3089
|
SelectorType?: AudioSelectorType | undefined;
|
|
@@ -3377,7 +3378,7 @@ export interface WebvttHlsSourceSettings {
|
|
|
3377
3378
|
*/
|
|
3378
3379
|
RenditionGroupId?: string | undefined;
|
|
3379
3380
|
/**
|
|
3380
|
-
*
|
|
3381
|
+
* Optionally specify the language, using an ISO 639-2 or ISO 639-3 three-letter code in all capital letters. You can find a list of codes at: https://www.loc.gov/standards/iso639-2/php/code_list.php
|
|
3381
3382
|
* @public
|
|
3382
3383
|
*/
|
|
3383
3384
|
RenditionLanguageCode?: LanguageCode | undefined;
|
|
@@ -3571,7 +3572,7 @@ export interface DynamicAudioSelector {
|
|
|
3571
3572
|
*/
|
|
3572
3573
|
ExternalAudioFileInput?: string | undefined;
|
|
3573
3574
|
/**
|
|
3574
|
-
* Specify the language
|
|
3575
|
+
* Specify the language, using an ISO 639-2 three-letter code in all capital letters. You can find a list of codes at: https://www.loc.gov/standards/iso639-2/php/code_list.php
|
|
3575
3576
|
* @public
|
|
3576
3577
|
*/
|
|
3577
3578
|
LanguageCode?: LanguageCode | undefined;
|
|
@@ -3796,12 +3797,22 @@ export interface InputVideoGenerator {
|
|
|
3796
3797
|
* @public
|
|
3797
3798
|
*/
|
|
3798
3799
|
FramerateNumerator?: number | undefined;
|
|
3800
|
+
/**
|
|
3801
|
+
* Specify the height, in pixels, for your video generator input. This is useful for positioning when you include one or more video overlays for this input. To use the default resolution 540x360: Leave both width and height blank. To specify a height: Enter an even integer from 32 to 8192. When you do, you must also specify a value for width.
|
|
3802
|
+
* @public
|
|
3803
|
+
*/
|
|
3804
|
+
Height?: number | undefined;
|
|
3799
3805
|
/**
|
|
3800
3806
|
* Specify the audio sample rate, in Hz, for the silent audio in your video generator input.
|
|
3801
3807
|
* Enter an integer from 32000 to 48000.
|
|
3802
3808
|
* @public
|
|
3803
3809
|
*/
|
|
3804
3810
|
SampleRate?: number | undefined;
|
|
3811
|
+
/**
|
|
3812
|
+
* Specify the width, in pixels, for your video generator input. This is useful for positioning when you include one or more video overlays for this input. To use the default resolution 540x360: Leave both width and height blank. To specify a width: Enter an even integer from 32 to 8192. When you do, you must also specify a value for height.
|
|
3813
|
+
* @public
|
|
3814
|
+
*/
|
|
3815
|
+
Width?: number | undefined;
|
|
3805
3816
|
}
|
|
3806
3817
|
/**
|
|
3807
3818
|
* @public
|
|
@@ -357,7 +357,7 @@ export interface OutputGroupSettings {
|
|
|
357
357
|
*/
|
|
358
358
|
MsSmoothGroupSettings?: MsSmoothGroupSettings | undefined;
|
|
359
359
|
/**
|
|
360
|
-
* Optionally choose one or more per frame metric reports to generate along with your output. You can use these metrics to analyze your video output according to one or more commonly used image quality metrics. You can specify per frame metrics for output groups or for individual outputs. When you do, MediaConvert writes a CSV (Comma-Separated Values) file to your S3 output destination, named after the output name and metric type. For example: videofile_PSNR.csv Jobs that generate per frame metrics will take longer to complete, depending on the resolution and complexity of your output. For example, some 4K jobs might take up to twice as long to complete. Note that when analyzing the video quality of your output, or when comparing the video quality of multiple different outputs, we generally also recommend a detailed visual review in a controlled environment. You can choose from the following per frame metrics: * PSNR: Peak Signal-to-Noise Ratio * SSIM: Structural Similarity Index Measure * MS_SSIM: Multi-Scale Similarity Index Measure * PSNR_HVS: Peak Signal-to-Noise Ratio, Human Visual System * VMAF: Video Multi-Method Assessment Fusion * QVBR: Quality-Defined Variable Bitrate. This option is only available when your output uses the QVBR rate control mode.
|
|
360
|
+
* Optionally choose one or more per frame metric reports to generate along with your output. You can use these metrics to analyze your video output according to one or more commonly used image quality metrics. You can specify per frame metrics for output groups or for individual outputs. When you do, MediaConvert writes a CSV (Comma-Separated Values) file to your S3 output destination, named after the output name and metric type. For example: videofile_PSNR.csv Jobs that generate per frame metrics will take longer to complete, depending on the resolution and complexity of your output. For example, some 4K jobs might take up to twice as long to complete. Note that when analyzing the video quality of your output, or when comparing the video quality of multiple different outputs, we generally also recommend a detailed visual review in a controlled environment. You can choose from the following per frame metrics: * PSNR: Peak Signal-to-Noise Ratio * SSIM: Structural Similarity Index Measure * MS_SSIM: Multi-Scale Similarity Index Measure * PSNR_HVS: Peak Signal-to-Noise Ratio, Human Visual System * VMAF: Video Multi-Method Assessment Fusion * QVBR: Quality-Defined Variable Bitrate. This option is only available when your output uses the QVBR rate control mode. * SHOT_CHANGE: Shot Changes
|
|
361
361
|
* @public
|
|
362
362
|
*/
|
|
363
363
|
PerFrameMetrics?: FrameMetricType[] | undefined;
|
|
@@ -2107,7 +2107,7 @@ export interface Av1Settings {
|
|
|
2107
2107
|
*/
|
|
2108
2108
|
NumberBFramesBetweenReferenceFrames?: number | undefined;
|
|
2109
2109
|
/**
|
|
2110
|
-
* Optionally choose one or more per frame metric reports to generate along with your output. You can use these metrics to analyze your video output according to one or more commonly used image quality metrics. You can specify per frame metrics for output groups or for individual outputs. When you do, MediaConvert writes a CSV (Comma-Separated Values) file to your S3 output destination, named after the output name and metric type. For example: videofile_PSNR.csv Jobs that generate per frame metrics will take longer to complete, depending on the resolution and complexity of your output. For example, some 4K jobs might take up to twice as long to complete. Note that when analyzing the video quality of your output, or when comparing the video quality of multiple different outputs, we generally also recommend a detailed visual review in a controlled environment. You can choose from the following per frame metrics: * PSNR: Peak Signal-to-Noise Ratio * SSIM: Structural Similarity Index Measure * MS_SSIM: Multi-Scale Similarity Index Measure * PSNR_HVS: Peak Signal-to-Noise Ratio, Human Visual System * VMAF: Video Multi-Method Assessment Fusion * QVBR: Quality-Defined Variable Bitrate. This option is only available when your output uses the QVBR rate control mode.
|
|
2110
|
+
* Optionally choose one or more per frame metric reports to generate along with your output. You can use these metrics to analyze your video output according to one or more commonly used image quality metrics. You can specify per frame metrics for output groups or for individual outputs. When you do, MediaConvert writes a CSV (Comma-Separated Values) file to your S3 output destination, named after the output name and metric type. For example: videofile_PSNR.csv Jobs that generate per frame metrics will take longer to complete, depending on the resolution and complexity of your output. For example, some 4K jobs might take up to twice as long to complete. Note that when analyzing the video quality of your output, or when comparing the video quality of multiple different outputs, we generally also recommend a detailed visual review in a controlled environment. You can choose from the following per frame metrics: * PSNR: Peak Signal-to-Noise Ratio * SSIM: Structural Similarity Index Measure * MS_SSIM: Multi-Scale Similarity Index Measure * PSNR_HVS: Peak Signal-to-Noise Ratio, Human Visual System * VMAF: Video Multi-Method Assessment Fusion * QVBR: Quality-Defined Variable Bitrate. This option is only available when your output uses the QVBR rate control mode. * SHOT_CHANGE: Shot Changes
|
|
2111
2111
|
* @public
|
|
2112
2112
|
*/
|
|
2113
2113
|
PerFrameMetrics?: FrameMetricType[] | undefined;
|
|
@@ -2287,7 +2287,7 @@ export interface AvcIntraSettings {
|
|
|
2287
2287
|
*/
|
|
2288
2288
|
InterlaceMode?: AvcIntraInterlaceMode | undefined;
|
|
2289
2289
|
/**
|
|
2290
|
-
* Optionally choose one or more per frame metric reports to generate along with your output. You can use these metrics to analyze your video output according to one or more commonly used image quality metrics. You can specify per frame metrics for output groups or for individual outputs. When you do, MediaConvert writes a CSV (Comma-Separated Values) file to your S3 output destination, named after the output name and metric type. For example: videofile_PSNR.csv Jobs that generate per frame metrics will take longer to complete, depending on the resolution and complexity of your output. For example, some 4K jobs might take up to twice as long to complete. Note that when analyzing the video quality of your output, or when comparing the video quality of multiple different outputs, we generally also recommend a detailed visual review in a controlled environment. You can choose from the following per frame metrics: * PSNR: Peak Signal-to-Noise Ratio * SSIM: Structural Similarity Index Measure * MS_SSIM: Multi-Scale Similarity Index Measure * PSNR_HVS: Peak Signal-to-Noise Ratio, Human Visual System * VMAF: Video Multi-Method Assessment Fusion * QVBR: Quality-Defined Variable Bitrate. This option is only available when your output uses the QVBR rate control mode.
|
|
2290
|
+
* Optionally choose one or more per frame metric reports to generate along with your output. You can use these metrics to analyze your video output according to one or more commonly used image quality metrics. You can specify per frame metrics for output groups or for individual outputs. When you do, MediaConvert writes a CSV (Comma-Separated Values) file to your S3 output destination, named after the output name and metric type. For example: videofile_PSNR.csv Jobs that generate per frame metrics will take longer to complete, depending on the resolution and complexity of your output. For example, some 4K jobs might take up to twice as long to complete. Note that when analyzing the video quality of your output, or when comparing the video quality of multiple different outputs, we generally also recommend a detailed visual review in a controlled environment. You can choose from the following per frame metrics: * PSNR: Peak Signal-to-Noise Ratio * SSIM: Structural Similarity Index Measure * MS_SSIM: Multi-Scale Similarity Index Measure * PSNR_HVS: Peak Signal-to-Noise Ratio, Human Visual System * VMAF: Video Multi-Method Assessment Fusion * QVBR: Quality-Defined Variable Bitrate. This option is only available when your output uses the QVBR rate control mode. * SHOT_CHANGE: Shot Changes
|
|
2291
2291
|
* @public
|
|
2292
2292
|
*/
|
|
2293
2293
|
PerFrameMetrics?: FrameMetricType[] | undefined;
|
|
@@ -2983,7 +2983,7 @@ export interface H264Settings {
|
|
|
2983
2983
|
*/
|
|
2984
2984
|
ParNumerator?: number | undefined;
|
|
2985
2985
|
/**
|
|
2986
|
-
* Optionally choose one or more per frame metric reports to generate along with your output. You can use these metrics to analyze your video output according to one or more commonly used image quality metrics. You can specify per frame metrics for output groups or for individual outputs. When you do, MediaConvert writes a CSV (Comma-Separated Values) file to your S3 output destination, named after the output name and metric type. For example: videofile_PSNR.csv Jobs that generate per frame metrics will take longer to complete, depending on the resolution and complexity of your output. For example, some 4K jobs might take up to twice as long to complete. Note that when analyzing the video quality of your output, or when comparing the video quality of multiple different outputs, we generally also recommend a detailed visual review in a controlled environment. You can choose from the following per frame metrics: * PSNR: Peak Signal-to-Noise Ratio * SSIM: Structural Similarity Index Measure * MS_SSIM: Multi-Scale Similarity Index Measure * PSNR_HVS: Peak Signal-to-Noise Ratio, Human Visual System * VMAF: Video Multi-Method Assessment Fusion * QVBR: Quality-Defined Variable Bitrate. This option is only available when your output uses the QVBR rate control mode.
|
|
2986
|
+
* Optionally choose one or more per frame metric reports to generate along with your output. You can use these metrics to analyze your video output according to one or more commonly used image quality metrics. You can specify per frame metrics for output groups or for individual outputs. When you do, MediaConvert writes a CSV (Comma-Separated Values) file to your S3 output destination, named after the output name and metric type. For example: videofile_PSNR.csv Jobs that generate per frame metrics will take longer to complete, depending on the resolution and complexity of your output. For example, some 4K jobs might take up to twice as long to complete. Note that when analyzing the video quality of your output, or when comparing the video quality of multiple different outputs, we generally also recommend a detailed visual review in a controlled environment. You can choose from the following per frame metrics: * PSNR: Peak Signal-to-Noise Ratio * SSIM: Structural Similarity Index Measure * MS_SSIM: Multi-Scale Similarity Index Measure * PSNR_HVS: Peak Signal-to-Noise Ratio, Human Visual System * VMAF: Video Multi-Method Assessment Fusion * QVBR: Quality-Defined Variable Bitrate. This option is only available when your output uses the QVBR rate control mode. * SHOT_CHANGE: Shot Changes
|
|
2987
2987
|
* @public
|
|
2988
2988
|
*/
|
|
2989
2989
|
PerFrameMetrics?: FrameMetricType[] | undefined;
|
|
@@ -3598,7 +3598,7 @@ export interface H265Settings {
|
|
|
3598
3598
|
*/
|
|
3599
3599
|
ParNumerator?: number | undefined;
|
|
3600
3600
|
/**
|
|
3601
|
-
* Optionally choose one or more per frame metric reports to generate along with your output. You can use these metrics to analyze your video output according to one or more commonly used image quality metrics. You can specify per frame metrics for output groups or for individual outputs. When you do, MediaConvert writes a CSV (Comma-Separated Values) file to your S3 output destination, named after the output name and metric type. For example: videofile_PSNR.csv Jobs that generate per frame metrics will take longer to complete, depending on the resolution and complexity of your output. For example, some 4K jobs might take up to twice as long to complete. Note that when analyzing the video quality of your output, or when comparing the video quality of multiple different outputs, we generally also recommend a detailed visual review in a controlled environment. You can choose from the following per frame metrics: * PSNR: Peak Signal-to-Noise Ratio * SSIM: Structural Similarity Index Measure * MS_SSIM: Multi-Scale Similarity Index Measure * PSNR_HVS: Peak Signal-to-Noise Ratio, Human Visual System * VMAF: Video Multi-Method Assessment Fusion * QVBR: Quality-Defined Variable Bitrate. This option is only available when your output uses the QVBR rate control mode.
|
|
3601
|
+
* Optionally choose one or more per frame metric reports to generate along with your output. You can use these metrics to analyze your video output according to one or more commonly used image quality metrics. You can specify per frame metrics for output groups or for individual outputs. When you do, MediaConvert writes a CSV (Comma-Separated Values) file to your S3 output destination, named after the output name and metric type. For example: videofile_PSNR.csv Jobs that generate per frame metrics will take longer to complete, depending on the resolution and complexity of your output. For example, some 4K jobs might take up to twice as long to complete. Note that when analyzing the video quality of your output, or when comparing the video quality of multiple different outputs, we generally also recommend a detailed visual review in a controlled environment. You can choose from the following per frame metrics: * PSNR: Peak Signal-to-Noise Ratio * SSIM: Structural Similarity Index Measure * MS_SSIM: Multi-Scale Similarity Index Measure * PSNR_HVS: Peak Signal-to-Noise Ratio, Human Visual System * VMAF: Video Multi-Method Assessment Fusion * QVBR: Quality-Defined Variable Bitrate. This option is only available when your output uses the QVBR rate control mode. * SHOT_CHANGE: Shot Changes
|
|
3602
3602
|
* @public
|
|
3603
3603
|
*/
|
|
3604
3604
|
PerFrameMetrics?: FrameMetricType[] | undefined;
|
|
@@ -4041,7 +4041,7 @@ export interface Mpeg2Settings {
|
|
|
4041
4041
|
*/
|
|
4042
4042
|
ParNumerator?: number | undefined;
|
|
4043
4043
|
/**
|
|
4044
|
-
* Optionally choose one or more per frame metric reports to generate along with your output. You can use these metrics to analyze your video output according to one or more commonly used image quality metrics. You can specify per frame metrics for output groups or for individual outputs. When you do, MediaConvert writes a CSV (Comma-Separated Values) file to your S3 output destination, named after the output name and metric type. For example: videofile_PSNR.csv Jobs that generate per frame metrics will take longer to complete, depending on the resolution and complexity of your output. For example, some 4K jobs might take up to twice as long to complete. Note that when analyzing the video quality of your output, or when comparing the video quality of multiple different outputs, we generally also recommend a detailed visual review in a controlled environment. You can choose from the following per frame metrics: * PSNR: Peak Signal-to-Noise Ratio * SSIM: Structural Similarity Index Measure * MS_SSIM: Multi-Scale Similarity Index Measure * PSNR_HVS: Peak Signal-to-Noise Ratio, Human Visual System * VMAF: Video Multi-Method Assessment Fusion * QVBR: Quality-Defined Variable Bitrate. This option is only available when your output uses the QVBR rate control mode.
|
|
4044
|
+
* Optionally choose one or more per frame metric reports to generate along with your output. You can use these metrics to analyze your video output according to one or more commonly used image quality metrics. You can specify per frame metrics for output groups or for individual outputs. When you do, MediaConvert writes a CSV (Comma-Separated Values) file to your S3 output destination, named after the output name and metric type. For example: videofile_PSNR.csv Jobs that generate per frame metrics will take longer to complete, depending on the resolution and complexity of your output. For example, some 4K jobs might take up to twice as long to complete. Note that when analyzing the video quality of your output, or when comparing the video quality of multiple different outputs, we generally also recommend a detailed visual review in a controlled environment. You can choose from the following per frame metrics: * PSNR: Peak Signal-to-Noise Ratio * SSIM: Structural Similarity Index Measure * MS_SSIM: Multi-Scale Similarity Index Measure * PSNR_HVS: Peak Signal-to-Noise Ratio, Human Visual System * VMAF: Video Multi-Method Assessment Fusion * QVBR: Quality-Defined Variable Bitrate. This option is only available when your output uses the QVBR rate control mode. * SHOT_CHANGE: Shot Changes
|
|
4045
4045
|
* @public
|
|
4046
4046
|
*/
|
|
4047
4047
|
PerFrameMetrics?: FrameMetricType[] | undefined;
|
|
@@ -4269,7 +4269,7 @@ export interface ProresSettings {
|
|
|
4269
4269
|
*/
|
|
4270
4270
|
ParNumerator?: number | undefined;
|
|
4271
4271
|
/**
|
|
4272
|
-
* Optionally choose one or more per frame metric reports to generate along with your output. You can use these metrics to analyze your video output according to one or more commonly used image quality metrics. You can specify per frame metrics for output groups or for individual outputs. When you do, MediaConvert writes a CSV (Comma-Separated Values) file to your S3 output destination, named after the output name and metric type. For example: videofile_PSNR.csv Jobs that generate per frame metrics will take longer to complete, depending on the resolution and complexity of your output. For example, some 4K jobs might take up to twice as long to complete. Note that when analyzing the video quality of your output, or when comparing the video quality of multiple different outputs, we generally also recommend a detailed visual review in a controlled environment. You can choose from the following per frame metrics: * PSNR: Peak Signal-to-Noise Ratio * SSIM: Structural Similarity Index Measure * MS_SSIM: Multi-Scale Similarity Index Measure * PSNR_HVS: Peak Signal-to-Noise Ratio, Human Visual System * VMAF: Video Multi-Method Assessment Fusion * QVBR: Quality-Defined Variable Bitrate. This option is only available when your output uses the QVBR rate control mode.
|
|
4272
|
+
* Optionally choose one or more per frame metric reports to generate along with your output. You can use these metrics to analyze your video output according to one or more commonly used image quality metrics. You can specify per frame metrics for output groups or for individual outputs. When you do, MediaConvert writes a CSV (Comma-Separated Values) file to your S3 output destination, named after the output name and metric type. For example: videofile_PSNR.csv Jobs that generate per frame metrics will take longer to complete, depending on the resolution and complexity of your output. For example, some 4K jobs might take up to twice as long to complete. Note that when analyzing the video quality of your output, or when comparing the video quality of multiple different outputs, we generally also recommend a detailed visual review in a controlled environment. You can choose from the following per frame metrics: * PSNR: Peak Signal-to-Noise Ratio * SSIM: Structural Similarity Index Measure * MS_SSIM: Multi-Scale Similarity Index Measure * PSNR_HVS: Peak Signal-to-Noise Ratio, Human Visual System * VMAF: Video Multi-Method Assessment Fusion * QVBR: Quality-Defined Variable Bitrate. This option is only available when your output uses the QVBR rate control mode. * SHOT_CHANGE: Shot Changes
|
|
4273
4273
|
* @public
|
|
4274
4274
|
*/
|
|
4275
4275
|
PerFrameMetrics?: FrameMetricType[] | undefined;
|
|
@@ -5256,7 +5256,7 @@ export interface XavcSettings {
|
|
|
5256
5256
|
*/
|
|
5257
5257
|
FramerateNumerator?: number | undefined;
|
|
5258
5258
|
/**
|
|
5259
|
-
* Optionally choose one or more per frame metric reports to generate along with your output. You can use these metrics to analyze your video output according to one or more commonly used image quality metrics. You can specify per frame metrics for output groups or for individual outputs. When you do, MediaConvert writes a CSV (Comma-Separated Values) file to your S3 output destination, named after the output name and metric type. For example: videofile_PSNR.csv Jobs that generate per frame metrics will take longer to complete, depending on the resolution and complexity of your output. For example, some 4K jobs might take up to twice as long to complete. Note that when analyzing the video quality of your output, or when comparing the video quality of multiple different outputs, we generally also recommend a detailed visual review in a controlled environment. You can choose from the following per frame metrics: * PSNR: Peak Signal-to-Noise Ratio * SSIM: Structural Similarity Index Measure * MS_SSIM: Multi-Scale Similarity Index Measure * PSNR_HVS: Peak Signal-to-Noise Ratio, Human Visual System * VMAF: Video Multi-Method Assessment Fusion * QVBR: Quality-Defined Variable Bitrate. This option is only available when your output uses the QVBR rate control mode.
|
|
5259
|
+
* Optionally choose one or more per frame metric reports to generate along with your output. You can use these metrics to analyze your video output according to one or more commonly used image quality metrics. You can specify per frame metrics for output groups or for individual outputs. When you do, MediaConvert writes a CSV (Comma-Separated Values) file to your S3 output destination, named after the output name and metric type. For example: videofile_PSNR.csv Jobs that generate per frame metrics will take longer to complete, depending on the resolution and complexity of your output. For example, some 4K jobs might take up to twice as long to complete. Note that when analyzing the video quality of your output, or when comparing the video quality of multiple different outputs, we generally also recommend a detailed visual review in a controlled environment. You can choose from the following per frame metrics: * PSNR: Peak Signal-to-Noise Ratio * SSIM: Structural Similarity Index Measure * MS_SSIM: Multi-Scale Similarity Index Measure * PSNR_HVS: Peak Signal-to-Noise Ratio, Human Visual System * VMAF: Video Multi-Method Assessment Fusion * QVBR: Quality-Defined Variable Bitrate. This option is only available when your output uses the QVBR rate control mode. * SHOT_CHANGE: Shot Changes
|
|
5260
5260
|
* @public
|
|
5261
5261
|
*/
|
|
5262
5262
|
PerFrameMetrics?: FrameMetricType[] | undefined;
|