@aws-sdk/client-mediaconvert 3.650.0 → 3.651.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 (46) hide show
  1. package/README.md +8 -0
  2. package/dist-cjs/index.js +2739 -2595
  3. package/dist-es/MediaConvert.js +2 -0
  4. package/dist-es/commands/ListVersionsCommand.js +22 -0
  5. package/dist-es/commands/index.js +1 -0
  6. package/dist-es/models/models_0.js +13 -20
  7. package/dist-es/models/models_1.js +25 -66
  8. package/dist-es/models/models_2.js +65 -0
  9. package/dist-es/pagination/ListVersionsPaginator.js +4 -0
  10. package/dist-es/pagination/index.js +1 -0
  11. package/dist-es/protocols/Aws_restJson1.js +102 -2
  12. package/dist-types/MediaConvert.d.ts +8 -0
  13. package/dist-types/MediaConvertClient.d.ts +3 -2
  14. package/dist-types/commands/AssociateCertificateCommand.d.ts +1 -1
  15. package/dist-types/commands/CreateJobCommand.d.ts +53 -4
  16. package/dist-types/commands/CreateJobTemplateCommand.d.ts +50 -4
  17. package/dist-types/commands/CreatePresetCommand.d.ts +4 -2
  18. package/dist-types/commands/GetJobCommand.d.ts +27 -2
  19. package/dist-types/commands/GetJobTemplateCommand.d.ts +25 -2
  20. package/dist-types/commands/GetPresetCommand.d.ts +2 -1
  21. package/dist-types/commands/ListJobTemplatesCommand.d.ts +25 -2
  22. package/dist-types/commands/ListJobsCommand.d.ts +27 -2
  23. package/dist-types/commands/ListPresetsCommand.d.ts +2 -1
  24. package/dist-types/commands/ListVersionsCommand.d.ts +85 -0
  25. package/dist-types/commands/SearchJobsCommand.d.ts +27 -2
  26. package/dist-types/commands/UpdateJobTemplateCommand.d.ts +50 -4
  27. package/dist-types/commands/UpdatePresetCommand.d.ts +4 -2
  28. package/dist-types/commands/index.d.ts +1 -0
  29. package/dist-types/models/models_0.d.ts +118 -68
  30. package/dist-types/models/models_1.d.ts +108 -86
  31. package/dist-types/models/models_2.d.ts +116 -1
  32. package/dist-types/pagination/ListVersionsPaginator.d.ts +7 -0
  33. package/dist-types/pagination/index.d.ts +1 -0
  34. package/dist-types/protocols/Aws_restJson1.d.ts +9 -0
  35. package/dist-types/ts3.4/MediaConvert.d.ts +18 -0
  36. package/dist-types/ts3.4/MediaConvertClient.d.ts +6 -0
  37. package/dist-types/ts3.4/commands/AssociateCertificateCommand.d.ts +1 -1
  38. package/dist-types/ts3.4/commands/ListVersionsCommand.d.ts +36 -0
  39. package/dist-types/ts3.4/commands/index.d.ts +1 -0
  40. package/dist-types/ts3.4/models/models_0.d.ts +35 -30
  41. package/dist-types/ts3.4/models/models_1.d.ts +44 -45
  42. package/dist-types/ts3.4/models/models_2.d.ts +48 -0
  43. package/dist-types/ts3.4/pagination/ListVersionsPaginator.d.ts +11 -0
  44. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  45. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +12 -0
  46. package/package.json +1 -1
