@aws-sdk/client-mediaconvert 3.799.0 → 3.804.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.
Files changed (68) hide show
  1. package/dist-cjs/index.js +31 -4
  2. package/dist-es/models/models_0.js +9 -4
  3. package/dist-es/models/models_1.js +4 -0
  4. package/dist-es/protocols/Aws_restJson1.js +18 -2
  5. package/dist-types/commands/AssociateCertificateCommand.d.ts +1 -1
  6. package/dist-types/commands/CancelJobCommand.d.ts +1 -1
  7. package/dist-types/commands/CreateJobCommand.d.ts +39 -3
  8. package/dist-types/commands/CreateJobTemplateCommand.d.ts +39 -3
  9. package/dist-types/commands/CreatePresetCommand.d.ts +35 -1
  10. package/dist-types/commands/CreateQueueCommand.d.ts +1 -1
  11. package/dist-types/commands/DeleteJobTemplateCommand.d.ts +1 -1
  12. package/dist-types/commands/DeletePresetCommand.d.ts +1 -1
  13. package/dist-types/commands/DeleteQueueCommand.d.ts +1 -1
  14. package/dist-types/commands/DisassociateCertificateCommand.d.ts +1 -1
  15. package/dist-types/commands/GetJobCommand.d.ts +20 -2
  16. package/dist-types/commands/GetJobTemplateCommand.d.ts +20 -2
  17. package/dist-types/commands/GetPresetCommand.d.ts +18 -1
  18. package/dist-types/commands/GetQueueCommand.d.ts +1 -1
  19. package/dist-types/commands/ListJobTemplatesCommand.d.ts +19 -1
  20. package/dist-types/commands/ListJobsCommand.d.ts +19 -1
  21. package/dist-types/commands/ListPresetsCommand.d.ts +17 -0
  22. package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
  23. package/dist-types/commands/ProbeCommand.d.ts +2 -2
  24. package/dist-types/commands/PutPolicyCommand.d.ts +1 -1
  25. package/dist-types/commands/SearchJobsCommand.d.ts +19 -1
  26. package/dist-types/commands/TagResourceCommand.d.ts +1 -1
  27. package/dist-types/commands/UntagResourceCommand.d.ts +1 -1
  28. package/dist-types/commands/UpdateJobTemplateCommand.d.ts +39 -3
  29. package/dist-types/commands/UpdatePresetCommand.d.ts +35 -1
  30. package/dist-types/commands/UpdateQueueCommand.d.ts +1 -1
  31. package/dist-types/endpoint/EndpointParameters.d.ts +1 -3
  32. package/dist-types/models/models_0.d.ts +19 -14
  33. package/dist-types/models/models_1.d.ts +54 -153
  34. package/dist-types/models/models_2.d.ts +155 -4
  35. package/dist-types/runtimeConfig.browser.d.ts +17 -17
  36. package/dist-types/runtimeConfig.d.ts +16 -16
  37. package/dist-types/runtimeConfig.native.d.ts +18 -18
  38. package/dist-types/runtimeConfig.shared.d.ts +3 -3
  39. package/dist-types/ts3.4/commands/AssociateCertificateCommand.d.ts +1 -1
  40. package/dist-types/ts3.4/commands/CancelJobCommand.d.ts +1 -1
  41. package/dist-types/ts3.4/commands/CreateJobCommand.d.ts +1 -1
  42. package/dist-types/ts3.4/commands/CreateJobTemplateCommand.d.ts +1 -1
  43. package/dist-types/ts3.4/commands/CreatePresetCommand.d.ts +1 -1
  44. package/dist-types/ts3.4/commands/CreateQueueCommand.d.ts +1 -1
  45. package/dist-types/ts3.4/commands/DeleteJobTemplateCommand.d.ts +1 -1
  46. package/dist-types/ts3.4/commands/DeletePresetCommand.d.ts +1 -1
  47. package/dist-types/ts3.4/commands/DeleteQueueCommand.d.ts +1 -1
  48. package/dist-types/ts3.4/commands/DisassociateCertificateCommand.d.ts +1 -1
  49. package/dist-types/ts3.4/commands/GetJobCommand.d.ts +1 -1
  50. package/dist-types/ts3.4/commands/GetJobTemplateCommand.d.ts +1 -1
  51. package/dist-types/ts3.4/commands/GetPresetCommand.d.ts +1 -1
  52. package/dist-types/ts3.4/commands/GetQueueCommand.d.ts +1 -1
  53. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +1 -1
  54. package/dist-types/ts3.4/commands/PutPolicyCommand.d.ts +1 -1
  55. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +1 -1
  56. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +1 -1
  57. package/dist-types/ts3.4/commands/UpdateJobTemplateCommand.d.ts +1 -1
  58. package/dist-types/ts3.4/commands/UpdatePresetCommand.d.ts +1 -1
  59. package/dist-types/ts3.4/commands/UpdateQueueCommand.d.ts +1 -1
  60. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -4
  61. package/dist-types/ts3.4/models/models_0.d.ts +11 -6
  62. package/dist-types/ts3.4/models/models_1.d.ts +15 -40
  63. package/dist-types/ts3.4/models/models_2.d.ts +38 -1
  64. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +22 -32
  65. package/dist-types/ts3.4/runtimeConfig.d.ts +20 -29
  66. package/dist-types/ts3.4/runtimeConfig.native.d.ts +23 -33
  67. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +3 -3
  68. package/package.json +20 -20
