aws-sdk-mediaconvert 1.188.0 → 1.189.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 55edb4c6a8d633f03b2db8666d82885476caeca46353a6d8ca943d5f9075b303
4
- data.tar.gz: e84fc1387527a0bf3664e7f7fe7d09a3045afc40164fe74ae1bf59c1202b6d95
3
+ metadata.gz: 8e428c536a5fac4e5cc76bef47989717c48067844dfd97732db49976f12f2234
4
+ data.tar.gz: 4a86e92718c9a31ec37b20f3c4e1003d65dc0eb485da2eae4274df278166dd1e
5
5
  SHA512:
6
- metadata.gz: 7ec7b8eee39f91f79a018ad1e7458309ddba4468ddc87b344dedb28b393d98f319f305d71354671152abae5eedc696c6b0bf2c1336a888aa5ff46275856ab76b
7
- data.tar.gz: f12f6e6c43d61833beecef29a6c6c0c48027f405611daf023344dce1e6e2010ce81061121a016e3258b78d7274aae9ccf254db941bf6d7264faf85d51356851d
6
+ metadata.gz: cfdfe511ce7ff699861ed30dceacae09946e0a417d09f04a6e422adf44627629b7e3445969c09d787d7526e4aab87cecf797f3c3a1b8a297e42655bd779ccb27
7
+ data.tar.gz: 1976c314fcb87c6021c253a6adb7be1065e3e49193535aa4fcf3ceb9ff4216d95d04f33b1da2d4e4bacb3f6b2523db573d5686ab76471a61092a9a4ffcde8ffa
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.189.0 (2026-07-01)
5
+ ------------------
6
+
7
+ * Feature - Adds support for integer-second duration normalization and the option to disable explicit weighted prediction.
8
+
4
9
  1.188.0 (2026-06-05)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.188.0
1
+ 1.189.0
@@ -1194,6 +1194,7 @@ module Aws::MediaConvert
1194
1194
  # dynamic_sub_gop: "ADAPTIVE", # accepts ADAPTIVE, STATIC
1195
1195
  # end_of_stream_markers: "INCLUDE", # accepts INCLUDE, SUPPRESS
1196
1196
  # entropy_encoding: "CABAC", # accepts CABAC, CAVLC
1197
+ # explicit_weighted_prediction: "DISABLED", # accepts DISABLED, ENABLED
1197
1198
  # field_encoding: "PAFF", # accepts PAFF, FORCE_FIELD, MBAFF
1198
1199
  # flicker_adaptive_quantization: "DISABLED", # accepts DISABLED, ENABLED
1199
1200
  # framerate_control: "INITIALIZE_FROM_SOURCE", # accepts INITIALIZE_FROM_SOURCE, SPECIFIED
@@ -1518,6 +1519,11 @@ module Aws::MediaConvert
1518
1519
  # mapping: "HDR10_NOMAP", # accepts HDR10_NOMAP, HDR10_1000
1519
1520
  # profile: "PROFILE_5", # accepts PROFILE_5, PROFILE_8_1
1520
1521
  # },
1522
+ # duration_control: {
1523
+ # integer_duration_maximum_compression_denominator: 1,
1524
+ # integer_duration_maximum_compression_numerator: 1,
1525
+ # integer_duration_trim_threshold_milliseconds: 1,
1526
+ # },
1521
1527
  # hdr_10_plus: {
1522
1528
  # mastering_monitor_nits: 1,
1523
1529
  # target_monitor_nits: 1,
@@ -1964,6 +1970,7 @@ module Aws::MediaConvert
1964
1970
  # resp.preset.settings.video_description.codec_settings.h264_settings.dynamic_sub_gop #=> String, one of "ADAPTIVE", "STATIC"
1965
1971
  # resp.preset.settings.video_description.codec_settings.h264_settings.end_of_stream_markers #=> String, one of "INCLUDE", "SUPPRESS"
1966
1972
  # resp.preset.settings.video_description.codec_settings.h264_settings.entropy_encoding #=> String, one of "CABAC", "CAVLC"
