aws-sdk-mediaconvert 1.172.0 → 1.178.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.
@@ -814,10 +814,16 @@ module Aws::MediaConvert
814
814
  # @return [String]
815
815
  #
816
816
  # @!attribute [rw] default_selection
817
- # Enable this setting on one audio selector to set it as the default
818
- # for the job. The service uses this default for outputs where it
819
- # can't find the specified input audio. If you don't set a default,
820
- # those outputs have no audio.
817
+ # Specify a fallback audio selector for this input. Use to ensure
818
+ # outputs have audio even when the audio selector you specify in your
819
+ # output is missing from the source. DEFAULT (Checked in the
820
+ # MediaConvert console): If your output settings specify an audio
821
+ # selector that does not exist in this input, MediaConvert uses this
822
+ # audio selector instead. This is useful when you have multiple inputs
823
+ # with a different number of audio tracks. NOT\_DEFAULT (Unchecked in
824
+ # the MediaConvert console): MediaConvert will not fallback from any
825
+ # missing audio selector. Any output specifying a missing audio
826
+ # selector will be silent.
821
827
  # @return [String]
822
828
  #
823
829
  # @!attribute [rw] external_audio_file_input
@@ -2802,6 +2808,23 @@ module Aws::MediaConvert
2802
2808
  # output group, you must explicitly choose a value for this setting.
2803
2809
  # @return [String]
2804
2810
  #
2811
+ # @!attribute [rw] c2pa_manifest
2812
+ # When enabled, a C2PA compliant manifest will be generated, signed
2813
+ # and embeded in the output. For more information on C2PA, see
2814
+ # https://c2pa.org/specifications/specifications/2.1/index.html
2815
+ # @return [String]
2816
+ #
2817
+ # @!attribute [rw] certificate_secret
2818
+ # Specify the name or ARN of the AWS Secrets Manager secret that
2819
+ # contains your C2PA public certificate chain in PEM format. Provide a
2820
+ # valid secret name or ARN. Note that your MediaConvert service role
2821
+ # must allow access to this secret. The public certificate chain is
2822
+ # added to the COSE header (x5chain) for signature validation. Include
2823
+ # the signer's certificate and all intermediate certificates. Do not
2824
+ # include the root certificate. For details on COSE, see:
2825
+ # https://opensource.contentauthenticity.org/docs/manifest/signing-manifests
2826
+ # @return [String]
2827
+ #
2805
2828
  # @!attribute [rw] descriptive_video_service_flag
2806
2829
  # Specify whether to flag this audio track as descriptive video
2807
2830
  # service (DVS) in your HLS parent manifest. When you choose Flag,
@@ -2859,6 +2882,12 @@ module Aws::MediaConvert
2859
2882
  # you don't want those SCTE-35 markers in this output.
2860
2883
  # @return [String]
2861
2884
  #
2885
+ # @!attribute [rw] signing_kms_key
2886
+ # Specify the ID or ARN of the AWS KMS key used to sign the C2PA
2887
+ # manifest in your MP4 output. Provide a valid KMS key ARN. Note that
2888
+ # your MediaConvert service role must allow access to this key.
2889
+ # @return [String]
2890
+ #
2862
2891
  # @!attribute [rw] timed_metadata
2863
2892
  # To include ID3 metadata in this output: Set ID3 metadata to
2864
2893
  # Passthrough. Specify this ID3 metadata in Custom ID3 metadata
@@ -2898,12 +2927,15 @@ module Aws::MediaConvert
2898
2927
  :audio_group_id,
2899
2928
  :audio_rendition_sets,
2900
2929
  :audio_track_type,
2930
+ :c2pa_manifest,
2931
+ :certificate_secret,
2901
2932
  :descriptive_video_service_flag,
2902
2933
  :i_frame_only_manifest,
2903
2934
  :klv_metadata,
2904
2935
  :manifest_metadata_signaling,
2905
2936
  :scte_35_esam,
2906
2937
  :scte_35_source,
2938
+ :signing_kms_key,
2907
2939
  :timed_metadata,
2908
2940
  :timed_metadata_box_version,
2909
2941
  :timed_metadata_scheme_id_uri,
@@ -6854,6 +6886,18 @@ module Aws::MediaConvert
6854
6886
  # systems require a regular GOP size.