@@ -294,7 +294,7 @@ export interface AacSettings {
294
294
  */
295
295
  Bitrate?: number;
296
296
  /**
297
- * AAC Profile.
297
+ * Specify the AAC profile. For the widest player compatibility and where higher bitrates are acceptable: Keep the default profile, LC (AAC-LC) For improved audio performance at lower bitrates: Choose HEV1 or HEV2. HEV1 (AAC-HE v1) adds spectral band replication to improve speech audio at low bitrates. HEV2 (AAC-HE v2) adds parametric stereo, which optimizes for encoding stereo audio at very low bitrates.
298
298
  * @public
299
299
  */
300
300
  CodecProfile?: AacCodecProfile;
@@ -304,7 +304,7 @@ export interface AacSettings {
304
304
  */
305
305
  CodingMode?: AacCodingMode;
306
306
  /**
307
- * Rate Control Mode.
307
+ * Specify the AAC rate control mode. For a constant bitrate: Choose CBR. Your AAC output bitrate will be equal to the value that you choose for Bitrate. For a variable bitrate: Choose VBR. Your AAC output bitrate will vary according to your audio content and the value that you choose for Bitrate quality.
308
308
  * @public
309
309
  */
310
310
  RateControlMode?: AacRateControlMode;
@@ -314,7 +314,7 @@ export interface AacSettings {
314
314
  */
315
315
  RawFormat?: AacRawFormat;
316
316
  /**
317
- * Specify the Sample rate in Hz. Valid sample rates depend on the Profile and Coding mode that you select. The following list shows valid sample rates for each Profile and Coding mode. * LC Profile, Coding mode 1.0, 2.0, and Receiver Mix: 8000, 12000, 16000, 22050, 24000, 32000, 44100, 48000, 88200, 96000. * LC Profile, Coding mode 5.1: 32000, 44100, 48000, 96000. * HEV1 Profile, Coding mode 1.0 and Receiver Mix: 22050, 24000, 32000, 44100, 48000. * HEV1 Profile, Coding mode 2.0 and 5.1: 32000, 44100, 48000, 96000. * HEV2 Profile, Coding mode 2.0: 22050, 24000, 32000, 44100, 48000.
317
+ * Specify the AAC sample rate in samples per second (Hz). Valid sample rates depend on the AAC profile and Coding mode that you select. For a list of supported sample rates, see: https://docs.aws.amazon.com/mediaconvert/latest/ug/aac-support.html
318
318
  * @public
319
319
  */
320
320
  SampleRate?: number;
@@ -324,7 +324,7 @@ export interface AacSettings {
324
324
  */
325
325
  Specification?: AacSpecification;
326
326
  /**
327
- * VBR Quality Level - Only used if rate_control_mode is VBR.
327
+ * Specify the quality of your variable bitrate (VBR) AAC audio. For a list of approximate VBR bitrates, see: https://docs.aws.amazon.com/mediaconvert/latest/ug/aac-support.html#aac_vbr
328
328
  * @public
329
329
  */
330
330
  VbrQuality?: AacVbrQuality;
@@ -2887,6 +2887,7 @@ export interface AudioSelectorGroup {
2887
2887
  export declare const AudioDurationCorrection: {
2888
2888
  readonly AUTO: "AUTO";
2889
2889
  readonly DISABLED: "DISABLED";
2890
+ readonly FORCE: "FORCE";
2890
2891
  readonly FRAME: "FRAME";
2891
2892
  readonly TRACK: "TRACK";
2892
2893
  };
@@ -2947,7 +2948,7 @@ export type AudioSelectorType = (typeof AudioSelectorType)[keyof typeof AudioSel
2947
2948
  */
2948
2949
  export interface AudioSelector {
2949
2950
  /**
2950
- * Apply audio timing corrections to help synchronize audio and video in your output. To apply timing corrections, your input must meet the following requirements: * Container: MP4, or MOV, with an accurate time-to-sample (STTS) table. * Audio track: AAC. Choose from the following audio timing correction settings: * Disabled (Default): Apply no correction. * Auto: Recommended for most inputs. MediaConvert analyzes the audio timing in your input and determines which correction setting to use, if needed. * Track: Adjust the duration of each audio frame by a constant amount to align the audio track length with STTS duration. Track-level correction does not affect pitch, and is recommended for tonal audio content such as music. * Frame: Adjust the duration of each audio frame by a variable amount to align audio frames with STTS timestamps. No corrections are made to already-aligned frames. Frame-level correction may affect the pitch of corrected frames, and is recommended for atonal audio content such as speech or percussion.
2951
+ * Apply audio timing corrections to help synchronize audio and video in your output. To apply timing corrections, your input must meet the following requirements: * Container: MP4, or MOV, with an accurate time-to-sample (STTS) table. * Audio track: AAC. Choose from the following audio timing correction settings: * Disabled (Default): Apply no correction. * Auto: Recommended for most inputs. MediaConvert analyzes the audio timing in your input and determines which correction setting to use, if needed. * Track: Adjust the duration of each audio frame by a constant amount to align the audio track length with STTS duration. Track-level correction does not affect pitch, and is recommended for tonal audio content such as music. * Frame: Adjust the duration of each audio frame by a variable amount to align audio frames with STTS timestamps. No corrections are made to already-aligned frames. Frame-level correction may affect the pitch of corrected frames, and is recommended for atonal audio content such as speech or percussion. * Force: Apply audio duration correction, either Track or Frame depending on your input, regardless of the accuracy of your input's STTS table. Your output audio and video may not be aligned or it may contain audio artifacts.
2951
2952
  * @public
2952
2953
  */
2953
2954
  AudioDurationCorrection?: AudioDurationCorrection;
@@ -3113,6 +3114,18 @@ export interface EmbeddedSourceSettings {
3113
3114
  */
3114
3115
  TerminateCaptions?: EmbeddedTerminateCaptions;
3115
3116
  }
3117
+ /**
3118
+ * @public
3119
+ * @enum
3120
+ */
3121
+ export declare const CaptionSourceByteRateLimit: {
3122
+ readonly DISABLED: "DISABLED";
3123
+ readonly ENABLED: "ENABLED";
3124
+ };
3125
+ /**
3126
+ * @public
3127
+ */
3128
+ export type CaptionSourceByteRateLimit = (typeof CaptionSourceByteRateLimit)[keyof typeof CaptionSourceByteRateLimit];
3116
3129
  /**
3117
3130
  * @public
3118
3131
  * @enum
@@ -3170,6 +3183,11 @@ export type FileSourceTimeDeltaUnits = (typeof FileSourceTimeDeltaUnits)[keyof t
3170
3183
  * @public
3171
3184
  */
3172
3185
  export interface FileSourceSettings {
3186
+ /**
3187
+ * Choose whether to limit the byte rate at which your SCC input captions are inserted into your output. To not limit the caption rate: We recommend that you keep the default value, Disabled. MediaConvert inserts captions in your output according to the byte rates listed in the EIA-608 specification, typically 2 or 3 caption bytes per frame depending on your output frame rate. To limit your output caption rate: Choose Enabled. Choose this option if your downstream systems require a maximum of 2 caption bytes per frame. Note that this setting has no effect when your output frame rate is 30 or 60.
3188
+ * @public
3189
+ */
3190
+ ByteRateLimit?: CaptionSourceByteRateLimit;
3173
3191
  /**
3174
3192
  * Specify whether this set of input captions appears in your outputs in both 608 and 708 format. If you choose Upconvert, MediaConvert includes the captions data in two ways: it passes the 608 data through using the 608 compatibility bytes fields of the 708 wrapper, and it also translates the 608 data into 708.
3175
3193
  * @public
@@ -3600,6 +3618,49 @@ export interface InputVideoGenerator {
3600
3618
  */
3601
3619
  SampleRate?: number;
3602
3620
  }
3621
+ /**
3622
+ * @public
3623
+ * @enum
3624
+ */
3625
+ export declare const VideoOverlayUnit: {
3626
+ readonly PERCENTAGE: "PERCENTAGE";
3627
+ readonly PIXELS: "PIXELS";
3628
+ };
3629
+ /**
3630
+ * @public
3631
+ */
3632
+ export type VideoOverlayUnit = (typeof VideoOverlayUnit)[keyof typeof VideoOverlayUnit];
3633
+ /**
3634
+ * position of video overlay
3635
+ * @public
3636
+ */
3637
+ export interface VideoOverlayPosition {
3638
+ /**
3639
+ * To scale your video overlay to the same height as the base input video: Leave blank. To scale the height of your video overlay to a different height: Enter an integer representing the Unit type that you choose, either Pixels or Percentage. For example, when you enter 360 and choose Pixels, your video overlay will be rendered with a height of 360. When you enter 50, choose Percentage, and your overlay's source has a height of 1080, your video overlay will be rendered with a height of 540. To scale your overlay to a specific height while automatically maintaining its original aspect ratio, enter a value for Height and leave Width blank.
3640
+ * @public
3641
+ */
3642
+ Height?: number;
3643
+ /**
3644
+ * Specify the Unit type to use when you enter a value for X position, Y position, Width, or Height. You can choose Pixels or Percentage. Leave blank to use the default value, Pixels.
3645
+ * @public
3646
+ */
3647
+ Unit?: VideoOverlayUnit;
3648
+ /**
3649
+ * To scale your video overlay to the same width as the base input video: Leave blank. To scale the width of your video overlay to a different width: Enter an integer representing the Unit type that you choose, either Pixels or Percentage. For example, when you enter 640 and choose Pixels, your video overlay will scale to a height of 640 pixels. When you enter 50, choose Percentage, and your overlay's source has a width of 1920, your video overlay will scale to a width of 960. To scale your overlay to a specific width while automatically maintaining its original aspect ratio, enter a value for Width and leave Height blank.
3650
+ * @public
3651
+ */
3652
+ Width?: number;
3653
+ /**
3654
+ * To position the left edge of your video overlay along the left edge of the base input video's frame: Keep blank, or enter 0. To position the left edge of your video overlay to the right, relative to the left edge of the base input video's frame: Enter an integer representing the Unit type that you choose, either Pixels or Percentage. For example, when you enter 10 and choose Pixels, your video overlay will be positioned 10 pixels from the left edge of the base input video's frame. When you enter 10, choose Percentage, and your base input video is 1920x1080, your video overlay will be positioned 192 pixels from the left edge of the base input video's frame.
3655
+ * @public
3656
+ */
3657
+ XPosition?: number;
3658
+ /**
3659
+ * To position the top edge of your video overlay along the top edge of the base input video's frame: Keep blank, or enter 0. To position the top edge of your video overlay down, relative to the top edge of the base input video's frame: Enter an integer representing the Unit type that you choose, either Pixels or Percentage. For example, when you enter 10 and choose Pixels, your video overlay will be positioned 10 pixels from the top edge of the base input video's frame. When you enter 10, choose Percentage, and your underlying video is 1920x1080, your video overlay will be positioned 108 pixels from the top edge of the base input video's frame.
3660
+ * @public
3661
+ */
3662
+ YPosition?: number;
3663
+ }
3603
3664
  /**
3604
3665
  * To transcode only portions of your video overlay, include one input clip for each part of your video overlay that you want in your output.
3605
3666
  * @public
@@ -3622,7 +3683,8 @@ export interface VideoOverlayInputClipping {
3622
3683
  */
3623
3684
  export interface VideoOverlayInput {
3624
3685
  /**
3625
- * Specify the input file S3, HTTP, or HTTPS URI for your video overlay. For consistency in color and formatting in your output video image, we recommend that you specify a video with similar characteristics as the underlying input video.
3686
+ * Specify the input file S3, HTTP, or HTTPS URL for your video overlay.
3687
+ * To specify one or more Transitions for your base input video instead: Leave blank.
3626
3688
  * @public
3627
3689
  */
3628
3690
  FileInput?: string;
@@ -3642,26 +3704,74 @@ export interface VideoOverlayInput {
3642
3704
  */
3643
3705
  TimecodeStart?: string;
3644
3706
  }
3707
+ /**
3708
+ * @public
3709
+ * @enum
3710
+ */
3711
+ export declare const VideoOverlayPlayBackMode: {
3712
+ readonly ONCE: "ONCE";
3713
+ readonly REPEAT: "REPEAT";
3714
+ };
3715
+ /**
3716
+ * @public
3717
+ */
3718
+ export type VideoOverlayPlayBackMode = (typeof VideoOverlayPlayBackMode)[keyof typeof VideoOverlayPlayBackMode];
3719
+ /**
3720
+ * Specify one or more Transitions for your video overlay. Use Transitions to reposition or resize your overlay over time. To use the same position and size for the duration of your video overlay: Leave blank. To specify a Transition: Enter a value for Start timecode, End Timecode, X Position, Y Position, Width, or Height.
3721
+ * @public
3722
+ */
3723
+ export interface VideoOverlayTransition {
3724
+ /**
3725
+ * Specify the ending position for this transition, relative to the base input video's frame. Your video overlay will move smoothly to this position, beginning at this transition's Start timecode and ending at this transition's End timecode.
3726
+ * @public
3727
+ */
3728
+ EndPosition?: VideoOverlayPosition;
3729
+ /**
3730
+ * Specify the timecode for when this transition ends. Use the format HH:MM:SS:FF or HH:MM:SS;FF, where HH is the hour, MM is the minute, SS is the second, and FF is the frame number. When entering this value, take into account your choice for Timecode source.
3731
+ * @public
3732
+ */
3733
+ EndTimecode?: string;
3734
+ /**
3735
+ * Specify the timecode for when this transition begins. Use the format HH:MM:SS:FF or HH:MM:SS;FF, where HH is the hour, MM is the minute, SS is the second, and FF is the frame number. When entering this value, take into account your choice for Timecode source.
3736
+ * @public
3737
+ */
3738
+ StartTimecode?: string;
3739
+ }
3645
3740
  /**
3646
3741
  * Overlay one or more videos on top of your input video. For more information, see https://docs.aws.amazon.com/mediaconvert/latest/ug/video-overlays.html
3647
3742
  * @public
3648
3743
  */
3649
3744
  export interface VideoOverlay {
3650
3745
  /**
3651
- * Enter the end timecode in the underlying input video for this overlay. Your overlay will be active through this frame. To display your video overlay for the duration of the underlying video: Leave blank. Use the format HH:MM:SS:FF or HH:MM:SS;FF, where HH is the hour, MM is the minute, SS is the second, and FF is the frame number. When entering this value, take into account your choice for the underlying Input timecode source. For example, if you have embedded timecodes that start at 01:00:00:00 and you want your overlay to end ten minutes into the video, enter 01:10:00:00.
3746
+ * Enter the end timecode in the base input video for this overlay. Your overlay will be active through this frame. To display your video overlay for the duration of the base input video: Leave blank. Use the format HH:MM:SS:FF or HH:MM:SS;FF, where HH is the hour, MM is the minute, SS isthe second, and FF is the frame number. When entering this value, take into account your choice for the base input video's timecode source. For example, if you have embedded timecodes that start at 01:00:00:00 and you want your overlay to end ten minutes into the video, enter 01:10:00:00.
3652
3747
  * @public
3653
3748
  */
3654
3749
  EndTimecode?: string;
3750
+ /**
3751
+ * Specify the Initial position of your video overlay. To specify the Initial position of your video overlay, including distance from the left or top edge of the base input video's frame, or size: Enter a value for X position, Y position, Width, or Height. To use the full frame of the base input video: Leave blank.
3752
+ * @public
3753
+ */
3754
+ InitialPosition?: VideoOverlayPosition;
3655
3755
  /**
3656
3756
  * Input settings for Video overlay. You can include one or more video overlays in sequence at different times that you specify.
3657
3757
  * @public
3658
3758
  */
3659
3759
  Input?: VideoOverlayInput;
3660
3760
  /**
3661
- * Enter the start timecode in the underlying input video for this overlay. Your overlay will be active starting with this frame. To display your video overlay starting at the beginning of the underlying video: Leave blank. Use the format HH:MM:SS:FF or HH:MM:SS;FF, where HH is the hour, MM is the minute, SS is the second, and FF is the frame number. When entering this value, take into account your choice for the underlying Input timecode source. For example, if you have embedded timecodes that start at 01:00:00:00 and you want your overlay to begin five minutes into the video, enter 01:05:00:00.
3761
+ * Specify whether your video overlay repeats or plays only once. To repeat your video overlay on a loop: Keep the default value, Repeat. Your overlay will repeat for the duration of the base input video. To playback your video overlay only once: Choose Once. With either option, you can end playback at a time that you specify by entering a value for End timecode.
3762
+ * @public
3763
+ */
3764
+ Playback?: VideoOverlayPlayBackMode;
3765
+ /**
3766
+ * Enter the start timecode in the base input video for this overlay. Your overlay will be active starting with this frame. To display your video overlay starting at the beginning of the base input video: Leave blank. Use the format HH:MM:SS:FF or HH:MM:SS;FF, where HH is the hour, MM is the minute, SS is the second, and FF is the frame number. When entering this value, take into account your choice for the base input video's timecode source. For example, if you have embedded timecodes that start at 01:00:00:00 and you want your overlay to begin five minutes into the video, enter 01:05:00:00.
3662
3767
  * @public
3663
3768
  */
3664
3769
  StartTimecode?: string;
3770
+ /**
3771
+ * Specify one or more transitions for your video overlay. Use Transitions to reposition or resize your overlay over time. To use the same position and size for the duration of your video overlay: Leave blank. To specify a Transition: Enter a value for Start timecode, End Timecode, X Position, Y Position, Width, or Height.
3772
+ * @public
3773
+ */
3774
+ Transitions?: VideoOverlayTransition[];
3665
3775
  }
3666
3776
  /**
3667
3777
  * @public
@@ -6361,63 +6471,3 @@ export declare const CmfcAudioTrackType: {
6361
6471
  * @public
6362
6472
  */
6363
6473
  export type CmfcAudioTrackType = (typeof CmfcAudioTrackType)[keyof typeof CmfcAudioTrackType];
6364
- /**
6365
- * @public
6366
- * @enum
6367
- */
6368
- export declare const CmfcDescriptiveVideoServiceFlag: {
6369
- readonly DONT_FLAG: "DONT_FLAG";
6370
- readonly FLAG: "FLAG";
6371
- };
6372
- /**
6373
- * @public
6374
- */
6375
- export type CmfcDescriptiveVideoServiceFlag = (typeof CmfcDescriptiveVideoServiceFlag)[keyof typeof CmfcDescriptiveVideoServiceFlag];
6376
- /**
6377
- * @public
6378
- * @enum
6379
- */
6380
- export declare const CmfcIFrameOnlyManifest: {
6381
- readonly EXCLUDE: "EXCLUDE";
6382
- readonly INCLUDE: "INCLUDE";
6383
- };
6384
- /**
6385
- * @public
6386
- */
6387
- export type CmfcIFrameOnlyManifest = (typeof CmfcIFrameOnlyManifest)[keyof typeof CmfcIFrameOnlyManifest];
6388
- /**
6389
- * @public
6390
- * @enum
6391
- */
6392
- export declare const CmfcKlvMetadata: {
6393
- readonly NONE: "NONE";
6394
- readonly PASSTHROUGH: "PASSTHROUGH";
6395
- };
6396
- /**
6397
- * @public
6398
- */
6399
- export type CmfcKlvMetadata = (typeof CmfcKlvMetadata)[keyof typeof CmfcKlvMetadata];
6400
- /**
6401
- * @public
6402
- * @enum
6403
- */
6404
- export declare const CmfcManifestMetadataSignaling: {
6405
- readonly DISABLED: "DISABLED";
6406
- readonly ENABLED: "ENABLED";
6407
- };
6408
- /**
6409
- * @public
6410
- */
6411
- export type CmfcManifestMetadataSignaling = (typeof CmfcManifestMetadataSignaling)[keyof typeof CmfcManifestMetadataSignaling];
6412
- /**
6413
- * @public
6414
- * @enum
6415
- */
6416
- export declare const CmfcScte35Esam: {
6417
- readonly INSERT: "INSERT";
6418
- readonly NONE: "NONE";
6419
- };
6420
- /**
6421
- * @public
6422
- */
6423
- export type CmfcScte35Esam = (typeof CmfcScte35Esam)[keyof typeof CmfcScte35Esam];
@@ -1,6 +1,64 @@
1
- import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
- import { MediaConvertServiceException as __BaseException } from "./MediaConvertServiceException";
3
- import { AccelerationSettings, AccelerationStatus, AudioDescription, AutomatedEncodingSettings, AvailBlanking, BillingTagsSource, CaptionDescription, CaptionDescriptionPreset, CmfcAudioDuration, CmfcAudioTrackType, CmfcDescriptiveVideoServiceFlag, CmfcIFrameOnlyManifest, CmfcKlvMetadata, CmfcManifestMetadataSignaling, CmfcScte35Esam, ColorConversion3DLUTSetting, EsamSettings, ExtendedDataServices, Hdr10Metadata, HopDestination, Id3Insertion, ImageInserter, Input, InputTemplate, JobMessages, JobPhase, KantarWatermarkSettings, MotionImageInserter, NielsenConfiguration, NielsenNonLinearWatermarkSettings, OutputGroupDetail, OutputGroupSettings, QueueTransition, Rectangle } from "./models_0";
1
+ import { AccelerationSettings, AccelerationStatus, AudioDescription, AutomatedEncodingSettings, AvailBlanking, BillingTagsSource, CaptionDescription, CaptionDescriptionPreset, CmfcAudioDuration, CmfcAudioTrackType, ColorConversion3DLUTSetting, EsamSettings, ExtendedDataServices, Hdr10Metadata, HopDestination, Id3Insertion, ImageInserter, Input, InputTemplate, JobMessages, JobPhase, KantarWatermarkSettings, MotionImageInserter, NielsenConfiguration, NielsenNonLinearWatermarkSettings, OutputGroupDetail, OutputGroupSettings, QueueTransition, Rectangle } from "./models_0";
2
+ /**
3
+ * @public
4
+ * @enum
5
+ */
6
+ export declare const CmfcDescriptiveVideoServiceFlag: {
7
+ readonly DONT_FLAG: "DONT_FLAG";
8
+ readonly FLAG: "FLAG";
9
+ };
10
+ /**
11
+ * @public
12
+ */
13
+ export type CmfcDescriptiveVideoServiceFlag = (typeof CmfcDescriptiveVideoServiceFlag)[keyof typeof CmfcDescriptiveVideoServiceFlag];
14
+ /**
15
+ * @public
16
+ * @enum
17
+ */
18
+ export declare const CmfcIFrameOnlyManifest: {
19
+ readonly EXCLUDE: "EXCLUDE";
20
+ readonly INCLUDE: "INCLUDE";
21
+ };
22
+ /**
23
+ * @public
24
+ */
25
+ export type CmfcIFrameOnlyManifest = (typeof CmfcIFrameOnlyManifest)[keyof typeof CmfcIFrameOnlyManifest];
26
+ /**
27
+ * @public
28
+ * @enum
29
+ */
30
+ export declare const CmfcKlvMetadata: {
31
+ readonly NONE: "NONE";
32
+ readonly PASSTHROUGH: "PASSTHROUGH";
33
+ };
34
+ /**
35
+ * @public
36
+ */
37
+ export type CmfcKlvMetadata = (typeof CmfcKlvMetadata)[keyof typeof CmfcKlvMetadata];
38
+ /**
39
+ * @public
40
+ * @enum
41
+ */
42
+ export declare const CmfcManifestMetadataSignaling: {
43
+ readonly DISABLED: "DISABLED";
44
+ readonly ENABLED: "ENABLED";
45
+ };
46
+ /**
47
+ * @public
48
+ */
49
+ export type CmfcManifestMetadataSignaling = (typeof CmfcManifestMetadataSignaling)[keyof typeof CmfcManifestMetadataSignaling];
50
+ /**
51
+ * @public
52
+ * @enum
53
+ */
54
+ export declare const CmfcScte35Esam: {
55
+ readonly INSERT: "INSERT";
56
+ readonly NONE: "NONE";
57
+ };
58
+ /**
59
+ * @public
60
+ */
61
+ export type CmfcScte35Esam = (typeof CmfcScte35Esam)[keyof typeof CmfcScte35Esam];
4
62
  /**
5
63
  * @public
6
64
  * @enum
@@ -130,6 +188,7 @@ export declare const ContainerType: {
130
188
  readonly MP4: "MP4";
131
189
  readonly MPD: "MPD";
132
190
  readonly MXF: "MXF";
191
+ readonly OGG: "OGG";
133
192
  readonly RAW: "RAW";
134
193
  readonly WEBM: "WEBM";
135
194
  readonly Y4M: "Y4M";
@@ -2140,6 +2199,18 @@ export declare const H264RepeatPps: {
2140
2199
  * @public
2141
2200
  */
2142
2201
  export type H264RepeatPps = (typeof H264RepeatPps)[keyof typeof H264RepeatPps];
2202
+ /**
2203
+ * @public
2204
+ * @enum
2205
+ */
2206
+ export declare const H264SaliencyAwareEncoding: {
2207
+ readonly DISABLED: "DISABLED";
2208
+ readonly PREFERRED: "PREFERRED";
2209
+ };
2210
+ /**
2211
+ * @public
2212
+ */
2213
+ export type H264SaliencyAwareEncoding = (typeof H264SaliencyAwareEncoding)[keyof typeof H264SaliencyAwareEncoding];
2143
2214
  /**
2144
2215
  * @public
2145
2216
  * @enum
@@ -2359,7 +2430,7 @@ export interface H264Settings {
2359
2430
  */
2360
2431
  MaxBitrate?: number;
2361
2432
  /**
2362
- * Use this setting only when you also enable Scene change detection. This setting determines how the encoder manages the spacing between I-frames that it inserts as part of the I-frame cadence and the I-frames that it inserts for Scene change detection. We recommend that you have the transcoder automatically choose this value for you based on characteristics of your input video. To enable this automatic behavior, do this by keeping the default empty value. When you explicitly specify a value for this setting, the encoder determines whether to skip a cadence-driven I-frame by the value you set. For example, if you set Min I interval to 5 and a cadence-driven I-frame would fall within 5 frames of a scene-change I-frame, then the encoder skips the cadence-driven I-frame. In this way, one GOP is shrunk slightly and one GOP is stretched slightly. When the cadence-driven I-frames are farther from the scene-change I-frame than the value you set, then the encoder leaves all I-frames in place and the GOPs surrounding the scene change are smaller than the usual cadence GOPs.
2433
+ * Specify the minimum number of frames allowed between two IDR-frames in your output. This includes frames created at the start of a GOP or a scene change. Use Min I-Interval to improve video compression by varying GOP size when two IDR-frames would be created near each other. For example, if a regular cadence-driven IDR-frame would fall within 5 frames of a scene-change IDR-frame, and you set Min I-interval to 5, then the encoder would only write an IDR-frame for the scene-change. In this way, one GOP is shortened or extended. If a cadence-driven IDR-frame would be further than 5 frames from a scene-change IDR-frame, then the encoder leaves all IDR-frames in place. To use an automatically determined interval: We recommend that you keep this value blank. This allows for MediaConvert to use an optimal setting according to the characteristics of your input video, and results in better video compression. To manually specify an interval: Enter a value from 1 to 30. Use when your downstream systems have specific GOP size requirements. To disable GOP size variance: Enter 0. MediaConvert will only create IDR-frames at the start of your output's cadence-driven GOP. Use when your downstream systems require a regular GOP size.
2363
2434
  * @public
2364
2435
  */
2365
2436
  MinIInterval?: number;
@@ -2408,6 +2479,11 @@ export interface H264Settings {
2408
2479
  * @public
2409
2480
  */
2410
2481
  RepeatPps?: H264RepeatPps;
2482
+ /**
2483
+ * Specify whether to apply Saliency aware encoding to your output. Use to improve the perceptual video quality of your output by allocating more encoding bits to the prominent or noticeable parts of your content. To apply saliency aware encoding, when possible: We recommend that you choose Preferred. The effects of Saliency aware encoding are best seen in lower bitrate outputs. When you choose Preferred, note that Saliency aware encoding will only apply to outputs that are 720p or higher in resolution. To not apply saliency aware encoding, prioritizing encoding speed over perceptual video quality: Choose Disabled.
2484
+ * @public
2485
+ */
2486
+ SaliencyAwareEncoding?: H264SaliencyAwareEncoding;
2411
2487
  /**
2412
2488
  * 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.
2413
2489
  * @public
@@ -2941,7 +3017,7 @@ export interface H265Settings {
2941
3017
  */
2942
3018
  MaxBitrate?: number;
2943
3019
  /**
2944
- * Use this setting only when you also enable Scene change detection. This setting determines how the encoder manages the spacing between I-frames that it inserts as part of the I-frame cadence and the I-frames that it inserts for Scene change detection. We recommend that you have the transcoder automatically choose this value for you based on characteristics of your input video. To enable this automatic behavior, do this by keeping the default empty value. When you explicitly specify a value for this setting, the encoder determines whether to skip a cadence-driven I-frame by the value you set. For example, if you set Min I interval to 5 and a cadence-driven I-frame would fall within 5 frames of a scene-change I-frame, then the encoder skips the cadence-driven I-frame. In this way, one GOP is shrunk slightly and one GOP is stretched slightly. When the cadence-driven I-frames are farther from the scene-change I-frame than the value you set, then the encoder leaves all I-frames in place and the GOPs surrounding the scene change are smaller than the usual cadence GOPs.
3020
+ * Specify the minimum number of frames allowed between two IDR-frames in your output. This includes frames created at the start of a GOP or a scene change. Use Min I-Interval to improve video compression by varying GOP size when two IDR-frames would be created near each other. For example, if a regular cadence-driven IDR-frame would fall within 5 frames of a scene-change IDR-frame, and you set Min I-interval to 5, then the encoder would only write an IDR-frame for the scene-change. In this way, one GOP is shortened or extended. If a cadence-driven IDR-frame would be further than 5 frames from a scene-change IDR-frame, then the encoder leaves all IDR-frames in place. To use an automatically determined interval: We recommend that you keep this value blank. This allows for MediaConvert to use an optimal setting according to the characteristics of your input video, and results in better video compression. To manually specify an interval: Enter a value from 1 to 30. Use when your downstream systems have specific GOP size requirements. To disable GOP size variance: Enter 0. MediaConvert will only create IDR-frames at the start of your output's cadence-driven GOP. Use when your downstream systems require a regular GOP size.
2945
3021
  * @public
2946
3022
  */
2947
3023
  MinIInterval?: number;
@@ -3383,7 +3459,7 @@ export interface Mpeg2Settings {
3383
3459
  */
3384
3460
  MaxBitrate?: number;
3385
3461
  /**
3386
- * Use this setting only when you also enable Scene change detection. This setting determines how the encoder manages the spacing between I-frames that it inserts as part of the I-frame cadence and the I-frames that it inserts for Scene change detection. When you specify a value for this setting, the encoder determines whether to skip a cadence-driven I-frame by the value you set. For example, if you set Min I interval to 5 and a cadence-driven I-frame would fall within 5 frames of a scene-change I-frame, then the encoder skips the cadence-driven I-frame. In this way, one GOP is shrunk slightly and one GOP is stretched slightly. When the cadence-driven I-frames are farther from the scene-change I-frame than the value you set, then the encoder leaves all I-frames in place and the GOPs surrounding the scene change are smaller than the usual cadence GOPs.
3462
+ * Specify the minimum number of frames allowed between two IDR-frames in your output. This includes frames created at the start of a GOP or a scene change. Use Min I-Interval to improve video compression by varying GOP size when two IDR-frames would be created near each other. For example, if a regular cadence-driven IDR-frame would fall within 5 frames of a scene-change IDR-frame, and you set Min I-interval to 5, then the encoder would only write an IDR-frame for the scene-change. In this way, one GOP is shortened or extended. If a cadence-driven IDR-frame would be further than 5 frames from a scene-change IDR-frame, then the encoder leaves all IDR-frames in place. To manually specify an interval: Enter a value from 1 to 30. Use when your downstream systems have specific GOP size requirements. To disable GOP size variance: Enter 0. MediaConvert will only create IDR-frames at the start of your output's cadence-driven GOP. Use when your downstream systems require a regular GOP size.
3387
3463
  * @public
3388
3464
  */
3389
3465
  MinIInterval?: number;
@@ -5790,6 +5866,16 @@ export interface Job {
5790
5866
  * @public
5791
5867
  */
5792
5868
  Id?: string;
5869
+ /**
5870
+ * The Job engine version that you requested for your job. Valid versions are in a YYYY-MM-DD format.
5871
+ * @public
5872
+ */
5873
+ JobEngineVersionRequested?: string;
5874
+ /**
5875
+ * 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.
5876
+ * @public
5877
+ */
5878
+ JobEngineVersionUsed?: string;
5793
5879
  /**
5794
5880
  * 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.
5795
5881
  * @public
@@ -5871,6 +5957,22 @@ export interface Job {
5871
5957
  */
5872
5958
  Warnings?: WarningGroup[];
5873
5959
  }
5960
+ /**
5961
+ * Use Job engine versions to run jobs for your production workflow on one version, while you test and validate the latest version. Job engine versions are in a YYYY-MM-DD format.
5962
+ * @public
5963
+ */
5964
+ export interface JobEngineVersion {
5965
+ /**
5966
+ * The date that this Job engine version expires. Requests to create jobs with an expired version result in a regular job, as if no specific Job engine version was requested.
5967
+ * @public
5968
+ */
5969
+ ExpirationDate?: Date;
5970
+ /**
5971
+ * Use Job engine versions to run jobs for your production workflow on one version, while you test and validate the latest version. Job engine versions are in a YYYY-MM-DD format.
5972
+ * @public
5973
+ */
5974
+ Version?: string;
5975
+ }
5874
5976
  /**
5875
5977
  * JobTemplateSettings contains all the transcode settings saved in the template that will be applied to jobs created from it.
5876
5978
  * @public
@@ -6258,83 +6360,3 @@ export interface Queue {
6258
6360
  */
6259
6361
  Type?: Type;
6260
6362
  }
6261
- /**
6262
- * @public
6263
- */
6264
- export interface AssociateCertificateRequest {
6265
- /**
6266
- * The ARN of the ACM certificate that you want to associate with your MediaConvert resource.
6267
- * @public
6268
- */
6269
- Arn: string | undefined;
6270
- }
6271
- /**
6272
- * @public
6273
- */
6274
- export interface AssociateCertificateResponse {
6275
- }
6276
- /**
6277
- * The service can't process your request because of a problem in the request. Please check your request form and syntax.
6278
- * @public
6279
- */
6280
- export declare class BadRequestException extends __BaseException {
6281
- readonly name: "BadRequestException";
6282
- readonly $fault: "client";
6283
- Message?: string;
6284
- /**
6285
- * @internal
6286
- */
6287
- constructor(opts: __ExceptionOptionType<BadRequestException, __BaseException>);
6288
- }
6289
- /**
6290
- * The service couldn't complete your request because there is a conflict with the current state of the resource.
6291
- * @public
6292
- */
6293
- export declare class ConflictException extends __BaseException {
6294
- readonly name: "ConflictException";
6295
- readonly $fault: "client";
6296
- Message?: string;
6297
- /**
6298
- * @internal
6299
- */
6300
- constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
6301
- }
6302
- /**
6303
- * You don't have permissions for this action with the credentials you sent.
6304
- * @public
6305
- */
6306
- export declare class ForbiddenException extends __BaseException {
6307
- readonly name: "ForbiddenException";
6308
- readonly $fault: "client";
6309
- Message?: string;
6310
- /**
6311
- * @internal
6312
- */
6313
- constructor(opts: __ExceptionOptionType<ForbiddenException, __BaseException>);
6314
- }
6315
- /**
6316
- * The service encountered an unexpected condition and can't fulfill your request.
6317
- * @public
6318
- */
6319
- export declare class InternalServerErrorException extends __BaseException {
6320
- readonly name: "InternalServerErrorException";
6321
- readonly $fault: "server";
6322
- Message?: string;
6323
- /**
6324
- * @internal
6325
- */
6326
- constructor(opts: __ExceptionOptionType<InternalServerErrorException, __BaseException>);
6327
- }
6328
- /**
6329
- * The resource you requested doesn't exist.
6330
- * @public
6331
- */
6332
- export declare class NotFoundException extends __BaseException {
6333
- readonly name: "NotFoundException";
6334
- readonly $fault: "client";
6335
- Message?: string;
6336
- /**
6337
- * @internal
6338
- */
6339
- constructor(opts: __ExceptionOptionType<NotFoundException, __BaseException>);
6340
- }