1973
+ # resp.preset.settings.video_description.codec_settings.h264_settings.explicit_weighted_prediction #=> String, one of "DISABLED", "ENABLED"
1967
1974
  # resp.preset.settings.video_description.codec_settings.h264_settings.field_encoding #=> String, one of "PAFF", "FORCE_FIELD", "MBAFF"
1968
1975
  # resp.preset.settings.video_description.codec_settings.h264_settings.flicker_adaptive_quantization #=> String, one of "DISABLED", "ENABLED"
1969
1976
  # resp.preset.settings.video_description.codec_settings.h264_settings.framerate_control #=> String, one of "INITIALIZE_FROM_SOURCE", "SPECIFIED"
@@ -2240,6 +2247,9 @@ module Aws::MediaConvert
2240
2247
  # resp.preset.settings.video_description.video_preprocessors.dolby_vision.l6_mode #=> String, one of "PASSTHROUGH", "RECALCULATE", "SPECIFY"
2241
2248
  # resp.preset.settings.video_description.video_preprocessors.dolby_vision.mapping #=> String, one of "HDR10_NOMAP", "HDR10_1000"
2242
2249
  # resp.preset.settings.video_description.video_preprocessors.dolby_vision.profile #=> String, one of "PROFILE_5", "PROFILE_8_1"
2250
+ # resp.preset.settings.video_description.video_preprocessors.duration_control.integer_duration_maximum_compression_denominator #=> Integer
2251
+ # resp.preset.settings.video_description.video_preprocessors.duration_control.integer_duration_maximum_compression_numerator #=> Integer
2252
+ # resp.preset.settings.video_description.video_preprocessors.duration_control.integer_duration_trim_threshold_milliseconds #=> Integer
2243
2253
  # resp.preset.settings.video_description.video_preprocessors.hdr_10_plus.mastering_monitor_nits #=> Integer
2244
2254
  # resp.preset.settings.video_description.video_preprocessors.hdr_10_plus.target_monitor_nits #=> Integer
2245
2255
  # resp.preset.settings.video_description.video_preprocessors.image_inserter.insertable_images #=> Array
@@ -3060,6 +3070,7 @@ module Aws::MediaConvert
3060
3070
  # resp.preset.settings.video_description.codec_settings.h264_settings.dynamic_sub_gop #=> String, one of "ADAPTIVE", "STATIC"
3061
3071
  # resp.preset.settings.video_description.codec_settings.h264_settings.end_of_stream_markers #=> String, one of "INCLUDE", "SUPPRESS"
3062
3072
  # resp.preset.settings.video_description.codec_settings.h264_settings.entropy_encoding #=> String, one of "CABAC", "CAVLC"
3073
+ # resp.preset.settings.video_description.codec_settings.h264_settings.explicit_weighted_prediction #=> String, one of "DISABLED", "ENABLED"
3063
3074
  # resp.preset.settings.video_description.codec_settings.h264_settings.field_encoding #=> String, one of "PAFF", "FORCE_FIELD", "MBAFF"
3064
3075
  # resp.preset.settings.video_description.codec_settings.h264_settings.flicker_adaptive_quantization #=> String, one of "DISABLED", "ENABLED"
3065
3076
  # resp.preset.settings.video_description.codec_settings.h264_settings.framerate_control #=> String, one of "INITIALIZE_FROM_SOURCE", "SPECIFIED"
@@ -3336,6 +3347,9 @@ module Aws::MediaConvert
3336
3347
  # resp.preset.settings.video_description.video_preprocessors.dolby_vision.l6_mode #=> String, one of "PASSTHROUGH", "RECALCULATE", "SPECIFY"
3337
3348
  # resp.preset.settings.video_description.video_preprocessors.dolby_vision.mapping #=> String, one of "HDR10_NOMAP", "HDR10_1000"
3338
3349
  # resp.preset.settings.video_description.video_preprocessors.dolby_vision.profile #=> String, one of "PROFILE_5", "PROFILE_8_1"