6855
6887
  # @return [Integer]
6856
6888
  #
6889
+ # @!attribute [rw] mv_over_picture_boundaries
6890
+ # If you are setting up the picture as a tile, you must set this to
6891
+ # "disabled". In all other configurations, you typically enter
6892
+ # "enabled".
6893
+ # @return [String]
6894
+ #
6895
+ # @!attribute [rw] mv_temporal_predictor
6896
+ # If you are setting up the picture as a tile, you must set this to
6897
+ # "disabled". In other configurations, you typically enter
6898
+ # "enabled".
6899
+ # @return [String]
6900
+ #
6857
6901
  # @!attribute [rw] number_b_frames_between_reference_frames
6858
6902
  # Specify the number of B-frames between reference frames in this
6859
6903
  # output. For the best video quality: Leave blank. MediaConvert
@@ -7042,11 +7086,40 @@ module Aws::MediaConvert
7042
7086
  # frames (lowest temporal layer) for a half frame rate output.
7043
7087
  # @return [String]
7044
7088
  #
7089
+ # @!attribute [rw] tile_height
7090
+ # Set this field to set up the picture as a tile. You must also set
7091
+ # TileWidth. The tile height must result in 22 or fewer rows in the
7092
+ # frame. The tile width must result in 20 or fewer columns in the
7093
+ # frame. And finally, the product of the column count and row count
7094
+ # must be 64 or less. If the tile width and height are specified,
7095
+ # MediaConvert will override the video codec slices field with a value
7096
+ # that MediaConvert calculates.
7097
+ # @return [Integer]
7098
+ #
7099
+ # @!attribute [rw] tile_padding
7100
+ # Set to "padded" to force MediaConvert to add padding to the frame,
7101
+ # to obtain a frame that is a whole multiple of the tile size. If you
7102
+ # are setting up the picture as a tile, you must enter "padded". In
7103
+ # all other configurations, you typically enter "none".
7104
+ # @return [String]
7105
+ #
7106
+ # @!attribute [rw] tile_width
7107
+ # Set this field to set up the picture as a tile. See TileHeight for
7108
+ # more information.
7109
+ # @return [Integer]
7110
+ #
7045
7111
  # @!attribute [rw] tiles
7046
7112
  # Enable use of tiles, allowing horizontal as well as vertical
7047
7113
  # subdivision of the encoded pictures.
7048
7114
  # @return [String]
7049
7115
  #
7116
+ # @!attribute [rw] tree_block_size
7117
+ # Select the tree block size used for encoding. If you enter "auto",
7118
+ # the encoder will pick the best size. If you are setting up the
7119
+ # picture as a tile, you must set this to 32x32. In all other
7120
+ # configurations, you typically enter "auto".
7121
+ # @return [String]
7122
+ #
7050
7123
  # @!attribute [rw] unregistered_sei_timecode
7051
7124
  # Inserts timecode for each frame as 4 bytes of an unregistered SEI
7052
7125
  # message.
@@ -7094,6 +7167,8 @@ module Aws::MediaConvert
7094
7167
  :interlace_mode,
7095
7168
  :max_bitrate,
7096
7169
  :min_i_interval,
7170
+ :mv_over_picture_boundaries,
7171
+ :mv_temporal_predictor,
7097
7172
  :number_b_frames_between_reference_frames,
7098
7173
  :number_reference_frames,
7099
7174
  :par_control,
@@ -7112,7 +7187,11 @@ module Aws::MediaConvert
7112
7187
  :telecine,
7113
7188
  :temporal_adaptive_quantization,
7114
7189
  :temporal_ids,
7190
+ :tile_height,
7191
+ :tile_padding,
7192
+ :tile_width,
7115
7193
  :tiles,
7194
+ :tree_block_size,
7116
7195
  :unregistered_sei_timecode,
7117
7196
  :write_mp_4_packaging_type)
7118
7197
  SENSITIVE = []
@@ -8640,7 +8719,7 @@ module Aws::MediaConvert
8640
8719
  #
8641
8720
  # @!attribute [rw] duration
8642
8721
  # Specify the duration, in milliseconds, for your video generator