@@ -23,7 +23,7 @@ export interface UpdatePresetCommandOutput extends UpdatePresetResponse, __Metad
23
23
  }
24
24
  declare const UpdatePresetCommand_base: {
25
25
  new (input: UpdatePresetCommandInput): import("@smithy/smithy-client").CommandImpl<UpdatePresetCommandInput, UpdatePresetCommandOutput, MediaConvertClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (__0_0: UpdatePresetCommandInput): import("@smithy/smithy-client").CommandImpl<UpdatePresetCommandInput, UpdatePresetCommandOutput, MediaConvertClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (input: UpdatePresetCommandInput): import("@smithy/smithy-client").CommandImpl<UpdatePresetCommandInput, UpdatePresetCommandOutput, MediaConvertClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
27
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
28
  };
29
29
  /**
@@ -449,6 +449,9 @@ declare const UpdatePresetCommand_base: {
449
449
  * GopSize: Number("double"),
450
450
  * MaxBitrate: Number("int"),
451
451
  * NumberBFramesBetweenReferenceFrames: Number("int"),
452
+ * PerFrameMetrics: [ // __listOfFrameMetricType
453
+ * "PSNR" || "SSIM" || "MS_SSIM" || "PSNR_HVS" || "VMAF" || "QVBR",
454
+ * ],
452
455
  * QvbrSettings: { // Av1QvbrSettings
453
456
  * QvbrQualityLevel: Number("int"),
454
457
  * QvbrQualityLevelFineTune: Number("double"),
@@ -467,6 +470,9 @@ declare const UpdatePresetCommand_base: {
467
470
  * FramerateDenominator: Number("int"),
468
471
  * FramerateNumerator: Number("int"),
469
472
  * InterlaceMode: "PROGRESSIVE" || "TOP_FIELD" || "BOTTOM_FIELD" || "FOLLOW_TOP_FIELD" || "FOLLOW_BOTTOM_FIELD",
473
+ * PerFrameMetrics: [
474
+ * "PSNR" || "SSIM" || "MS_SSIM" || "PSNR_HVS" || "VMAF" || "QVBR",
475
+ * ],
470
476
  * ScanTypeConversionMode: "INTERLACED" || "INTERLACED_OPTIMIZE",
471
477
  * SlowPal: "DISABLED" || "ENABLED",
472
478
  * Telecine: "NONE" || "HARD",
@@ -517,6 +523,9 @@ declare const UpdatePresetCommand_base: {
517
523
  * ParControl: "INITIALIZE_FROM_SOURCE" || "SPECIFIED",
518
524
  * ParDenominator: Number("int"),
519
525
  * ParNumerator: Number("int"),
526
+ * PerFrameMetrics: [
527
+ * "PSNR" || "SSIM" || "MS_SSIM" || "PSNR_HVS" || "VMAF" || "QVBR",
528
+ * ],
520
529
  * QualityTuningLevel: "SINGLE_PASS" || "SINGLE_PASS_HQ" || "MULTI_PASS_HQ",
521
530
  * QvbrSettings: { // H264QvbrSettings
522
531
  * MaxAverageBitrate: Number("int"),
@@ -571,6 +580,9 @@ declare const UpdatePresetCommand_base: {
571
580
  * ParControl: "INITIALIZE_FROM_SOURCE" || "SPECIFIED",
572
581
  * ParDenominator: Number("int"),
573
582
  * ParNumerator: Number("int"),
583
+ * PerFrameMetrics: [
584
+ * "PSNR" || "SSIM" || "MS_SSIM" || "PSNR_HVS" || "VMAF" || "QVBR",
585
+ * ],
574
586
  * QualityTuningLevel: "SINGLE_PASS" || "SINGLE_PASS_HQ" || "MULTI_PASS_HQ",
575
587
  * QvbrSettings: { // H265QvbrSettings
576
588
  * MaxAverageBitrate: Number("int"),
@@ -615,6 +627,9 @@ declare const UpdatePresetCommand_base: {
615
627
  * ParControl: "INITIALIZE_FROM_SOURCE" || "SPECIFIED",
616
628
  * ParDenominator: Number("int"),
617
629
  * ParNumerator: Number("int"),
630
+ * PerFrameMetrics: [
631
+ * "PSNR" || "SSIM" || "MS_SSIM" || "PSNR_HVS" || "VMAF" || "QVBR",
632
+ * ],
618
633
  * QualityTuningLevel: "SINGLE_PASS" || "MULTI_PASS",
619
634
  * RateControlMode: "VBR" || "CBR",
620
635
  * ScanTypeConversionMode: "INTERLACED" || "INTERLACED_OPTIMIZE",
@@ -637,6 +652,7 @@ declare const UpdatePresetCommand_base: {
637
652
  * ParControl: "INITIALIZE_FROM_SOURCE" || "SPECIFIED",
638
653
  * ParDenominator: Number("int"),
639
654
  * ParNumerator: Number("int"),
655
+ * PerFrameMetrics: "<__listOfFrameMetricType>",
640
656
  * ScanTypeConversionMode: "INTERLACED" || "INTERLACED_OPTIMIZE",
641
657
  * SlowPal: "DISABLED" || "ENABLED",
642
658
  * Telecine: "NONE" || "HARD",
@@ -700,6 +716,7 @@ declare const UpdatePresetCommand_base: {
700
716
  * FramerateConversionAlgorithm: "DUPLICATE_DROP" || "INTERPOLATE" || "FRAMEFORMER" || "MAINTAIN_FRAME_COUNT",
701
717
  * FramerateDenominator: Number("int"),
702
718
  * FramerateNumerator: Number("int"),
719
+ * PerFrameMetrics: "<__listOfFrameMetricType>",
703
720
  * Profile: "XAVC_HD_INTRA_CBG" || "XAVC_4K_INTRA_CBG" || "XAVC_4K_INTRA_VBR" || "XAVC_HD" || "XAVC_4K",
704
721
  * SlowPal: "DISABLED" || "ENABLED",
705
722
  * Softness: Number("int"),
@@ -1283,6 +1300,9 @@ declare const UpdatePresetCommand_base: {
1283
1300
  * // GopSize: Number("double"),
1284
1301
  * // MaxBitrate: Number("int"),
1285
1302
  * // NumberBFramesBetweenReferenceFrames: Number("int"),
1303
+ * // PerFrameMetrics: [ // __listOfFrameMetricType
1304
+ * // "PSNR" || "SSIM" || "MS_SSIM" || "PSNR_HVS" || "VMAF" || "QVBR",
1305
+ * // ],
1286
1306
  * // QvbrSettings: { // Av1QvbrSettings
1287
1307
  * // QvbrQualityLevel: Number("int"),
1288
1308
  * // QvbrQualityLevelFineTune: Number("double"),
@@ -1301,6 +1321,9 @@ declare const UpdatePresetCommand_base: {
1301
1321
  * // FramerateDenominator: Number("int"),
1302
1322
  * // FramerateNumerator: Number("int"),
1303
1323
  * // InterlaceMode: "PROGRESSIVE" || "TOP_FIELD" || "BOTTOM_FIELD" || "FOLLOW_TOP_FIELD" || "FOLLOW_BOTTOM_FIELD",
1324
+ * // PerFrameMetrics: [
1325
+ * // "PSNR" || "SSIM" || "MS_SSIM" || "PSNR_HVS" || "VMAF" || "QVBR",
1326
+ * // ],
1304
1327
  * // ScanTypeConversionMode: "INTERLACED" || "INTERLACED_OPTIMIZE",
1305
1328
  * // SlowPal: "DISABLED" || "ENABLED",
1306
1329
  * // Telecine: "NONE" || "HARD",
@@ -1351,6 +1374,9 @@ declare const UpdatePresetCommand_base: {
1351
1374
  * // ParControl: "INITIALIZE_FROM_SOURCE" || "SPECIFIED",
1352
1375
  * // ParDenominator: Number("int"),
1353
1376
  * // ParNumerator: Number("int"),
1377
+ * // PerFrameMetrics: [
1378
+ * // "PSNR" || "SSIM" || "MS_SSIM" || "PSNR_HVS" || "VMAF" || "QVBR",
1379
+ * // ],
1354
1380
  * // QualityTuningLevel: "SINGLE_PASS" || "SINGLE_PASS_HQ" || "MULTI_PASS_HQ",
1355
1381
  * // QvbrSettings: { // H264QvbrSettings
1356
1382
  * // MaxAverageBitrate: Number("int"),
@@ -1405,6 +1431,9 @@ declare const UpdatePresetCommand_base: {
1405
1431
  * // ParControl: "INITIALIZE_FROM_SOURCE" || "SPECIFIED",
1406
1432
  * // ParDenominator: Number("int"),
1407
1433
  * // ParNumerator: Number("int"),
1434
+ * // PerFrameMetrics: [
1435
+ * // "PSNR" || "SSIM" || "MS_SSIM" || "PSNR_HVS" || "VMAF" || "QVBR",
1436
+ * // ],
1408
1437
  * // QualityTuningLevel: "SINGLE_PASS" || "SINGLE_PASS_HQ" || "MULTI_PASS_HQ",
1409
1438
  * // QvbrSettings: { // H265QvbrSettings
1410
1439
  * // MaxAverageBitrate: Number("int"),
@@ -1449,6 +1478,9 @@ declare const UpdatePresetCommand_base: {
1449
1478
  * // ParControl: "INITIALIZE_FROM_SOURCE" || "SPECIFIED",
1450
1479
  * // ParDenominator: Number("int"),
1451
1480
  * // ParNumerator: Number("int"),
1481
+ * // PerFrameMetrics: [
1482
+ * // "PSNR" || "SSIM" || "MS_SSIM" || "PSNR_HVS" || "VMAF" || "QVBR",
1483
+ * // ],
1452
1484
  * // QualityTuningLevel: "SINGLE_PASS" || "MULTI_PASS",
1453
1485
  * // RateControlMode: "VBR" || "CBR",
1454
1486
  * // ScanTypeConversionMode: "INTERLACED" || "INTERLACED_OPTIMIZE",
@@ -1471,6 +1503,7 @@ declare const UpdatePresetCommand_base: {
1471
1503
  * // ParControl: "INITIALIZE_FROM_SOURCE" || "SPECIFIED",
1472
1504
  * // ParDenominator: Number("int"),
1473
1505
  * // ParNumerator: Number("int"),
1506
+ * // PerFrameMetrics: "<__listOfFrameMetricType>",
1474
1507
  * // ScanTypeConversionMode: "INTERLACED" || "INTERLACED_OPTIMIZE",
1475
1508
  * // SlowPal: "DISABLED" || "ENABLED",
1476
1509
  * // Telecine: "NONE" || "HARD",
@@ -1534,6 +1567,7 @@ declare const UpdatePresetCommand_base: {
1534
1567
  * // FramerateConversionAlgorithm: "DUPLICATE_DROP" || "INTERPOLATE" || "FRAMEFORMER" || "MAINTAIN_FRAME_COUNT",
1535
1568
  * // FramerateDenominator: Number("int"),
1536
1569
  * // FramerateNumerator: Number("int"),
1570
+ * // PerFrameMetrics: "<__listOfFrameMetricType>",
1537
1571
  * // Profile: "XAVC_HD_INTRA_CBG" || "XAVC_4K_INTRA_CBG" || "XAVC_4K_INTRA_VBR" || "XAVC_HD" || "XAVC_4K",
1538
1572
  * // SlowPal: "DISABLED" || "ENABLED",
1539
1573
  * // Softness: Number("int"),
@@ -23,7 +23,7 @@ export interface UpdateQueueCommandOutput extends UpdateQueueResponse, __Metadat
23
23
  }
24
24
  declare const UpdateQueueCommand_base: {
25
25
  new (input: UpdateQueueCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateQueueCommandInput, UpdateQueueCommandOutput, MediaConvertClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (__0_0: UpdateQueueCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateQueueCommandInput, UpdateQueueCommandOutput, MediaConvertClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (input: UpdateQueueCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateQueueCommandInput, UpdateQueueCommandOutput, MediaConvertClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
27
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
28
  };
29
29
  /**
@@ -11,9 +11,7 @@ export interface ClientInputEndpointParameters {
11
11
  export type ClientResolvedEndpointParameters = ClientInputEndpointParameters & {
12
12
  defaultSigningName: string;
13
13
  };
14
- export declare const resolveClientEndpointParameters: <T>(options: T & ClientInputEndpointParameters) => T & ClientInputEndpointParameters & {
15
- defaultSigningName: string;
16
- };
14
+ export declare const resolveClientEndpointParameters: <T>(options: T & ClientInputEndpointParameters) => T & ClientResolvedEndpointParameters;
17
15
  export declare const commonParams: {
18
16
  readonly UseFIPS: {
19
17
  readonly type: "builtInParams";
@@ -2744,6 +2744,22 @@ export interface Endpoint {
2744
2744
  */