3350
+ # resp.preset.settings.video_description.video_preprocessors.duration_control.integer_duration_maximum_compression_denominator #=> Integer
3351
+ # resp.preset.settings.video_description.video_preprocessors.duration_control.integer_duration_maximum_compression_numerator #=> Integer
3352
+ # resp.preset.settings.video_description.video_preprocessors.duration_control.integer_duration_trim_threshold_milliseconds #=> Integer
3339
3353
  # resp.preset.settings.video_description.video_preprocessors.hdr_10_plus.mastering_monitor_nits #=> Integer
3340
3354
  # resp.preset.settings.video_description.video_preprocessors.hdr_10_plus.target_monitor_nits #=> Integer
3341
3355
  # resp.preset.settings.video_description.video_preprocessors.image_inserter.insertable_images #=> Array
@@ -3965,6 +3979,7 @@ module Aws::MediaConvert
3965
3979
  # resp.presets[0].settings.video_description.codec_settings.h264_settings.dynamic_sub_gop #=> String, one of "ADAPTIVE", "STATIC"
3966
3980
  # resp.presets[0].settings.video_description.codec_settings.h264_settings.end_of_stream_markers #=> String, one of "INCLUDE", "SUPPRESS"
3967
3981
  # resp.presets[0].settings.video_description.codec_settings.h264_settings.entropy_encoding #=> String, one of "CABAC", "CAVLC"
3982
+ # resp.presets[0].settings.video_description.codec_settings.h264_settings.explicit_weighted_prediction #=> String, one of "DISABLED", "ENABLED"
3968
3983
  # resp.presets[0].settings.video_description.codec_settings.h264_settings.field_encoding #=> String, one of "PAFF", "FORCE_FIELD", "MBAFF"
3969
3984
  # resp.presets[0].settings.video_description.codec_settings.h264_settings.flicker_adaptive_quantization #=> String, one of "DISABLED", "ENABLED"
3970
3985
  # resp.presets[0].settings.video_description.codec_settings.h264_settings.framerate_control #=> String, one of "INITIALIZE_FROM_SOURCE", "SPECIFIED"
@@ -4241,6 +4256,9 @@ module Aws::MediaConvert
4241
4256
  # resp.presets[0].settings.video_description.video_preprocessors.dolby_vision.l6_mode #=> String, one of "PASSTHROUGH", "RECALCULATE", "SPECIFY"
4242
4257
  # resp.presets[0].settings.video_description.video_preprocessors.dolby_vision.mapping #=> String, one of "HDR10_NOMAP", "HDR10_1000"
4243
4258
  # resp.presets[0].settings.video_description.video_preprocessors.dolby_vision.profile #=> String, one of "PROFILE_5", "PROFILE_8_1"
4259
+ # resp.presets[0].settings.video_description.video_preprocessors.duration_control.integer_duration_maximum_compression_denominator #=> Integer
4260
+ # resp.presets[0].settings.video_description.video_preprocessors.duration_control.integer_duration_maximum_compression_numerator #=> Integer
4261
+ # resp.presets[0].settings.video_description.video_preprocessors.duration_control.integer_duration_trim_threshold_milliseconds #=> Integer
4244
4262
  # resp.presets[0].settings.video_description.video_preprocessors.hdr_10_plus.mastering_monitor_nits #=> Integer
4245
4263
  # resp.presets[0].settings.video_description.video_preprocessors.hdr_10_plus.target_monitor_nits #=> Integer
4246
4264
  # resp.presets[0].settings.video_description.video_preprocessors.image_inserter.insertable_images #=> Array
@@ -4463,7 +4481,7 @@ module Aws::MediaConvert
4463
4481
  #
4464
4482
  # resp.probe_results #=> Array
4465
4483
  # resp.probe_results[0].container.duration #=> Float
4466
- # resp.probe_results[0].container.format #=> String, one of "mp4", "quicktime", "matroska", "webm", "mxf", "wave", "avi", "mpegts", "mpegps"
4484
+ # resp.probe_results[0].container.format #=> String, one of "mp4", "quicktime", "matroska", "webm", "mxf", "wave", "avi", "mpegts", "mpegps", "mp3"
4467
4485
  # resp.probe_results[0].container.start_timecode #=> String