8643
- # input. Enter an integer from 50 to 86400000.
8722
+ # input. Enter an integer from 1 to 86400000.
8644
8723
  # @return [Integer]
8645
8724
  #
8646
8725
  # @!attribute [rw] framerate_denominator
@@ -8668,6 +8747,11 @@ module Aws::MediaConvert
8668
8747
  # value for width.
8669
8748
  # @return [Integer]
8670
8749
  #
8750
+ # @!attribute [rw] image_input
8751
+ # Specify the HTTP, HTTPS, or Amazon S3 location of the image that you
8752
+ # want to overlay on the video. Use a PNG or TGA file.
8753
+ # @return [String]
8754
+ #
8671
8755
  # @!attribute [rw] sample_rate
8672
8756
  # Specify the audio sample rate, in Hz, for the silent audio in your
8673
8757
  # video generator input. Enter an integer from 32000 to 48000.
@@ -8690,6 +8774,7 @@ module Aws::MediaConvert
8690
8774
  :framerate_denominator,
8691
8775
  :framerate_numerator,
8692
8776
  :height,
8777
+ :image_input,
8693
8778
  :sample_rate,
8694
8779
  :width)
8695
8780
  SENSITIVE = []
@@ -10933,6 +11018,12 @@ module Aws::MediaConvert
10933
11018
  # output audio codec.
10934
11019
  # @return [String]
10935
11020
  #
11021
+ # @!attribute [rw] c2pa_manifest
11022
+ # When enabled, a C2PA compliant manifest will be generated, signed
11023
+ # and embeded in the output. For more information on C2PA, see
11024
+ # https://c2pa.org/specifications/specifications/2.1/index.html
11025
+ # @return [String]
11026
+ #
10936
11027
  # @!attribute [rw] caption_container_type
10937
11028
  # Use this setting only in DASH output groups that include sidecar
10938
11029
  # TTML, IMSC or WEBVTT captions. You specify sidecar captions in a
@@ -10943,6 +11034,17 @@ module Aws::MediaConvert
10943
11034
  # audio fragmented MP4 files.
10944
11035
  # @return [String]
10945
11036
  #
11037
+ # @!attribute [rw] certificate_secret
11038
+ # Specify the name or ARN of the AWS Secrets Manager secret that
11039
+ # contains your C2PA public certificate chain in PEM format. Provide a
11040
+ # valid secret name or ARN. Note that your MediaConvert service role
11041
+ # must allow access to this secret. The public certificate chain is
11042
+ # added to the COSE header (x5chain) for signature validation. Include
11043
+ # the signer's certificate and all intermediate certificates. Do not
11044
+ # include the root certificate. For details on COSE, see:
11045
+ # https://opensource.contentauthenticity.org/docs/manifest/signing-manifests
11046
+ # @return [String]
11047
+ #
10946
11048
  # @!attribute [rw] klv_metadata
10947
11049
  # To include key-length-value metadata in this output: Set KLV
10948
11050
  # metadata insertion to Passthrough. MediaConvert reads KLV metadata
@@ -10979,6 +11081,12 @@ module Aws::MediaConvert
10979
11081
  # you don't want those SCTE-35 markers in this output.
10980
11082
  # @return [String]
10981
11083
  #
11084
+ # @!attribute [rw] signing_kms_key
11085
+ # Specify the ID or ARN of the AWS KMS key used to sign the C2PA
11086
+ # manifest in your MP4 output. Provide a valid KMS key ARN. Note that
11087
+ # your MediaConvert service role must allow access to this key.
11088
+ # @return [String]
11089
+ #
10982
11090
  # @!attribute [rw] timed_metadata
10983
11091
  # To include ID3 metadata in this output: Set ID3 metadata to
10984
11092
  # Passthrough. Specify this ID3 metadata in Custom ID3 metadata