2745
2745
  Url?: string | undefined;
2746
2746
  }
2747
+ /**
2748
+ * @public
2749
+ * @enum
2750
+ */
2751
+ export declare const FrameMetricType: {
2752
+ readonly MS_SSIM: "MS_SSIM";
2753
+ readonly PSNR: "PSNR";
2754
+ readonly PSNR_HVS: "PSNR_HVS";
2755
+ readonly QVBR: "QVBR";
2756
+ readonly SSIM: "SSIM";
2757
+ readonly VMAF: "VMAF";
2758
+ };
2759
+ /**
2760
+ * @public
2761
+ */
2762
+ export type FrameMetricType = (typeof FrameMetricType)[keyof typeof FrameMetricType];
2747
2763
  /**
2748
2764
  * Specify the details for each additional HLS manifest that you want the service to generate for this output group. Each manifest can reference a different subset of outputs in the group.
2749
2765
  * @public
@@ -2952,6 +2968,7 @@ export interface HlsRenditionGroupSettings {
2952
2968
  * @enum
2953
2969
  */
2954
2970
  export declare const AudioSelectorType: {
2971
+ readonly ALL_PCM: "ALL_PCM";
2955
2972
  readonly HLS_RENDITION_GROUP: "HLS_RENDITION_GROUP";
2956
2973
  readonly LANGUAGE_CODE: "LANGUAGE_CODE";
2957
2974
  readonly PID: "PID";
@@ -3476,7 +3493,7 @@ export declare const DynamicAudioSelectorType: {
3476
3493
  */
3477
3494
  export type DynamicAudioSelectorType = (typeof DynamicAudioSelectorType)[keyof typeof DynamicAudioSelectorType];
3478
3495
  /**
3479
- * Use Dynamic audio selectors when you do not know the track layout of your source when you submit your job, but want to select multiple audio tracks. When you include an audio track in your output and specify this Dynamic audio selector as the Audio source, MediaConvert creates an output audio track for each dynamically selected track. Note that when you include a Dynamic audio selector for two or more inputs, each input must have the same number of audio tracks and audio channels.
3496
+ * Use Dynamic audio selectors when you do not know the track layout of your source when you submit your job, but want to select multiple audio tracks. When you include an audio track in your output and specify this Dynamic audio selector as the Audio source, MediaConvert creates an audio track within that output for each dynamically selected track. Note that when you include a Dynamic audio selector for two or more inputs, each input must have the same number of audio tracks and audio channels.
3480
3497
  * @public
3481
3498
  */
3482
3499
  export interface DynamicAudioSelector {
@@ -4830,7 +4847,7 @@ export interface AutomatedAbrSettings {
4830
4847
  */
4831
4848
  MaxAbrBitrate?: number | undefined;
4832
4849
  /**
4833
- * Optional. Specify the QVBR quality level to use for all renditions in your automated ABR stack. To have MediaConvert automatically determine the quality level: Leave blank. To manually specify a quality level: Enter an integer from 1 to 10. MediaConvert will use a quality level up to the value that you specify, depending on your source. For more information about QVBR quality levels, see: https://docs.aws.amazon.com/mediaconvert/latest/ug/qvbr-guidelines.html
4850
+ * Optional. Specify the QVBR quality level to use for all renditions in your automated ABR stack. To have MediaConvert automatically determine the quality level: Leave blank. To manually specify a quality level: Enter a value from 1 to 10. MediaConvert will use a quality level up to the value that you specify, depending on your source. For more information about QVBR quality levels, see: https://docs.aws.amazon.com/mediaconvert/latest/ug/qvbr-guidelines.html
4834
4851
  * @public
4835
4852
  */
4836
4853
  MaxQualityLevel?: number | undefined;
@@ -6468,15 +6485,3 @@ export interface MsSmoothEncryptionSettings {
6468
6485
  */
6469
6486
  SpekeKeyProvider?: SpekeKeyProvider | undefined;
6470
6487
  }
6471
- /**
6472
- * @public
6473
- * @enum
6474
- */
6475
- export declare const MsSmoothFragmentLengthControl: {
6476
- readonly EXACT: "EXACT";
6477
- readonly GOP_MULTIPLE: "GOP_MULTIPLE";
6478
- };
6479
- /**
6480
- * @public
6481
- */
6482
- export type MsSmoothFragmentLengthControl = (typeof MsSmoothFragmentLengthControl)[keyof typeof MsSmoothFragmentLengthControl];
@@ -1,4 +1,16 @@
1
- import { AccelerationSettings, AccelerationStatus, AudioDescription, AutomatedEncodingSettings, AvailBlanking, BillingTagsSource, CaptionDescription, CmafGroupSettings, ColorConversion3DLUTSetting, DashIsoGroupSettings, DestinationSettings, EsamSettings, ExtendedDataServices, FileGroupSettings, Hdr10Metadata, HlsGroupSettings, HopDestination, Id3Insertion, ImageInserter, Input, JobMessages, JobPhase, KantarWatermarkSettings, MotionImageInserter, MsSmoothAdditionalManifest, MsSmoothAudioDeduplication, MsSmoothEncryptionSettings, MsSmoothFragmentLengthControl, NielsenConfiguration, NielsenNonLinearWatermarkSettings, OutputGroupDetail, QueueTransition, Rectangle } from "./models_0";
1
+ import { AudioDescription, AutomatedEncodingSettings, AvailBlanking, CaptionDescription, CmafGroupSettings, ColorConversion3DLUTSetting, DashIsoGroupSettings, DestinationSettings, EsamSettings, ExtendedDataServices, FileGroupSettings, FrameMetricType, Hdr10Metadata, HlsGroupSettings, Id3Insertion, ImageInserter, Input, KantarWatermarkSettings, MotionImageInserter, MsSmoothAdditionalManifest, MsSmoothAudioDeduplication, MsSmoothEncryptionSettings, NielsenConfiguration, NielsenNonLinearWatermarkSettings, Rectangle } from "./models_0";
2
+ /**
3
+ * @public
4
+ * @enum
5
+ */
6
+ export declare const MsSmoothFragmentLengthControl: {
7
+ readonly EXACT: "EXACT";
8
+ readonly GOP_MULTIPLE: "GOP_MULTIPLE";
9
+ };
10
+ /**
11
+ * @public
12
+ */
13
+ export type MsSmoothFragmentLengthControl = (typeof MsSmoothFragmentLengthControl)[keyof typeof MsSmoothFragmentLengthControl];
2
14
  /**
3
15
  * @public
4
16
  * @enum
@@ -102,6 +114,11 @@ export interface OutputGroupSettings {
102
114
  * @public
103
115
  */
104
116
  MsSmoothGroupSettings?: MsSmoothGroupSettings | undefined;
117
+ /**
118
+ * 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 video, video codec, and metric type. For example: video_h264_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.
119
+ * @public
120
+ */
121
+ PerFrameMetrics?: FrameMetricType[] | undefined;
105
122
  /**
106
123
  * Type of output group (File group, Apple HLS, DASH ISO, Microsoft Smooth Streaming, CMAF)
107
124
  * @public
@@ -1819,6 +1836,11 @@ export interface Av1Settings {
1819
1836
  * @public
1820
1837
  */
1821
1838
  NumberBFramesBetweenReferenceFrames?: number | undefined;
1839
+ /**
1840
+ * 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 video, video codec, and metric type. For example: video_h264_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.
1841
+ * @public
1842
+ */
1843
+ PerFrameMetrics?: FrameMetricType[] | undefined;
1822
1844
  /**
1823
1845
  * Settings for quality-defined variable bitrate encoding with the H.265 codec. Use these settings only when you set QVBR for Rate control mode.
1824
1846
  * @public
@@ -1994,6 +2016,11 @@ export interface AvcIntraSettings {
1994
2016
  * @public
1995
2017
  */
1996
2018
  InterlaceMode?: AvcIntraInterlaceMode | undefined;
2019
+ /**
2020
+ * 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 video, video codec, and metric type. For example: video_h264_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.
2021
+ * @public
2022
+ */
2023
+ PerFrameMetrics?: FrameMetricType[] | undefined;
1997
2024
  /**
1998
2025
  * 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.
1999
2026
  * @public
@@ -2685,6 +2712,11 @@ export interface H264Settings {
2685
2712
  * @public
2686
2713
  */
2687
2714
  ParNumerator?: number | undefined;
2715
+ /**
2716
+ * 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 video, video codec, and metric type. For example: video_h264_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.
2717
+ * @public
2718
+ */
2719
+ PerFrameMetrics?: FrameMetricType[] | undefined;
2688
2720
  /**
2689
2721
  * The Quality tuning level you choose represents a trade-off between the encoding speed of your job and the output video quality. For the fastest encoding speed at the cost of video quality: Choose Single pass. For a good balance between encoding speed and video quality: Leave blank or keep the default value Single pass HQ. For the best video quality, at the cost of encoding speed: Choose Multi pass HQ. MediaConvert performs an analysis pass on your input followed by an encoding pass. Outputs that use this feature incur pro-tier pricing.
2690
2722
  * @public
@@ -3295,6 +3327,11 @@ export interface H265Settings {
3295
3327
  * @public
3296
3328
  */
3297
3329
  ParNumerator?: number | undefined;
3330
+ /**
3331
+ * 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 video, video codec, and metric type. For example: video_h264_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.
3332
+ * @public
3333
+ */
3334
+ PerFrameMetrics?: FrameMetricType[] | undefined;
3298
3335
  /**
3299
3336
  * 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.
3300
3337
  * @public
@@ -3733,6 +3770,11 @@ export interface Mpeg2Settings {
3733
3770
  * @public
3734
3771
  */
3735
3772
  ParNumerator?: number | undefined;
3773
+ /**
3774
+ * 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 video, video codec, and metric type. For example: video_h264_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.
3775
+ * @public
3776
+ */
3777
+ PerFrameMetrics?: FrameMetricType[] | undefined;
3736
3778
  /**
3737
3779
  * 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.
3738
3780
  * @public
@@ -3956,6 +3998,11 @@ export interface ProresSettings {
3956
3998
  * @public
3957
3999
  */
3958
4000
  ParNumerator?: number | undefined;
4001
+ /**
4002
+ * 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 video, video codec, and metric type. For example: video_h264_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.
4003
+ * @public
4004
+ */
4005
+ PerFrameMetrics?: FrameMetricType[] | undefined;
3959
4006
  /**
3960
4007
  * 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.
3961
4008
  * @public
@@ -4938,6 +4985,11 @@ export interface XavcSettings {
4938
4985
  * @public
4939
4986
  */
4940
4987
  FramerateNumerator?: number | undefined;
4988
+ /**
4989
+ * 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 video, video codec, and metric type. For example: video_h264_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.
4990
+ * @public
4991
+ */
4992
+ PerFrameMetrics?: FrameMetricType[] | undefined;
4941
4993
  /**
4942
4994
  * Specify the XAVC profile for this output. For more information, see the Sony documentation at https://www.xavc-info.org/. Note that MediaConvert doesn't support the interlaced video XAVC operating points for XAVC_HD_INTRA_CBG. To create an interlaced XAVC output, choose the profile XAVC_HD.
4943
4995
  * @public
@@ -5955,7 +6007,7 @@ export interface JobSettings {
5955
6007
  */
5956
6008
  ExtendedDataServices?: ExtendedDataServices | undefined;
5957
6009
  /**
5958
- * Specify the input that MediaConvert references for your default output settings. MediaConvert uses this input's Resolution, Frame rate, and Pixel aspect ratio for all outputs that you don't manually specify different output settings for. Enabling this setting will disable "Follow source" for all other inputs. If MediaConvert cannot follow your source, for example if you specify an audio-only input, MediaConvert uses the first followable input instead. In your JSON job specification, enter an integer from 1 to 150 corresponding to the order of your inputs.
6010
+ * Specify the input that MediaConvert references for your default output settings. MediaConvert uses this input's Resolution, Frame rate, and Pixel aspect ratio for all outputs that you don't manually specify different output settings for. Enabling this setting will disable "Follow source" for all other inputs. If MediaConvert cannot follow your source, for example if you specify an audio-only input, MediaConvert uses the first followable input instead. In your JSON job specification, enter an integer from 1 to 150 corresponding to the order of your inputs.
5959
6011
  * @public
5960
6012
  */
5961
6013
  FollowSource?: number | undefined;
@@ -6089,154 +6141,3 @@ export interface WarningGroup {
6089
6141
  */
6090
6142
  Count: number | undefined;
6091
6143
  }
6092
- /**
6093
- * Each job converts an input file into an output file or files. For more information, see the User Guide at https://docs.aws.amazon.com/mediaconvert/latest/ug/what-is.html
6094
- * @public
6095
- */
6096
- export interface Job {
6097
- /**
6098
- * Accelerated transcoding can significantly speed up jobs with long, visually complex content.
6099
- * @public
6100
- */
6101
- AccelerationSettings?: AccelerationSettings | undefined;
6102
- /**
6103
- * Describes whether the current job is running with accelerated transcoding. For jobs that have Acceleration (AccelerationMode) set to DISABLED, AccelerationStatus is always NOT_APPLICABLE. For jobs that have Acceleration (AccelerationMode) set to ENABLED or PREFERRED, AccelerationStatus is one of the other states. AccelerationStatus is IN_PROGRESS initially, while the service determines whether the input files and job settings are compatible with accelerated transcoding. If they are, AcclerationStatus is ACCELERATED. If your input files and job settings aren't compatible with accelerated transcoding, the service either fails your job or runs it without accelerated transcoding, depending on how you set Acceleration (AccelerationMode). When the service runs your job without accelerated transcoding, AccelerationStatus is NOT_ACCELERATED.
6104
- * @public
6105
- */
6106
- AccelerationStatus?: AccelerationStatus | undefined;
6107
- /**
6108
- * An identifier for this resource that is unique within all of AWS.
6109
- * @public
6110
- */
6111
- Arn?: string | undefined;
6112
- /**
6113
- * The tag type that AWS Billing and Cost Management will use to sort your AWS Elemental MediaConvert costs on any billing report that you set up.
6114
- * @public
6115
- */
6116
- BillingTagsSource?: BillingTagsSource | undefined;
6117
- /**
6118
- * Prevent duplicate jobs from being created and ensure idempotency for your requests. A client request token can be any string that includes up to 64 ASCII characters. If you reuse a client request token within one minute of a successful request, the API returns the job details of the original request instead. For more information see https://docs.aws.amazon.com/mediaconvert/latest/apireference/idempotency.html.
6119
- * @public
6120
- */
6121
- ClientRequestToken?: string | undefined;
6122
- /**
6123
- * The time, in Unix epoch format in seconds, when the job got created.
6124
- * @public
6125
- */
6126
- CreatedAt?: Date | undefined;
6127
- /**
6128
- * A job's phase can be PROBING, TRANSCODING OR UPLOADING
6129
- * @public
6130
- */
6131
- CurrentPhase?: JobPhase | undefined;
6132
- /**
6133
- * Error code for the job
6134
- * @public
6135
- */
6136
- ErrorCode?: number | undefined;
6137
- /**
6138
- * Error message of Job
6139
- * @public
6140
- */
6141
- ErrorMessage?: string | undefined;
6142
- /**
6143
- * Optional list of hop destinations.
6144
- * @public
6145
- */
6146
- HopDestinations?: HopDestination[] | undefined;
6147
- /**
6148
- * A portion of the job's ARN, unique within your AWS Elemental MediaConvert resources
6149
- * @public
6150
- */
6151
- Id?: string | undefined;
6152
- /**
6153
- * The Job engine version that you requested for your job. Valid versions are in a YYYY-MM-DD format.
6154
- * @public
6155
- */
6156
- JobEngineVersionRequested?: string | undefined;
6157
- /**
6158
- * The Job engine version that your job used. Job engine versions are in a YYYY-MM-DD format. When you request an expired version, the response for this property will be empty. Requests to create jobs with an expired version result in a regular job, as if no specific Job engine version was requested. When you request an invalid version, the response for this property will be empty. Requests to create jobs with an invalid version result in a 400 error message, and no job is created.
6159
- * @public
6160
- */
6161
- JobEngineVersionUsed?: string | undefined;
6162
- /**
6163
- * An estimate of how far your job has progressed. This estimate is shown as a percentage of the total time from when your job leaves its queue to when your output files appear in your output Amazon S3 bucket. AWS Elemental MediaConvert provides jobPercentComplete in CloudWatch STATUS_UPDATE events and in the response to GetJob and ListJobs requests. The jobPercentComplete estimate is reliable for the following input containers: Quicktime, Transport Stream, MP4, and MXF. For some jobs, the service can't provide information about job progress. In those cases, jobPercentComplete returns a null value.
6164
- * @public
6165
- */
6166
- JobPercentComplete?: number | undefined;
6167
- /**
6168
- * The job template that the job is created from, if it is created from a job template.
6169
- * @public
6170
- */
6171
- JobTemplate?: string | undefined;
6172
- /**
6173
- * Provides messages from the service about jobs that you have already successfully submitted.
6174
- * @public
6175
- */
6176
- Messages?: JobMessages | undefined;
6177
- /**
6178
- * List of output group details
6179
- * @public
6180
- */
6181
- OutputGroupDetails?: OutputGroupDetail[] | undefined;
6182
- /**
6183
- * Relative priority on the job.
6184
- * @public
6185
- */
6186
- Priority?: number | undefined;
6187
- /**
6188
- * When you create a job, you can specify a queue to send it to. If you don't specify, the job will go to the default queue. For more about queues, see the User Guide topic at https://docs.aws.amazon.com/mediaconvert/latest/ug/what-is.html
6189
- * @public
6190
- */
6191
- Queue?: string | undefined;
6192
- /**
6193
- * The job's queue hopping history.
6194
- * @public
6195
- */
6196
- QueueTransitions?: QueueTransition[] | undefined;
6197
- /**
6198
- * The number of times that the service automatically attempted to process your job after encountering an error.
6199
- * @public
6200
- */
6201
- RetryCount?: number | undefined;
6202
- /**
6203
- * The IAM role you use for creating this job. For details about permissions, see the User Guide topic at the User Guide at https://docs.aws.amazon.com/mediaconvert/latest/ug/iam-role.html
6204
- * @public
6205
- */
6206
- Role: string | undefined;
6207
- /**
6208
- * JobSettings contains all the transcode settings for a job.
6209
- * @public
6210
- */
6211
- Settings: JobSettings | undefined;
6212
- /**
6213
- * Enable this setting when you run a test job to estimate how many reserved transcoding slots (RTS) you need. When this is enabled, MediaConvert runs your job from an on-demand queue with similar performance to what you will see with one RTS in a reserved queue. This setting is disabled by default.
6214
- * @public
6215
- */
6216
- SimulateReservedQueue?: SimulateReservedQueue | undefined;
6217
- /**
6218
- * A job's status can be SUBMITTED, PROGRESSING, COMPLETE, CANCELED, or ERROR.
6219
- * @public
6220
- */
6221
- Status?: JobStatus | undefined;
6222
- /**
6223
- * Specify how often MediaConvert sends STATUS_UPDATE events to Amazon CloudWatch Events. Set the interval, in seconds, between status updates. MediaConvert sends an update at this interval from the time the service begins processing your job to the time it completes the transcode or encounters an error.
6224
- * @public
6225
- */
6226
- StatusUpdateInterval?: StatusUpdateInterval | undefined;
6227
- /**
6228
- * Information about when jobs are submitted, started, and finished is specified in Unix epoch format in seconds.
6229
- * @public
6230
- */
6231
- Timing?: Timing | undefined;
6232
- /**
6233
- * User-defined metadata that you want to associate with an MediaConvert job. You specify metadata in key/value pairs.
6234
- * @public
6235
- */
6236
- UserMetadata?: Record<string, string> | undefined;
6237
- /**
6238
- * Contains any warning messages for the job. Use to help identify potential issues with your input, output, or job. For more information, see https://docs.aws.amazon.com/mediaconvert/latest/ug/warning_codes.html
6239
- * @public
6240
- */
6241
- Warnings?: WarningGroup[] | undefined;
6242
- }