4468
4486
  # resp.probe_results[0].container.tracks #=> Array
4469
4487
  # resp.probe_results[0].container.tracks[0].audio_properties.bit_depth #=> Integer
@@ -5302,6 +5320,7 @@ module Aws::MediaConvert
5302
5320
  # dynamic_sub_gop: "ADAPTIVE", # accepts ADAPTIVE, STATIC
5303
5321
  # end_of_stream_markers: "INCLUDE", # accepts INCLUDE, SUPPRESS
5304
5322
  # entropy_encoding: "CABAC", # accepts CABAC, CAVLC
5323
+ # explicit_weighted_prediction: "DISABLED", # accepts DISABLED, ENABLED
5305
5324
  # field_encoding: "PAFF", # accepts PAFF, FORCE_FIELD, MBAFF
5306
5325
  # flicker_adaptive_quantization: "DISABLED", # accepts DISABLED, ENABLED
5307
5326
  # framerate_control: "INITIALIZE_FROM_SOURCE", # accepts INITIALIZE_FROM_SOURCE, SPECIFIED
@@ -5626,6 +5645,11 @@ module Aws::MediaConvert
5626
5645
  # mapping: "HDR10_NOMAP", # accepts HDR10_NOMAP, HDR10_1000
5627
5646
  # profile: "PROFILE_5", # accepts PROFILE_5, PROFILE_8_1
5628
5647
  # },
5648
+ # duration_control: {
5649
+ # integer_duration_maximum_compression_denominator: 1,
5650
+ # integer_duration_maximum_compression_numerator: 1,
5651
+ # integer_duration_trim_threshold_milliseconds: 1,
5652
+ # },
5629
5653
  # hdr_10_plus: {
5630
5654
  # mastering_monitor_nits: 1,
5631
5655
  # target_monitor_nits: 1,
@@ -6069,6 +6093,7 @@ module Aws::MediaConvert
6069
6093
  # resp.preset.settings.video_description.codec_settings.h264_settings.dynamic_sub_gop #=> String, one of "ADAPTIVE", "STATIC"
6070
6094
  # resp.preset.settings.video_description.codec_settings.h264_settings.end_of_stream_markers #=> String, one of "INCLUDE", "SUPPRESS"
6071
6095
  # resp.preset.settings.video_description.codec_settings.h264_settings.entropy_encoding #=> String, one of "CABAC", "CAVLC"
6096
+ # resp.preset.settings.video_description.codec_settings.h264_settings.explicit_weighted_prediction #=> String, one of "DISABLED", "ENABLED"
6072
6097
  # resp.preset.settings.video_description.codec_settings.h264_settings.field_encoding #=> String, one of "PAFF", "FORCE_FIELD", "MBAFF"
6073
6098
  # resp.preset.settings.video_description.codec_settings.h264_settings.flicker_adaptive_quantization #=> String, one of "DISABLED", "ENABLED"
6074
6099
  # resp.preset.settings.video_description.codec_settings.h264_settings.framerate_control #=> String, one of "INITIALIZE_FROM_SOURCE", "SPECIFIED"
@@ -6345,6 +6370,9 @@ module Aws::MediaConvert
6345
6370
  # resp.preset.settings.video_description.video_preprocessors.dolby_vision.l6_mode #=> String, one of "PASSTHROUGH", "RECALCULATE", "SPECIFY"
6346
6371
  # resp.preset.settings.video_description.video_preprocessors.dolby_vision.mapping #=> String, one of "HDR10_NOMAP", "HDR10_1000"
6347
6372
  # resp.preset.settings.video_description.video_preprocessors.dolby_vision.profile #=> String, one of "PROFILE_5", "PROFILE_8_1"
6373
+ # resp.preset.settings.video_description.video_preprocessors.duration_control.integer_duration_maximum_compression_denominator #=> Integer
6374
+ # resp.preset.settings.video_description.video_preprocessors.duration_control.integer_duration_maximum_compression_numerator #=> Integer
6375
+ # resp.preset.settings.video_description.video_preprocessors.duration_control.integer_duration_trim_threshold_milliseconds #=> Integer
6348
6376
  # resp.preset.settings.video_description.video_preprocessors.hdr_10_plus.mastering_monitor_nits #=> Integer