@@ -11016,11 +11124,14 @@ module Aws::MediaConvert
11016
11124
  class MpdSettings < Struct.new(
11017
11125
  :accessibility_caption_hints,
11018
11126
  :audio_duration,
11127
+ :c2pa_manifest,
11019
11128
  :caption_container_type,
11129
+ :certificate_secret,
11020
11130
  :klv_metadata,
11021
11131
  :manifest_metadata_signaling,
11022
11132
  :scte_35_esam,
11023
11133
  :scte_35_source,
11134
+ :signing_kms_key,
11024
11135
  :timed_metadata,
11025
11136
  :timed_metadata_box_version,
11026
11137
  :timed_metadata_scheme_id_uri,
@@ -12241,6 +12352,21 @@ module Aws::MediaConvert
12241
12352
 
12242
12353
  # Optional settings when you set Codec to the value Passthrough.
12243
12354
  #
12355
+ # @!attribute [rw] frame_control
12356
+ # Choose how MediaConvert handles start and end times for input
12357
+ # clipping with video passthrough. Your input video codec must be
12358
+ # H.264 or H.265 to use IFRAME. To clip at the nearest IDR-frame:
12359
+ # Choose Nearest IDR. If an IDR-frame is not found at the frame that
12360
+ # you specify, MediaConvert uses the next compatible IDR-frame. Note
12361
+ # that your output may be shorter than your input clip duration. To
12362
+ # clip at the nearest I-frame: Choose Nearest I-frame. If an I-frame
12363
+ # is not found at the frame that you specify, MediaConvert uses the
12364
+ # next compatible I-frame. Note that your output may be shorter than
12365
+ # your input clip duration. We only recommend this setting for special
12366
+ # workflows, and when you choose this setting your output may not be
12367
+ # compatible with most players.
12368
+ # @return [String]
12369
+ #
12244
12370
  # @!attribute [rw] video_selector_mode
12245
12371
  # AUTO will select the highest bitrate input in the video selector
12246
12372
  # source. REMUX\_ALL will passthrough all the selected streams in the
@@ -12253,6 +12379,7 @@ module Aws::MediaConvert
12253
12379
  # @see http://docs.aws.amazon.com/goto/WebAPI/mediaconvert-2017-08-29/PassthroughSettings AWS API Documentation
12254
12380
  #
12255
12381
  class PassthroughSettings < Struct.new(
12382
+ :frame_control,
12256
12383
  :video_selector_mode)
12257
12384
  SENSITIVE = []
12258
12385
  include Aws::Structure
@@ -14710,6 +14837,20 @@ module Aws::MediaConvert
14710
14837
  # Input settings for Video overlay. You can include one or more video
14711
14838
  # overlays in sequence at different times that you specify.
14712
14839
  #
14840
+ # @!attribute [rw] audio_selectors
14841
+ # Use Audio selectors to specify audio to use during your Video
14842
+ # overlay. You can use multiple Audio selectors per Video overlay.
14843
+ # When you include an Audio selector within a Video overlay,
14844
+ # MediaConvert mutes any Audio selectors with the same name from the
14845
+ # underlying input. For example, if your underlying input has Audio
14846
+ # selector 1 and Audio selector 2, and your Video overlay only has
14847
+ # Audio selector 1, then MediaConvert replaces all audio for Audio
14848
+ # selector 1 during the Video overlay. To replace all audio for all
14849
+ # Audio selectors from the underlying input by using a single Audio
14850
+ # selector in your overlay, set DefaultSelection to DEFAULT (Check
14851
+ # \\"Use as default\\" in the MediaConvert console).
14852
+ # @return [Hash<String,Types::AudioSelector>]
14853
+ #
14713
14854
  # @!attribute [rw] file_input
14714
14855
  # Specify the input file S3, HTTP, or HTTPS URL for your video
14715
14856
  # overlay. To specify one or more Transitions for your base input
@@ -14739,6 +14880,7 @@ module Aws::MediaConvert
14739
14880
  # @see http://docs.aws.amazon.com/goto/WebAPI/mediaconvert-2017-08-29/VideoOverlayInput AWS API Documentation
14740
14881
  #
14741
14882
  class VideoOverlayInput < Struct.new(
14883
+ :audio_selectors,
14742
14884
  :file_input,
14743
14885
  :input_clippings,
14744
14886
  :timecode_source,
@@ -54,7 +54,7 @@ module Aws::MediaConvert
54
54
  autoload :EndpointProvider, 'aws-sdk-mediaconvert/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-mediaconvert/endpoints'
56
56
 
57
- GEM_VERSION = '1.172.0'
57
+ GEM_VERSION = '1.178.0'
58
58
 
59
59
  end
60
60