6349
6377
  # resp.preset.settings.video_description.video_preprocessors.hdr_10_plus.target_monitor_nits #=> Integer
6350
6378
  # resp.preset.settings.video_description.video_preprocessors.image_inserter.insertable_images #=> Array
@@ -6495,7 +6523,7 @@ module Aws::MediaConvert
6495
6523
  tracer: tracer
6496
6524
  )
6497
6525
  context[:gem_name] = 'aws-sdk-mediaconvert'
6498
- context[:gem_version] = '1.188.0'
6526
+ context[:gem_version] = '1.189.0'
6499
6527
  Seahorse::Client::Request.new(handlers, context)
6500
6528
  end
6501
6529
 
@@ -234,6 +234,7 @@ module Aws::MediaConvert
234
234
  DolbyVisionMapping = Shapes::StringShape.new(name: 'DolbyVisionMapping')
235
235
  DolbyVisionProfile = Shapes::StringShape.new(name: 'DolbyVisionProfile')
236
236
  DropFrameTimecode = Shapes::StringShape.new(name: 'DropFrameTimecode')
237
+ DurationControl = Shapes::StructureShape.new(name: 'DurationControl')
237
238
  DvbNitSettings = Shapes::StructureShape.new(name: 'DvbNitSettings')
238
239
  DvbSdtSettings = Shapes::StructureShape.new(name: 'DvbSdtSettings')
239
240
  DvbSubDestinationSettings = Shapes::StructureShape.new(name: 'DvbSubDestinationSettings')
@@ -330,6 +331,7 @@ module Aws::MediaConvert
330
331
  H264DynamicSubGop = Shapes::StringShape.new(name: 'H264DynamicSubGop')
331
332
  H264EndOfStreamMarkers = Shapes::StringShape.new(name: 'H264EndOfStreamMarkers')
332
333
  H264EntropyEncoding = Shapes::StringShape.new(name: 'H264EntropyEncoding')
334
+ H264ExplicitWeightedPrediction = Shapes::StringShape.new(name: 'H264ExplicitWeightedPrediction')
333
335
  H264FieldEncoding = Shapes::StringShape.new(name: 'H264FieldEncoding')
334
336
  H264FlickerAdaptiveQuantization = Shapes::StringShape.new(name: 'H264FlickerAdaptiveQuantization')
335
337
  H264FramerateControl = Shapes::StringShape.new(name: 'H264FramerateControl')
@@ -1621,6 +1623,11 @@ module Aws::MediaConvert
1621
1623
  DolbyVisionLevel6Metadata.add_member(:max_fall, Shapes::ShapeRef.new(shape: __integerMin0Max65535, location_name: "maxFall"))
1622
1624
  DolbyVisionLevel6Metadata.struct_class = Types::DolbyVisionLevel6Metadata
1623
1625
 
1626
+ DurationControl.add_member(:integer_duration_maximum_compression_denominator, Shapes::ShapeRef.new(shape: __integerMin1Max2147483647, location_name: "integerDurationMaximumCompressionDenominator"))
1627
+ DurationControl.add_member(:integer_duration_maximum_compression_numerator, Shapes::ShapeRef.new(shape: __integerMin0Max2147483647, location_name: "integerDurationMaximumCompressionNumerator"))
1628
+ DurationControl.add_member(:integer_duration_trim_threshold_milliseconds, Shapes::ShapeRef.new(shape: __integerMin0Max500, location_name: "integerDurationTrimThresholdMilliseconds"))
1629
+ DurationControl.struct_class = Types::DurationControl
1630
+
1624
1631
  DvbNitSettings.add_member(:network_id, Shapes::ShapeRef.new(shape: __integerMin0Max65535, location_name: "networkId"))
1625
1632
  DvbNitSettings.add_member(:network_name, Shapes::ShapeRef.new(shape: __stringMin1Max256, location_name: "networkName"))
1626
1633
  DvbNitSettings.add_member(:nit_interval, Shapes::ShapeRef.new(shape: __integerMin25Max10000, location_name: "nitInterval"))
@@ -1858,6 +1865,7 @@ module Aws::MediaConvert
1858
1865
  H264Settings.add_member(:dynamic_sub_gop, Shapes::ShapeRef.new(shape: H264DynamicSubGop, location_name: "dynamicSubGop"))
1859
1866
  H264Settings.add_member(:end_of_stream_markers, Shapes::ShapeRef.new(shape: H264EndOfStreamMarkers, location_name: "endOfStreamMarkers"))
1860
1867
  H264Settings.add_member(:entropy_encoding, Shapes::ShapeRef.new(shape: H264EntropyEncoding, location_name: "entropyEncoding"))
1868
+ H264Settings.add_member(:explicit_weighted_prediction, Shapes::ShapeRef.new(shape: H264ExplicitWeightedPrediction, location_name: "explicitWeightedPrediction"))
1861
1869
  H264Settings.add_member(:field_encoding, Shapes::ShapeRef.new(shape: H264FieldEncoding, location_name: "fieldEncoding"))
1862
1870
  H264Settings.add_member(:flicker_adaptive_quantization, Shapes::ShapeRef.new(shape: H264FlickerAdaptiveQuantization, location_name: "flickerAdaptiveQuantization"))
1863
1871
  H264Settings.add_member(:framerate_control, Shapes::ShapeRef.new(shape: H264FramerateControl, location_name: "framerateControl"))
@@ -3051,6 +3059,7 @@ module Aws::MediaConvert
3051
3059
  VideoPreprocessor.add_member(:color_corrector, Shapes::ShapeRef.new(shape: ColorCorrector, location_name: "colorCorrector"))
3052
3060
  VideoPreprocessor.add_member(:deinterlacer, Shapes::ShapeRef.new(shape: Deinterlacer, location_name: "deinterlacer"))
3053
3061
  VideoPreprocessor.add_member(:dolby_vision, Shapes::ShapeRef.new(shape: DolbyVision, location_name: "dolbyVision"))
3062
+ VideoPreprocessor.add_member(:duration_control, Shapes::ShapeRef.new(shape: DurationControl, location_name: "durationControl"))
3054
3063
  VideoPreprocessor.add_member(:hdr_10_plus, Shapes::ShapeRef.new(shape: Hdr10Plus, location_name: "hdr10Plus"))
3055
3064
  VideoPreprocessor.add_member(:image_inserter, Shapes::ShapeRef.new(shape: ImageInserter, location_name: "imageInserter"))
3056
3065
  VideoPreprocessor.add_member(:noise_reducer, Shapes::ShapeRef.new(shape: NoiseReducer, location_name: "noiseReducer"))
@@ -3495,8 +3495,8 @@ module Aws::MediaConvert
3495
3495
  #
3496
3496
  # @!attribute [rw] format
3497
3497
  # The format of your media file. For example: MP4, QuickTime (MOV),
3498
- # Matroska (MKV), WebM, MXF, Wave, AVI, MPEG-TS, or MPEG-PS. Note that
3499
- # this will be blank if your media file has a format that the
3498
+ # Matroska (MKV), WebM, MXF, Wave, AVI, MPEG-TS, MPEG-PS, or MP3. Note
3499
+ # that this will be blank if your media file has a format that the
3500
3500
  # MediaConvert Probe operation does not recognize.
3501
3501
  # @return [String]
3502
3502
  #
@@ -4751,6 +4751,41 @@ module Aws::MediaConvert
4751
4751
  include Aws::Structure
4752
4752
  end
4753
4753
 
4754
+ # Settings for integer-second duration normalization. When this
4755
+ # preprocessor is present, the output duration will be adjusted to an
4756
+ # exact integer-second boundary. If the input is within the trim
4757
+ # threshold of an integer second, trailing frames are dropped. If within
4758
+ # the compression threshold and less than 500ms over the previous
4759
+ # integer second, the output is sped up slightly. Otherwise, black
4760
+ # frames are padded to the next integer second.
4761
+ #
4762
+ # @!attribute [rw] integer_duration_maximum_compression_denominator
4763
+ # Required. Denominator of the maximum allowed compression ratio.
4764
+ # @return [Integer]
4765
+ #
4766
+ # @!attribute [rw] integer_duration_maximum_compression_numerator
4767
+ # Required. Numerator of the maximum allowed compression ratio,
4768
+ # defined as overrun divided by target duration. For example,
4769
+ # numerator 5 with denominator 100 means max 5% compression. Set to 0
4770
+ # to disable compression entirely (only trim or pad will be used).
4771
+ # @return [Integer]
4772
+ #
4773
+ # @!attribute [rw] integer_duration_trim_threshold_milliseconds
4774
+ # Maximum number of fractional milliseconds past an integer second
4775
+ # that qualify for the trim path (frame dropping). Default is 0
4776
+ # (trimming disabled).
4777
+ # @return [Integer]
4778
+ #
4779
+ # @see http://docs.aws.amazon.com/goto/WebAPI/mediaconvert-2017-08-29/DurationControl AWS API Documentation
4780
+ #
4781
+ class DurationControl < Struct.new(
4782
+ :integer_duration_maximum_compression_denominator,
4783
+ :integer_duration_maximum_compression_numerator,
4784
+ :integer_duration_trim_threshold_milliseconds)
4785
+ SENSITIVE = []
4786
+ include Aws::Structure
4787
+ end
4788
+
4754
4789
  # Use these settings to insert a DVB Network Information Table (NIT) in
4755
4790
  # the transport stream of this output.
4756
4791
  #
@@ -6525,6 +6560,12 @@ module Aws::MediaConvert
6525
6560
  # or CAVLC.
6526
6561
  # @return [String]
6527
6562
  #
6563
+ # @!attribute [rw] explicit_weighted_prediction
6564
+ # Enable or disable explicit weighted prediction for the H.264
6565
+ # encoder. Weighted prediction improves compression efficiency for
6566
+ # content with fading or brightness changes between frames.
6567
+ # @return [String]
6568
+ #
6528
6569
  # @!attribute [rw] field_encoding
6529
6570
  # The video encoding method for your MPEG-4 AVC output. Keep the
6530
6571
  # default value, PAFF, to have MediaConvert use PAFF encoding for
@@ -6967,6 +7008,7 @@ module Aws::MediaConvert
6967
7008
  :dynamic_sub_gop,
6968
7009
  :end_of_stream_markers,
6969
7010
  :entropy_encoding,
7011
+ :explicit_weighted_prediction,
6970
7012
  :field_encoding,
6971
7013
  :flicker_adaptive_quantization,
6972
7014
  :framerate_control,
@@ -15728,6 +15770,14 @@ module Aws::MediaConvert
15728
15770
  # output.
15729
15771
  # @return [Types::DolbyVision]
15730
15772
  #
15773
+ # @!attribute [rw] duration_control
15774
+ # Enable integer-second duration normalization. When enabled, the
15775
+ # output duration is adjusted to land on an exact integer-second
15776
+ # boundary. The adjustment method (trim, compress, or pad) is chosen
15777
+ # automatically based on how far the input duration is from the
15778
+ # nearest integer second.
15779
+ # @return [Types::DurationControl]
15780
+ #
15731
15781
  # @!attribute [rw] hdr_10_plus
15732
15782
  # Enable HDR10+ analysis and metadata injection. Compatible with HEVC
15733
15783
  # only.
@@ -15765,6 +15815,7 @@ module Aws::MediaConvert
15765
15815
  :color_corrector,
15766
15816
  :deinterlacer,
15767
15817
  :dolby_vision,
15818
+ :duration_control,
15768
15819
  :hdr_10_plus,
15769
15820
  :image_inserter,
15770
15821
  :noise_reducer,
@@ -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.188.0'
57
+ GEM_VERSION = '1.189.0'
58
58
 
59
59
  end
60
60
 
data/sig/params.rbs CHANGED
@@ -807,6 +807,7 @@ module Aws
807
807
  dynamic_sub_gop: ("ADAPTIVE" | "STATIC")?,
808
808
  end_of_stream_markers: ("INCLUDE" | "SUPPRESS")?,
809
809
  entropy_encoding: ("CABAC" | "CAVLC")?,
810
+ explicit_weighted_prediction: ("DISABLED" | "ENABLED")?,
810
811
  field_encoding: ("PAFF" | "FORCE_FIELD" | "MBAFF")?,
811
812
  flicker_adaptive_quantization: ("DISABLED" | "ENABLED")?,
812
813
  framerate_control: ("INITIALIZE_FROM_SOURCE" | "SPECIFIED")?,
@@ -1168,6 +1169,11 @@ module Aws
1168
1169
  mode: ("DEINTERLACE" | "INVERSE_TELECINE" | "ADAPTIVE")?
1169
1170
  }?,
1170
1171
  dolby_vision: Params::dolby_vision?,
1172
+ duration_control: {
1173
+ integer_duration_maximum_compression_denominator: ::Integer?,
1174
+ integer_duration_maximum_compression_numerator: ::Integer?,
1175
+ integer_duration_trim_threshold_milliseconds: ::Integer?
1176
+ }?,
1171
1177
  hdr_10_plus: {
1172
1178
  mastering_monitor_nits: ::Integer?,
1173
1179
  target_monitor_nits: ::Integer?
data/sig/types.rbs CHANGED
@@ -513,7 +513,7 @@ module Aws::MediaConvert
513
513
 
514
514
  class Container
515
515
  attr_accessor duration: ::Float
516
- attr_accessor format: ("mp4" | "quicktime" | "matroska" | "webm" | "mxf" | "wave" | "avi" | "mpegts" | "mpegps")
516
+ attr_accessor format: ("mp4" | "quicktime" | "matroska" | "webm" | "mxf" | "wave" | "avi" | "mpegts" | "mpegps" | "mp3")
517
517
  attr_accessor start_timecode: ::String
518
518
  attr_accessor tracks: ::Array[Types::Track]
519
519
  SENSITIVE: []
@@ -762,6 +762,13 @@ module Aws::MediaConvert
762
762
  SENSITIVE: []
763
763
  end
764
764
 
765
+ class DurationControl
766
+ attr_accessor integer_duration_maximum_compression_denominator: ::Integer
767
+ attr_accessor integer_duration_maximum_compression_numerator: ::Integer
768
+ attr_accessor integer_duration_trim_threshold_milliseconds: ::Integer
769
+ SENSITIVE: []
770
+ end
771
+
765
772
  class DvbNitSettings
766
773
  attr_accessor network_id: ::Integer
767
774
  attr_accessor network_name: ::String
@@ -1081,6 +1088,7 @@ module Aws::MediaConvert
1081
1088
  attr_accessor dynamic_sub_gop: ("ADAPTIVE" | "STATIC")
1082
1089
  attr_accessor end_of_stream_markers: ("INCLUDE" | "SUPPRESS")
1083
1090
  attr_accessor entropy_encoding: ("CABAC" | "CAVLC")
1091
+ attr_accessor explicit_weighted_prediction: ("DISABLED" | "ENABLED")
1084
1092
  attr_accessor field_encoding: ("PAFF" | "FORCE_FIELD" | "MBAFF")
1085
1093
  attr_accessor flicker_adaptive_quantization: ("DISABLED" | "ENABLED")
1086
1094
  attr_accessor framerate_control: ("INITIALIZE_FROM_SOURCE" | "SPECIFIED")
@@ -2572,6 +2580,7 @@ module Aws::MediaConvert
2572
2580
  attr_accessor color_corrector: Types::ColorCorrector
2573
2581
  attr_accessor deinterlacer: Types::Deinterlacer
2574
2582
  attr_accessor dolby_vision: Types::DolbyVision
2583
+ attr_accessor duration_control: Types::DurationControl
2575
2584
  attr_accessor hdr_10_plus: Types::Hdr10Plus
2576
2585
  attr_accessor image_inserter: Types::ImageInserter
2577
2586
  attr_accessor noise_reducer: Types::NoiseReducer
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-mediaconvert
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.188.0
4
+ version: 1.189.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services