aws-sdk-mediaconvert 1.161.0 → 1.163.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 +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-mediaconvert/client.rb +33 -15
- data/lib/aws-sdk-mediaconvert/client_api.rb +8 -1
- data/lib/aws-sdk-mediaconvert/types.rb +45 -9
- data/lib/aws-sdk-mediaconvert.rb +1 -1
- data/sig/client.rbs +25 -10
- data/sig/types.rbs +7 -4
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6758aa178044382d68476bed636dd9d8c75cc7e021f32ad8ef8c59eb4037ef79
|
4
|
+
data.tar.gz: b641f420b7d7fd9cac8c237fcb8377a37e0db68a7a56ae8e87d441bd7b7d6b73
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ef1b0c387608dae0586169460aaa87e8a81bc70d54861e6846127c476f3070e3e669b7df2405e4b27e7a1f0c99f92e4c1962353dd65d2668df9b9ddc93babf4c
|
7
|
+
data.tar.gz: 4b17ca6587bc1d3aedf1c5a7d07cc6c45c41aca3f0c532914ecf0d395f2a51c209d99d0bd314decb2892c2f128671e1be52a336c33c473bdf0e4212d1b83f9af
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.163.0 (2025-07-17)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - This release expands the range of supported audio outputs to include xHE, 192khz FLAC and the deprecation of dual mono for AC3.
|
8
|
+
|
9
|
+
1.162.0 (2025-06-20)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - This release adds a new SPECIFIED_OPTIMAL option for handling DDS when using DVB-Sub with high resolution video.
|
13
|
+
|
4
14
|
1.161.0 (2025-06-04)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.163.0
|
@@ -732,12 +732,15 @@ module Aws::MediaConvert
|
|
732
732
|
# aac_settings: {
|
733
733
|
# audio_description_broadcaster_mix: "BROADCASTER_MIXED_AD", # accepts BROADCASTER_MIXED_AD, NORMAL
|
734
734
|
# bitrate: 1,
|
735
|
-
# codec_profile: "LC", # accepts LC, HEV1, HEV2
|
735
|
+
# codec_profile: "LC", # accepts LC, HEV1, HEV2, XHE
|
736
736
|
# coding_mode: "AD_RECEIVER_MIX", # accepts AD_RECEIVER_MIX, CODING_MODE_1_0, CODING_MODE_1_1, CODING_MODE_2_0, CODING_MODE_5_1
|
737
|
+
# loudness_measurement_mode: "PROGRAM", # accepts PROGRAM, ANCHOR
|
738
|
+
# rap_interval: 1,
|
737
739
|
# rate_control_mode: "CBR", # accepts CBR, VBR
|
738
740
|
# raw_format: "LATM_LOAS", # accepts LATM_LOAS, NONE
|
739
741
|
# sample_rate: 1,
|
740
742
|
# specification: "MPEG2", # accepts MPEG2, MPEG4
|
743
|
+
# target_loudness_range: 1,
|
741
744
|
# vbr_quality: "LOW", # accepts LOW, MEDIUM_LOW, MEDIUM_HIGH, HIGH
|
742
745
|
# },
|
743
746
|
# ac_3_settings: {
|
@@ -892,7 +895,7 @@ module Aws::MediaConvert
|
|
892
895
|
# apply_font_color: "WHITE_TEXT_ONLY", # accepts WHITE_TEXT_ONLY, ALL_TEXT
|
893
896
|
# background_color: "NONE", # accepts NONE, BLACK, WHITE, AUTO
|
894
897
|
# background_opacity: 1,
|
895
|
-
# dds_handling: "NONE", # accepts NONE, SPECIFIED, NO_DISPLAY_WINDOW
|
898
|
+
# dds_handling: "NONE", # accepts NONE, SPECIFIED, NO_DISPLAY_WINDOW, SPECIFIED_OPTIMAL
|
896
899
|
# dds_x_coordinate: 1,
|
897
900
|
# dds_y_coordinate: 1,
|
898
901
|
# fallback_font: "BEST_MATCH", # accepts BEST_MATCH, MONOSPACED_SANSSERIF, MONOSPACED_SERIF, PROPORTIONAL_SANSSERIF, PROPORTIONAL_SERIF
|
@@ -1557,12 +1560,15 @@ module Aws::MediaConvert
|
|
1557
1560
|
# resp.preset.settings.audio_descriptions[0].audio_type_control #=> String, one of "FOLLOW_INPUT", "USE_CONFIGURED"
|
1558
1561
|
# resp.preset.settings.audio_descriptions[0].codec_settings.aac_settings.audio_description_broadcaster_mix #=> String, one of "BROADCASTER_MIXED_AD", "NORMAL"
|
1559
1562
|
# resp.preset.settings.audio_descriptions[0].codec_settings.aac_settings.bitrate #=> Integer
|
1560
|
-
# resp.preset.settings.audio_descriptions[0].codec_settings.aac_settings.codec_profile #=> String, one of "LC", "HEV1", "HEV2"
|
1563
|
+
# resp.preset.settings.audio_descriptions[0].codec_settings.aac_settings.codec_profile #=> String, one of "LC", "HEV1", "HEV2", "XHE"
|
1561
1564
|
# resp.preset.settings.audio_descriptions[0].codec_settings.aac_settings.coding_mode #=> String, one of "AD_RECEIVER_MIX", "CODING_MODE_1_0", "CODING_MODE_1_1", "CODING_MODE_2_0", "CODING_MODE_5_1"
|
1565
|
+
# resp.preset.settings.audio_descriptions[0].codec_settings.aac_settings.loudness_measurement_mode #=> String, one of "PROGRAM", "ANCHOR"
|
1566
|
+
# resp.preset.settings.audio_descriptions[0].codec_settings.aac_settings.rap_interval #=> Integer
|
1562
1567
|
# resp.preset.settings.audio_descriptions[0].codec_settings.aac_settings.rate_control_mode #=> String, one of "CBR", "VBR"
|
1563
1568
|
# resp.preset.settings.audio_descriptions[0].codec_settings.aac_settings.raw_format #=> String, one of "LATM_LOAS", "NONE"
|
1564
1569
|
# resp.preset.settings.audio_descriptions[0].codec_settings.aac_settings.sample_rate #=> Integer
|
1565
1570
|
# resp.preset.settings.audio_descriptions[0].codec_settings.aac_settings.specification #=> String, one of "MPEG2", "MPEG4"
|
1571
|
+
# resp.preset.settings.audio_descriptions[0].codec_settings.aac_settings.target_loudness_range #=> Integer
|
1566
1572
|
# resp.preset.settings.audio_descriptions[0].codec_settings.aac_settings.vbr_quality #=> String, one of "LOW", "MEDIUM_LOW", "MEDIUM_HIGH", "HIGH"
|
1567
1573
|
# resp.preset.settings.audio_descriptions[0].codec_settings.ac_3_settings.bitrate #=> Integer
|
1568
1574
|
# resp.preset.settings.audio_descriptions[0].codec_settings.ac_3_settings.bitstream_mode #=> String, one of "COMPLETE_MAIN", "COMMENTARY", "DIALOGUE", "EMERGENCY", "HEARING_IMPAIRED", "MUSIC_AND_EFFECTS", "VISUALLY_IMPAIRED", "VOICE_OVER"
|
@@ -1683,7 +1689,7 @@ module Aws::MediaConvert
|
|
1683
1689
|
# resp.preset.settings.caption_descriptions[0].destination_settings.dvb_sub_destination_settings.apply_font_color #=> String, one of "WHITE_TEXT_ONLY", "ALL_TEXT"
|
1684
1690
|
# resp.preset.settings.caption_descriptions[0].destination_settings.dvb_sub_destination_settings.background_color #=> String, one of "NONE", "BLACK", "WHITE", "AUTO"
|
1685
1691
|
# resp.preset.settings.caption_descriptions[0].destination_settings.dvb_sub_destination_settings.background_opacity #=> Integer
|
1686
|
-
# resp.preset.settings.caption_descriptions[0].destination_settings.dvb_sub_destination_settings.dds_handling #=> String, one of "NONE", "SPECIFIED", "NO_DISPLAY_WINDOW"
|
1692
|
+
# resp.preset.settings.caption_descriptions[0].destination_settings.dvb_sub_destination_settings.dds_handling #=> String, one of "NONE", "SPECIFIED", "NO_DISPLAY_WINDOW", "SPECIFIED_OPTIMAL"
|
1687
1693
|
# resp.preset.settings.caption_descriptions[0].destination_settings.dvb_sub_destination_settings.dds_x_coordinate #=> Integer
|
1688
1694
|
# resp.preset.settings.caption_descriptions[0].destination_settings.dvb_sub_destination_settings.dds_y_coordinate #=> Integer
|
1689
1695
|
# resp.preset.settings.caption_descriptions[0].destination_settings.dvb_sub_destination_settings.fallback_font #=> String, one of "BEST_MATCH", "MONOSPACED_SANSSERIF", "MONOSPACED_SERIF", "PROPORTIONAL_SANSSERIF", "PROPORTIONAL_SERIF"
|
@@ -2559,12 +2565,15 @@ module Aws::MediaConvert
|
|
2559
2565
|
# resp.preset.settings.audio_descriptions[0].audio_type_control #=> String, one of "FOLLOW_INPUT", "USE_CONFIGURED"
|
2560
2566
|
# resp.preset.settings.audio_descriptions[0].codec_settings.aac_settings.audio_description_broadcaster_mix #=> String, one of "BROADCASTER_MIXED_AD", "NORMAL"
|
2561
2567
|
# resp.preset.settings.audio_descriptions[0].codec_settings.aac_settings.bitrate #=> Integer
|
2562
|
-
# resp.preset.settings.audio_descriptions[0].codec_settings.aac_settings.codec_profile #=> String, one of "LC", "HEV1", "HEV2"
|
2568
|
+
# resp.preset.settings.audio_descriptions[0].codec_settings.aac_settings.codec_profile #=> String, one of "LC", "HEV1", "HEV2", "XHE"
|
2563
2569
|
# resp.preset.settings.audio_descriptions[0].codec_settings.aac_settings.coding_mode #=> String, one of "AD_RECEIVER_MIX", "CODING_MODE_1_0", "CODING_MODE_1_1", "CODING_MODE_2_0", "CODING_MODE_5_1"
|
2570
|
+
# resp.preset.settings.audio_descriptions[0].codec_settings.aac_settings.loudness_measurement_mode #=> String, one of "PROGRAM", "ANCHOR"
|
2571
|
+
# resp.preset.settings.audio_descriptions[0].codec_settings.aac_settings.rap_interval #=> Integer
|
2564
2572
|
# resp.preset.settings.audio_descriptions[0].codec_settings.aac_settings.rate_control_mode #=> String, one of "CBR", "VBR"
|
2565
2573
|
# resp.preset.settings.audio_descriptions[0].codec_settings.aac_settings.raw_format #=> String, one of "LATM_LOAS", "NONE"
|
2566
2574
|
# resp.preset.settings.audio_descriptions[0].codec_settings.aac_settings.sample_rate #=> Integer
|
2567
2575
|
# resp.preset.settings.audio_descriptions[0].codec_settings.aac_settings.specification #=> String, one of "MPEG2", "MPEG4"
|
2576
|
+
# resp.preset.settings.audio_descriptions[0].codec_settings.aac_settings.target_loudness_range #=> Integer
|
2568
2577
|
# resp.preset.settings.audio_descriptions[0].codec_settings.aac_settings.vbr_quality #=> String, one of "LOW", "MEDIUM_LOW", "MEDIUM_HIGH", "HIGH"
|
2569
2578
|
# resp.preset.settings.audio_descriptions[0].codec_settings.ac_3_settings.bitrate #=> Integer
|
2570
2579
|
# resp.preset.settings.audio_descriptions[0].codec_settings.ac_3_settings.bitstream_mode #=> String, one of "COMPLETE_MAIN", "COMMENTARY", "DIALOGUE", "EMERGENCY", "HEARING_IMPAIRED", "MUSIC_AND_EFFECTS", "VISUALLY_IMPAIRED", "VOICE_OVER"
|
@@ -2685,7 +2694,7 @@ module Aws::MediaConvert
|
|
2685
2694
|
# resp.preset.settings.caption_descriptions[0].destination_settings.dvb_sub_destination_settings.apply_font_color #=> String, one of "WHITE_TEXT_ONLY", "ALL_TEXT"
|
2686
2695
|
# resp.preset.settings.caption_descriptions[0].destination_settings.dvb_sub_destination_settings.background_color #=> String, one of "NONE", "BLACK", "WHITE", "AUTO"
|
2687
2696
|
# resp.preset.settings.caption_descriptions[0].destination_settings.dvb_sub_destination_settings.background_opacity #=> Integer
|
2688
|
-
# resp.preset.settings.caption_descriptions[0].destination_settings.dvb_sub_destination_settings.dds_handling #=> String, one of "NONE", "SPECIFIED", "NO_DISPLAY_WINDOW"
|
2697
|
+
# resp.preset.settings.caption_descriptions[0].destination_settings.dvb_sub_destination_settings.dds_handling #=> String, one of "NONE", "SPECIFIED", "NO_DISPLAY_WINDOW", "SPECIFIED_OPTIMAL"
|
2689
2698
|
# resp.preset.settings.caption_descriptions[0].destination_settings.dvb_sub_destination_settings.dds_x_coordinate #=> Integer
|
2690
2699
|
# resp.preset.settings.caption_descriptions[0].destination_settings.dvb_sub_destination_settings.dds_y_coordinate #=> Integer
|
2691
2700
|
# resp.preset.settings.caption_descriptions[0].destination_settings.dvb_sub_destination_settings.fallback_font #=> String, one of "BEST_MATCH", "MONOSPACED_SANSSERIF", "MONOSPACED_SERIF", "PROPORTIONAL_SANSSERIF", "PROPORTIONAL_SERIF"
|
@@ -3429,12 +3438,15 @@ module Aws::MediaConvert
|
|
3429
3438
|
# resp.presets[0].settings.audio_descriptions[0].audio_type_control #=> String, one of "FOLLOW_INPUT", "USE_CONFIGURED"
|
3430
3439
|
# resp.presets[0].settings.audio_descriptions[0].codec_settings.aac_settings.audio_description_broadcaster_mix #=> String, one of "BROADCASTER_MIXED_AD", "NORMAL"
|
3431
3440
|
# resp.presets[0].settings.audio_descriptions[0].codec_settings.aac_settings.bitrate #=> Integer
|
3432
|
-
# resp.presets[0].settings.audio_descriptions[0].codec_settings.aac_settings.codec_profile #=> String, one of "LC", "HEV1", "HEV2"
|
3441
|
+
# resp.presets[0].settings.audio_descriptions[0].codec_settings.aac_settings.codec_profile #=> String, one of "LC", "HEV1", "HEV2", "XHE"
|
3433
3442
|
# resp.presets[0].settings.audio_descriptions[0].codec_settings.aac_settings.coding_mode #=> String, one of "AD_RECEIVER_MIX", "CODING_MODE_1_0", "CODING_MODE_1_1", "CODING_MODE_2_0", "CODING_MODE_5_1"
|
3443
|
+
# resp.presets[0].settings.audio_descriptions[0].codec_settings.aac_settings.loudness_measurement_mode #=> String, one of "PROGRAM", "ANCHOR"
|
3444
|
+
# resp.presets[0].settings.audio_descriptions[0].codec_settings.aac_settings.rap_interval #=> Integer
|
3434
3445
|
# resp.presets[0].settings.audio_descriptions[0].codec_settings.aac_settings.rate_control_mode #=> String, one of "CBR", "VBR"
|
3435
3446
|
# resp.presets[0].settings.audio_descriptions[0].codec_settings.aac_settings.raw_format #=> String, one of "LATM_LOAS", "NONE"
|
3436
3447
|
# resp.presets[0].settings.audio_descriptions[0].codec_settings.aac_settings.sample_rate #=> Integer
|
3437
3448
|
# resp.presets[0].settings.audio_descriptions[0].codec_settings.aac_settings.specification #=> String, one of "MPEG2", "MPEG4"
|
3449
|
+
# resp.presets[0].settings.audio_descriptions[0].codec_settings.aac_settings.target_loudness_range #=> Integer
|
3438
3450
|
# resp.presets[0].settings.audio_descriptions[0].codec_settings.aac_settings.vbr_quality #=> String, one of "LOW", "MEDIUM_LOW", "MEDIUM_HIGH", "HIGH"
|
3439
3451
|
# resp.presets[0].settings.audio_descriptions[0].codec_settings.ac_3_settings.bitrate #=> Integer
|
3440
3452
|
# resp.presets[0].settings.audio_descriptions[0].codec_settings.ac_3_settings.bitstream_mode #=> String, one of "COMPLETE_MAIN", "COMMENTARY", "DIALOGUE", "EMERGENCY", "HEARING_IMPAIRED", "MUSIC_AND_EFFECTS", "VISUALLY_IMPAIRED", "VOICE_OVER"
|
@@ -3555,7 +3567,7 @@ module Aws::MediaConvert
|
|
3555
3567
|
# resp.presets[0].settings.caption_descriptions[0].destination_settings.dvb_sub_destination_settings.apply_font_color #=> String, one of "WHITE_TEXT_ONLY", "ALL_TEXT"
|
3556
3568
|
# resp.presets[0].settings.caption_descriptions[0].destination_settings.dvb_sub_destination_settings.background_color #=> String, one of "NONE", "BLACK", "WHITE", "AUTO"
|
3557
3569
|
# resp.presets[0].settings.caption_descriptions[0].destination_settings.dvb_sub_destination_settings.background_opacity #=> Integer
|
3558
|
-
# resp.presets[0].settings.caption_descriptions[0].destination_settings.dvb_sub_destination_settings.dds_handling #=> String, one of "NONE", "SPECIFIED", "NO_DISPLAY_WINDOW"
|
3570
|
+
# resp.presets[0].settings.caption_descriptions[0].destination_settings.dvb_sub_destination_settings.dds_handling #=> String, one of "NONE", "SPECIFIED", "NO_DISPLAY_WINDOW", "SPECIFIED_OPTIMAL"
|
3559
3571
|
# resp.presets[0].settings.caption_descriptions[0].destination_settings.dvb_sub_destination_settings.dds_x_coordinate #=> Integer
|
3560
3572
|
# resp.presets[0].settings.caption_descriptions[0].destination_settings.dvb_sub_destination_settings.dds_y_coordinate #=> Integer
|
3561
3573
|
# resp.presets[0].settings.caption_descriptions[0].destination_settings.dvb_sub_destination_settings.fallback_font #=> String, one of "BEST_MATCH", "MONOSPACED_SANSSERIF", "MONOSPACED_SERIF", "PROPORTIONAL_SANSSERIF", "PROPORTIONAL_SERIF"
|
@@ -4252,7 +4264,7 @@ module Aws::MediaConvert
|
|
4252
4264
|
#
|
4253
4265
|
# resp.probe_results #=> Array
|
4254
4266
|
# resp.probe_results[0].container.duration #=> Float
|
4255
|
-
# resp.probe_results[0].container.format #=> String, one of "mp4", "quicktime", "matroska", "webm"
|
4267
|
+
# resp.probe_results[0].container.format #=> String, one of "mp4", "quicktime", "matroska", "webm", "mxf"
|
4256
4268
|
# resp.probe_results[0].container.tracks #=> Array
|
4257
4269
|
# resp.probe_results[0].container.tracks[0].audio_properties.bit_depth #=> Integer
|
4258
4270
|
# resp.probe_results[0].container.tracks[0].audio_properties.bit_rate #=> Integer
|
@@ -4261,7 +4273,7 @@ module Aws::MediaConvert
|
|
4261
4273
|
# resp.probe_results[0].container.tracks[0].audio_properties.frame_rate.numerator #=> Integer
|
4262
4274
|
# resp.probe_results[0].container.tracks[0].audio_properties.language_code #=> String
|
4263
4275
|
# resp.probe_results[0].container.tracks[0].audio_properties.sample_rate #=> Integer
|
4264
|
-
# resp.probe_results[0].container.tracks[0].codec #=> String, one of "UNKNOWN", "AAC", "AC3", "EAC3", "FLAC", "MP3", "OPUS", "PCM", "VORBIS", "AV1", "AVC", "HEVC", "MJPEG", "MP4V", "MPEG2", "PRORES", "THEORA", "VP8", "VP9", "C608", "C708", "WEBVTT"
|
4276
|
+
# resp.probe_results[0].container.tracks[0].codec #=> String, one of "UNKNOWN", "AAC", "AC3", "EAC3", "FLAC", "MP3", "OPUS", "PCM", "VORBIS", "AV1", "AVC", "HEVC", "JPEG2000", "MJPEG", "MP4V", "MPEG2", "PRORES", "THEORA", "VP8", "VP9", "C608", "C708", "WEBVTT"
|
4265
4277
|
# resp.probe_results[0].container.tracks[0].data_properties.language_code #=> String
|
4266
4278
|
# resp.probe_results[0].container.tracks[0].duration #=> Float
|
4267
4279
|
# resp.probe_results[0].container.tracks[0].index #=> Integer
|
@@ -4554,12 +4566,15 @@ module Aws::MediaConvert
|
|
4554
4566
|
# aac_settings: {
|
4555
4567
|
# audio_description_broadcaster_mix: "BROADCASTER_MIXED_AD", # accepts BROADCASTER_MIXED_AD, NORMAL
|
4556
4568
|
# bitrate: 1,
|
4557
|
-
# codec_profile: "LC", # accepts LC, HEV1, HEV2
|
4569
|
+
# codec_profile: "LC", # accepts LC, HEV1, HEV2, XHE
|
4558
4570
|
# coding_mode: "AD_RECEIVER_MIX", # accepts AD_RECEIVER_MIX, CODING_MODE_1_0, CODING_MODE_1_1, CODING_MODE_2_0, CODING_MODE_5_1
|
4571
|
+
# loudness_measurement_mode: "PROGRAM", # accepts PROGRAM, ANCHOR
|
4572
|
+
# rap_interval: 1,
|
4559
4573
|
# rate_control_mode: "CBR", # accepts CBR, VBR
|
4560
4574
|
# raw_format: "LATM_LOAS", # accepts LATM_LOAS, NONE
|
4561
4575
|
# sample_rate: 1,
|
4562
4576
|
# specification: "MPEG2", # accepts MPEG2, MPEG4
|
4577
|
+
# target_loudness_range: 1,
|
4563
4578
|
# vbr_quality: "LOW", # accepts LOW, MEDIUM_LOW, MEDIUM_HIGH, HIGH
|
4564
4579
|
# },
|
4565
4580
|
# ac_3_settings: {
|
@@ -4714,7 +4729,7 @@ module Aws::MediaConvert
|
|
4714
4729
|
# apply_font_color: "WHITE_TEXT_ONLY", # accepts WHITE_TEXT_ONLY, ALL_TEXT
|
4715
4730
|
# background_color: "NONE", # accepts NONE, BLACK, WHITE, AUTO
|
4716
4731
|
# background_opacity: 1,
|
4717
|
-
# dds_handling: "NONE", # accepts NONE, SPECIFIED, NO_DISPLAY_WINDOW
|
4732
|
+
# dds_handling: "NONE", # accepts NONE, SPECIFIED, NO_DISPLAY_WINDOW, SPECIFIED_OPTIMAL
|
4718
4733
|
# dds_x_coordinate: 1,
|
4719
4734
|
# dds_y_coordinate: 1,
|
4720
4735
|
# fallback_font: "BEST_MATCH", # accepts BEST_MATCH, MONOSPACED_SANSSERIF, MONOSPACED_SERIF, PROPORTIONAL_SANSSERIF, PROPORTIONAL_SERIF
|
@@ -5376,12 +5391,15 @@ module Aws::MediaConvert
|
|
5376
5391
|
# resp.preset.settings.audio_descriptions[0].audio_type_control #=> String, one of "FOLLOW_INPUT", "USE_CONFIGURED"
|
5377
5392
|
# resp.preset.settings.audio_descriptions[0].codec_settings.aac_settings.audio_description_broadcaster_mix #=> String, one of "BROADCASTER_MIXED_AD", "NORMAL"
|
5378
5393
|
# resp.preset.settings.audio_descriptions[0].codec_settings.aac_settings.bitrate #=> Integer
|
5379
|
-
# resp.preset.settings.audio_descriptions[0].codec_settings.aac_settings.codec_profile #=> String, one of "LC", "HEV1", "HEV2"
|
5394
|
+
# resp.preset.settings.audio_descriptions[0].codec_settings.aac_settings.codec_profile #=> String, one of "LC", "HEV1", "HEV2", "XHE"
|
5380
5395
|
# resp.preset.settings.audio_descriptions[0].codec_settings.aac_settings.coding_mode #=> String, one of "AD_RECEIVER_MIX", "CODING_MODE_1_0", "CODING_MODE_1_1", "CODING_MODE_2_0", "CODING_MODE_5_1"
|
5396
|
+
# resp.preset.settings.audio_descriptions[0].codec_settings.aac_settings.loudness_measurement_mode #=> String, one of "PROGRAM", "ANCHOR"
|
5397
|
+
# resp.preset.settings.audio_descriptions[0].codec_settings.aac_settings.rap_interval #=> Integer
|
5381
5398
|
# resp.preset.settings.audio_descriptions[0].codec_settings.aac_settings.rate_control_mode #=> String, one of "CBR", "VBR"
|
5382
5399
|
# resp.preset.settings.audio_descriptions[0].codec_settings.aac_settings.raw_format #=> String, one of "LATM_LOAS", "NONE"
|
5383
5400
|
# resp.preset.settings.audio_descriptions[0].codec_settings.aac_settings.sample_rate #=> Integer
|
5384
5401
|
# resp.preset.settings.audio_descriptions[0].codec_settings.aac_settings.specification #=> String, one of "MPEG2", "MPEG4"
|
5402
|
+
# resp.preset.settings.audio_descriptions[0].codec_settings.aac_settings.target_loudness_range #=> Integer
|
5385
5403
|
# resp.preset.settings.audio_descriptions[0].codec_settings.aac_settings.vbr_quality #=> String, one of "LOW", "MEDIUM_LOW", "MEDIUM_HIGH", "HIGH"
|
5386
5404
|
# resp.preset.settings.audio_descriptions[0].codec_settings.ac_3_settings.bitrate #=> Integer
|
5387
5405
|
# resp.preset.settings.audio_descriptions[0].codec_settings.ac_3_settings.bitstream_mode #=> String, one of "COMPLETE_MAIN", "COMMENTARY", "DIALOGUE", "EMERGENCY", "HEARING_IMPAIRED", "MUSIC_AND_EFFECTS", "VISUALLY_IMPAIRED", "VOICE_OVER"
|
@@ -5502,7 +5520,7 @@ module Aws::MediaConvert
|
|
5502
5520
|
# resp.preset.settings.caption_descriptions[0].destination_settings.dvb_sub_destination_settings.apply_font_color #=> String, one of "WHITE_TEXT_ONLY", "ALL_TEXT"
|
5503
5521
|
# resp.preset.settings.caption_descriptions[0].destination_settings.dvb_sub_destination_settings.background_color #=> String, one of "NONE", "BLACK", "WHITE", "AUTO"
|
5504
5522
|
# resp.preset.settings.caption_descriptions[0].destination_settings.dvb_sub_destination_settings.background_opacity #=> Integer
|
5505
|
-
# resp.preset.settings.caption_descriptions[0].destination_settings.dvb_sub_destination_settings.dds_handling #=> String, one of "NONE", "SPECIFIED", "NO_DISPLAY_WINDOW"
|
5523
|
+
# resp.preset.settings.caption_descriptions[0].destination_settings.dvb_sub_destination_settings.dds_handling #=> String, one of "NONE", "SPECIFIED", "NO_DISPLAY_WINDOW", "SPECIFIED_OPTIMAL"
|
5506
5524
|
# resp.preset.settings.caption_descriptions[0].destination_settings.dvb_sub_destination_settings.dds_x_coordinate #=> Integer
|
5507
5525
|
# resp.preset.settings.caption_descriptions[0].destination_settings.dvb_sub_destination_settings.dds_y_coordinate #=> Integer
|
5508
5526
|
# resp.preset.settings.caption_descriptions[0].destination_settings.dvb_sub_destination_settings.fallback_font #=> String, one of "BEST_MATCH", "MONOSPACED_SANSSERIF", "MONOSPACED_SERIF", "PROPORTIONAL_SANSSERIF", "PROPORTIONAL_SERIF"
|
@@ -6122,7 +6140,7 @@ module Aws::MediaConvert
|
|
6122
6140
|
tracer: tracer
|
6123
6141
|
)
|
6124
6142
|
context[:gem_name] = 'aws-sdk-mediaconvert'
|
6125
|
-
context[:gem_version] = '1.
|
6143
|
+
context[:gem_version] = '1.163.0'
|
6126
6144
|
Seahorse::Client::Request.new(handlers, context)
|
6127
6145
|
end
|
6128
6146
|
|
@@ -17,6 +17,7 @@ module Aws::MediaConvert
|
|
17
17
|
AacAudioDescriptionBroadcasterMix = Shapes::StringShape.new(name: 'AacAudioDescriptionBroadcasterMix')
|
18
18
|
AacCodecProfile = Shapes::StringShape.new(name: 'AacCodecProfile')
|
19
19
|
AacCodingMode = Shapes::StringShape.new(name: 'AacCodingMode')
|
20
|
+
AacLoudnessMeasurementMode = Shapes::StringShape.new(name: 'AacLoudnessMeasurementMode')
|
20
21
|
AacRateControlMode = Shapes::StringShape.new(name: 'AacRateControlMode')
|
21
22
|
AacRawFormat = Shapes::StringShape.new(name: 'AacRawFormat')
|
22
23
|
AacSettings = Shapes::StructureShape.new(name: 'AacSettings')
|
@@ -803,6 +804,8 @@ module Aws::MediaConvert
|
|
803
804
|
__integerMin1Max60000 = Shapes::IntegerShape.new(name: '__integerMin1Max60000')
|
804
805
|
__integerMin1Max64 = Shapes::IntegerShape.new(name: '__integerMin1Max64')
|
805
806
|
__integerMin1Max8 = Shapes::IntegerShape.new(name: '__integerMin1Max8')
|
807
|
+
__integerMin2000Max30000 = Shapes::IntegerShape.new(name: '__integerMin2000Max30000')
|
808
|
+
__integerMin22050Max192000 = Shapes::IntegerShape.new(name: '__integerMin22050Max192000')
|
806
809
|
__integerMin22050Max48000 = Shapes::IntegerShape.new(name: '__integerMin22050Max48000')
|
807
810
|
__integerMin24Max60000 = Shapes::IntegerShape.new(name: '__integerMin24Max60000')
|
808
811
|
__integerMin25Max10000 = Shapes::IntegerShape.new(name: '__integerMin25Max10000')
|
@@ -822,6 +825,7 @@ module Aws::MediaConvert
|
|
822
825
|
__integerMin50Max86400000 = Shapes::IntegerShape.new(name: '__integerMin50Max86400000')
|
823
826
|
__integerMin6000Max1024000 = Shapes::IntegerShape.new(name: '__integerMin6000Max1024000')
|
824
827
|
__integerMin64000Max640000 = Shapes::IntegerShape.new(name: '__integerMin64000Max640000')
|
828
|
+
__integerMin6Max16 = Shapes::IntegerShape.new(name: '__integerMin6Max16')
|
825
829
|
__integerMin8000Max192000 = Shapes::IntegerShape.new(name: '__integerMin8000Max192000')
|
826
830
|
__integerMin8000Max96000 = Shapes::IntegerShape.new(name: '__integerMin8000Max96000')
|
827
831
|
__integerMin8Max12 = Shapes::IntegerShape.new(name: '__integerMin8Max12')
|
@@ -962,10 +966,13 @@ module Aws::MediaConvert
|
|
962
966
|
AacSettings.add_member(:bitrate, Shapes::ShapeRef.new(shape: __integerMin6000Max1024000, location_name: "bitrate"))
|
963
967
|
AacSettings.add_member(:codec_profile, Shapes::ShapeRef.new(shape: AacCodecProfile, location_name: "codecProfile"))
|
964
968
|
AacSettings.add_member(:coding_mode, Shapes::ShapeRef.new(shape: AacCodingMode, location_name: "codingMode"))
|
969
|
+
AacSettings.add_member(:loudness_measurement_mode, Shapes::ShapeRef.new(shape: AacLoudnessMeasurementMode, location_name: "loudnessMeasurementMode"))
|
970
|
+
AacSettings.add_member(:rap_interval, Shapes::ShapeRef.new(shape: __integerMin2000Max30000, location_name: "rapInterval"))
|
965
971
|
AacSettings.add_member(:rate_control_mode, Shapes::ShapeRef.new(shape: AacRateControlMode, location_name: "rateControlMode"))
|
966
972
|
AacSettings.add_member(:raw_format, Shapes::ShapeRef.new(shape: AacRawFormat, location_name: "rawFormat"))
|
967
973
|
AacSettings.add_member(:sample_rate, Shapes::ShapeRef.new(shape: __integerMin8000Max96000, location_name: "sampleRate"))
|
968
974
|
AacSettings.add_member(:specification, Shapes::ShapeRef.new(shape: AacSpecification, location_name: "specification"))
|
975
|
+
AacSettings.add_member(:target_loudness_range, Shapes::ShapeRef.new(shape: __integerMin6Max16, location_name: "targetLoudnessRange"))
|
969
976
|
AacSettings.add_member(:vbr_quality, Shapes::ShapeRef.new(shape: AacVbrQuality, location_name: "vbrQuality"))
|
970
977
|
AacSettings.struct_class = Types::AacSettings
|
971
978
|
|
@@ -1631,7 +1638,7 @@ module Aws::MediaConvert
|
|
1631
1638
|
|
1632
1639
|
FlacSettings.add_member(:bit_depth, Shapes::ShapeRef.new(shape: __integerMin16Max24, location_name: "bitDepth"))
|
1633
1640
|
FlacSettings.add_member(:channels, Shapes::ShapeRef.new(shape: __integerMin1Max8, location_name: "channels"))
|
1634
|
-
FlacSettings.add_member(:sample_rate, Shapes::ShapeRef.new(shape:
|
1641
|
+
FlacSettings.add_member(:sample_rate, Shapes::ShapeRef.new(shape: __integerMin22050Max192000, location_name: "sampleRate"))
|
1635
1642
|
FlacSettings.struct_class = Types::FlacSettings
|
1636
1643
|
|
1637
1644
|
ForbiddenException.add_member(:message, Shapes::ShapeRef.new(shape: __string, location_name: "message"))
|
@@ -64,6 +64,26 @@ module Aws::MediaConvert
|
|
64
64
|
# 5.1 Surround: Six channels, C, L, R, Ls, Rs, LFE.
|
65
65
|
# @return [String]
|
66
66
|
#
|
67
|
+
# @!attribute [rw] loudness_measurement_mode
|
68
|
+
# Choose the loudness measurement mode for your audio content. For
|
69
|
+
# music or advertisements: We recommend that you keep the default
|
70
|
+
# value, Program. For speech or other content: We recommend that you
|
71
|
+
# choose Anchor. When you do, MediaConvert optimizes the loudness of
|
72
|
+
# your output for clarify by applying speech gates.
|
73
|
+
# @return [String]
|
74
|
+
#
|
75
|
+
# @!attribute [rw] rap_interval
|
76
|
+
# Specify the RAP (Random Access Point) interval for your xHE-AAC
|
77
|
+
# audio output. A RAP allows a decoder to decode audio data
|
78
|
+
# mid-stream, without the need to reference previous audio frames, and
|
79
|
+
# perform adaptive audio bitrate switching. To specify the RAP
|
80
|
+
# interval: Enter an integer from 2000 to 30000, in milliseconds.
|
81
|
+
# Smaller values allow for better seeking and more frequent stream
|
82
|
+
# switching, while large values improve compression efficiency. To
|
83
|
+
# have MediaConvert automatically determine the RAP interval: Leave
|
84
|
+
# blank.
|
85
|
+
# @return [Integer]
|
86
|
+
#
|
67
87
|
# @!attribute [rw] rate_control_mode
|
68
88
|
# Specify the AAC rate control mode. For a constant bitrate: Choose
|
69
89
|
# CBR. Your AAC output bitrate will be equal to the value that you
|
@@ -90,6 +110,13 @@ module Aws::MediaConvert
|
|
90
110
|
# Transport Stream containers.
|
91
111
|
# @return [String]
|
92
112
|
#
|
113
|
+
# @!attribute [rw] target_loudness_range
|
114
|
+
# Specify the xHE-AAC loudness target. Enter an integer from 6 to 16,
|
115
|
+
# representing "loudness units". For more information, see the
|
116
|
+
# following specification: Supplementary information for R 128 EBU
|
117
|
+
# Tech 3342-2023.
|
118
|
+
# @return [Integer]
|
119
|
+
#
|
93
120
|
# @!attribute [rw] vbr_quality
|
94
121
|
# Specify the quality of your variable bitrate (VBR) AAC audio. For a
|
95
122
|
# list of approximate VBR bitrates, see:
|
@@ -103,10 +130,13 @@ module Aws::MediaConvert
|
|
103
130
|
:bitrate,
|
104
131
|
:codec_profile,
|
105
132
|
:coding_mode,
|
133
|
+
:loudness_measurement_mode,
|
134
|
+
:rap_interval,
|
106
135
|
:rate_control_mode,
|
107
136
|
:raw_format,
|
108
137
|
:sample_rate,
|
109
138
|
:specification,
|
139
|
+
:target_loudness_range,
|
110
140
|
:vbr_quality)
|
111
141
|
SENSITIVE = []
|
112
142
|
include Aws::Structure
|
@@ -3016,9 +3046,9 @@ module Aws::MediaConvert
|
|
3016
3046
|
#
|
3017
3047
|
# @!attribute [rw] format
|
3018
3048
|
# The format of your media file. For example: MP4, QuickTime (MOV),
|
3019
|
-
# Matroska (MKV), or
|
3020
|
-
# file has a format that the MediaConvert Probe operation does
|
3021
|
-
# recognize.
|
3049
|
+
# Matroska (MKV), WebM or MXF. Note that this will be blank if your
|
3050
|
+
# media file has a format that the MediaConvert Probe operation does
|
3051
|
+
# not recognize.
|
3022
3052
|
# @return [String]
|
3023
3053
|
#
|
3024
3054
|
# @!attribute [rw] tracks
|
@@ -4247,7 +4277,14 @@ module Aws::MediaConvert
|
|
4247
4277
|
# (PCS) with DDS x-coordinate and DDS y-coordinate. For video
|
4248
4278
|
# resolutions with a height of 576 pixels or less, MediaConvert
|
4249
4279
|
# doesn't include the DDS, regardless of the value you choose for DDS
|
4250
|
-
# handling. All burn-in and DVB-Sub font settings must match.
|
4280
|
+
# handling. All burn-in and DVB-Sub font settings must match. To
|
4281
|
+
# include the DDS, with optimized subtitle placement and reduced data
|
4282
|
+
# overhead: We recommend that you choose Specified (optimal). This
|
4283
|
+
# option provides the same visual positioning as Specified while using
|
4284
|
+
# less bandwidth. This also supports resolutions higher than 1080p
|
4285
|
+
# while maintaining full DVB-Sub compatibility. When you do, also
|
4286
|
+
# specify the offset coordinates of the display window with DDS
|
4287
|
+
# x-coordinate and DDS y-coordinate.
|
4251
4288
|
# @return [String]
|
4252
4289
|
#
|
4253
4290
|
# @!attribute [rw] dds_x_coordinate
|
@@ -13728,11 +13765,10 @@ module Aws::MediaConvert
|
|
13728
13765
|
# @!attribute [rw] codec
|
13729
13766
|
# Specifies the video codec. This must be equal to one of the enum
|
13730
13767
|
# values defined by the object VideoCodec. To passthrough the video
|
13731
|
-
# stream of your input
|
13732
|
-
#
|
13733
|
-
#
|
13734
|
-
#
|
13735
|
-
# be MXF or QuickTime MOV.
|
13768
|
+
# stream of your input without any video encoding: Choose Passthrough.
|
13769
|
+
# More information about passthrough codec support and job settings
|
13770
|
+
# requirements, see:
|
13771
|
+
# https://docs.aws.amazon.com/mediaconvert/latest/ug/video-passthrough-feature-restrictions.html
|
13736
13772
|
# @return [String]
|
13737
13773
|
#
|
13738
13774
|
# @!attribute [rw] frame_capture_settings
|
data/lib/aws-sdk-mediaconvert.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -762,12 +762,15 @@ module Aws
|
|
762
762
|
aac_settings: {
|
763
763
|
audio_description_broadcaster_mix: ("BROADCASTER_MIXED_AD" | "NORMAL")?,
|
764
764
|
bitrate: ::Integer?,
|
765
|
-
codec_profile: ("LC" | "HEV1" | "HEV2")?,
|
765
|
+
codec_profile: ("LC" | "HEV1" | "HEV2" | "XHE")?,
|
766
766
|
coding_mode: ("AD_RECEIVER_MIX" | "CODING_MODE_1_0" | "CODING_MODE_1_1" | "CODING_MODE_2_0" | "CODING_MODE_5_1")?,
|
767
|
+
loudness_measurement_mode: ("PROGRAM" | "ANCHOR")?,
|
768
|
+
rap_interval: ::Integer?,
|
767
769
|
rate_control_mode: ("CBR" | "VBR")?,
|
768
770
|
raw_format: ("LATM_LOAS" | "NONE")?,
|
769
771
|
sample_rate: ::Integer?,
|
770
772
|
specification: ("MPEG2" | "MPEG4")?,
|
773
|
+
target_loudness_range: ::Integer?,
|
771
774
|
vbr_quality: ("LOW" | "MEDIUM_LOW" | "MEDIUM_HIGH" | "HIGH")?
|
772
775
|
}?,
|
773
776
|
ac_3_settings: {
|
@@ -923,7 +926,7 @@ module Aws
|
|
923
926
|
apply_font_color: ("WHITE_TEXT_ONLY" | "ALL_TEXT")?,
|
924
927
|
background_color: ("NONE" | "BLACK" | "WHITE" | "AUTO")?,
|
925
928
|
background_opacity: ::Integer?,
|
926
|
-
dds_handling: ("NONE" | "SPECIFIED" | "NO_DISPLAY_WINDOW")?,
|
929
|
+
dds_handling: ("NONE" | "SPECIFIED" | "NO_DISPLAY_WINDOW" | "SPECIFIED_OPTIMAL")?,
|
927
930
|
dds_x_coordinate: ::Integer?,
|
928
931
|
dds_y_coordinate: ::Integer?,
|
929
932
|
fallback_font: ("BEST_MATCH" | "MONOSPACED_SANSSERIF" | "MONOSPACED_SERIF" | "PROPORTIONAL_SANSSERIF" | "PROPORTIONAL_SERIF")?,
|
@@ -2248,12 +2251,15 @@ module Aws
|
|
2248
2251
|
aac_settings: {
|
2249
2252
|
audio_description_broadcaster_mix: ("BROADCASTER_MIXED_AD" | "NORMAL")?,
|
2250
2253
|
bitrate: ::Integer?,
|
2251
|
-
codec_profile: ("LC" | "HEV1" | "HEV2")?,
|
2254
|
+
codec_profile: ("LC" | "HEV1" | "HEV2" | "XHE")?,
|
2252
2255
|
coding_mode: ("AD_RECEIVER_MIX" | "CODING_MODE_1_0" | "CODING_MODE_1_1" | "CODING_MODE_2_0" | "CODING_MODE_5_1")?,
|
2256
|
+
loudness_measurement_mode: ("PROGRAM" | "ANCHOR")?,
|
2257
|
+
rap_interval: ::Integer?,
|
2253
2258
|
rate_control_mode: ("CBR" | "VBR")?,
|
2254
2259
|
raw_format: ("LATM_LOAS" | "NONE")?,
|
2255
2260
|
sample_rate: ::Integer?,
|
2256
2261
|
specification: ("MPEG2" | "MPEG4")?,
|
2262
|
+
target_loudness_range: ::Integer?,
|
2257
2263
|
vbr_quality: ("LOW" | "MEDIUM_LOW" | "MEDIUM_HIGH" | "HIGH")?
|
2258
2264
|
}?,
|
2259
2265
|
ac_3_settings: {
|
@@ -2409,7 +2415,7 @@ module Aws
|
|
2409
2415
|
apply_font_color: ("WHITE_TEXT_ONLY" | "ALL_TEXT")?,
|
2410
2416
|
background_color: ("NONE" | "BLACK" | "WHITE" | "AUTO")?,
|
2411
2417
|
background_opacity: ::Integer?,
|
2412
|
-
dds_handling: ("NONE" | "SPECIFIED" | "NO_DISPLAY_WINDOW")?,
|
2418
|
+
dds_handling: ("NONE" | "SPECIFIED" | "NO_DISPLAY_WINDOW" | "SPECIFIED_OPTIMAL")?,
|
2413
2419
|
dds_x_coordinate: ::Integer?,
|
2414
2420
|
dds_y_coordinate: ::Integer?,
|
2415
2421
|
fallback_font: ("BEST_MATCH" | "MONOSPACED_SANSSERIF" | "MONOSPACED_SERIF" | "PROPORTIONAL_SANSSERIF" | "PROPORTIONAL_SERIF")?,
|
@@ -3114,12 +3120,15 @@ module Aws
|
|
3114
3120
|
aac_settings: {
|
3115
3121
|
audio_description_broadcaster_mix: ("BROADCASTER_MIXED_AD" | "NORMAL")?,
|
3116
3122
|
bitrate: ::Integer?,
|
3117
|
-
codec_profile: ("LC" | "HEV1" | "HEV2")?,
|
3123
|
+
codec_profile: ("LC" | "HEV1" | "HEV2" | "XHE")?,
|
3118
3124
|
coding_mode: ("AD_RECEIVER_MIX" | "CODING_MODE_1_0" | "CODING_MODE_1_1" | "CODING_MODE_2_0" | "CODING_MODE_5_1")?,
|
3125
|
+
loudness_measurement_mode: ("PROGRAM" | "ANCHOR")?,
|
3126
|
+
rap_interval: ::Integer?,
|
3119
3127
|
rate_control_mode: ("CBR" | "VBR")?,
|
3120
3128
|
raw_format: ("LATM_LOAS" | "NONE")?,
|
3121
3129
|
sample_rate: ::Integer?,
|
3122
3130
|
specification: ("MPEG2" | "MPEG4")?,
|
3131
|
+
target_loudness_range: ::Integer?,
|
3123
3132
|
vbr_quality: ("LOW" | "MEDIUM_LOW" | "MEDIUM_HIGH" | "HIGH")?
|
3124
3133
|
}?,
|
3125
3134
|
ac_3_settings: {
|
@@ -3274,7 +3283,7 @@ module Aws
|
|
3274
3283
|
apply_font_color: ("WHITE_TEXT_ONLY" | "ALL_TEXT")?,
|
3275
3284
|
background_color: ("NONE" | "BLACK" | "WHITE" | "AUTO")?,
|
3276
3285
|
background_opacity: ::Integer?,
|
3277
|
-
dds_handling: ("NONE" | "SPECIFIED" | "NO_DISPLAY_WINDOW")?,
|
3286
|
+
dds_handling: ("NONE" | "SPECIFIED" | "NO_DISPLAY_WINDOW" | "SPECIFIED_OPTIMAL")?,
|
3278
3287
|
dds_x_coordinate: ::Integer?,
|
3279
3288
|
dds_y_coordinate: ::Integer?,
|
3280
3289
|
fallback_font: ("BEST_MATCH" | "MONOSPACED_SANSSERIF" | "MONOSPACED_SERIF" | "PROPORTIONAL_SANSSERIF" | "PROPORTIONAL_SERIF")?,
|
@@ -4837,12 +4846,15 @@ module Aws
|
|
4837
4846
|
aac_settings: {
|
4838
4847
|
audio_description_broadcaster_mix: ("BROADCASTER_MIXED_AD" | "NORMAL")?,
|
4839
4848
|
bitrate: ::Integer?,
|
4840
|
-
codec_profile: ("LC" | "HEV1" | "HEV2")?,
|
4849
|
+
codec_profile: ("LC" | "HEV1" | "HEV2" | "XHE")?,
|
4841
4850
|
coding_mode: ("AD_RECEIVER_MIX" | "CODING_MODE_1_0" | "CODING_MODE_1_1" | "CODING_MODE_2_0" | "CODING_MODE_5_1")?,
|
4851
|
+
loudness_measurement_mode: ("PROGRAM" | "ANCHOR")?,
|
4852
|
+
rap_interval: ::Integer?,
|
4842
4853
|
rate_control_mode: ("CBR" | "VBR")?,
|
4843
4854
|
raw_format: ("LATM_LOAS" | "NONE")?,
|
4844
4855
|
sample_rate: ::Integer?,
|
4845
4856
|
specification: ("MPEG2" | "MPEG4")?,
|
4857
|
+
target_loudness_range: ::Integer?,
|
4846
4858
|
vbr_quality: ("LOW" | "MEDIUM_LOW" | "MEDIUM_HIGH" | "HIGH")?
|
4847
4859
|
}?,
|
4848
4860
|
ac_3_settings: {
|
@@ -4998,7 +5010,7 @@ module Aws
|
|
4998
5010
|
apply_font_color: ("WHITE_TEXT_ONLY" | "ALL_TEXT")?,
|
4999
5011
|
background_color: ("NONE" | "BLACK" | "WHITE" | "AUTO")?,
|
5000
5012
|
background_opacity: ::Integer?,
|
5001
|
-
dds_handling: ("NONE" | "SPECIFIED" | "NO_DISPLAY_WINDOW")?,
|
5013
|
+
dds_handling: ("NONE" | "SPECIFIED" | "NO_DISPLAY_WINDOW" | "SPECIFIED_OPTIMAL")?,
|
5002
5014
|
dds_x_coordinate: ::Integer?,
|
5003
5015
|
dds_y_coordinate: ::Integer?,
|
5004
5016
|
fallback_font: ("BEST_MATCH" | "MONOSPACED_SANSSERIF" | "MONOSPACED_SERIF" | "PROPORTIONAL_SANSSERIF" | "PROPORTIONAL_SERIF")?,
|
@@ -5702,12 +5714,15 @@ module Aws
|
|
5702
5714
|
aac_settings: {
|
5703
5715
|
audio_description_broadcaster_mix: ("BROADCASTER_MIXED_AD" | "NORMAL")?,
|
5704
5716
|
bitrate: ::Integer?,
|
5705
|
-
codec_profile: ("LC" | "HEV1" | "HEV2")?,
|
5717
|
+
codec_profile: ("LC" | "HEV1" | "HEV2" | "XHE")?,
|
5706
5718
|
coding_mode: ("AD_RECEIVER_MIX" | "CODING_MODE_1_0" | "CODING_MODE_1_1" | "CODING_MODE_2_0" | "CODING_MODE_5_1")?,
|
5719
|
+
loudness_measurement_mode: ("PROGRAM" | "ANCHOR")?,
|
5720
|
+
rap_interval: ::Integer?,
|
5707
5721
|
rate_control_mode: ("CBR" | "VBR")?,
|
5708
5722
|
raw_format: ("LATM_LOAS" | "NONE")?,
|
5709
5723
|
sample_rate: ::Integer?,
|
5710
5724
|
specification: ("MPEG2" | "MPEG4")?,
|
5725
|
+
target_loudness_range: ::Integer?,
|
5711
5726
|
vbr_quality: ("LOW" | "MEDIUM_LOW" | "MEDIUM_HIGH" | "HIGH")?
|
5712
5727
|
}?,
|
5713
5728
|
ac_3_settings: {
|
@@ -5862,7 +5877,7 @@ module Aws
|
|
5862
5877
|
apply_font_color: ("WHITE_TEXT_ONLY" | "ALL_TEXT")?,
|
5863
5878
|
background_color: ("NONE" | "BLACK" | "WHITE" | "AUTO")?,
|
5864
5879
|
background_opacity: ::Integer?,
|
5865
|
-
dds_handling: ("NONE" | "SPECIFIED" | "NO_DISPLAY_WINDOW")?,
|
5880
|
+
dds_handling: ("NONE" | "SPECIFIED" | "NO_DISPLAY_WINDOW" | "SPECIFIED_OPTIMAL")?,
|
5866
5881
|
dds_x_coordinate: ::Integer?,
|
5867
5882
|
dds_y_coordinate: ::Integer?,
|
5868
5883
|
fallback_font: ("BEST_MATCH" | "MONOSPACED_SANSSERIF" | "MONOSPACED_SERIF" | "PROPORTIONAL_SANSSERIF" | "PROPORTIONAL_SERIF")?,
|
data/sig/types.rbs
CHANGED
@@ -11,12 +11,15 @@ module Aws::MediaConvert
|
|
11
11
|
class AacSettings
|
12
12
|
attr_accessor audio_description_broadcaster_mix: ("BROADCASTER_MIXED_AD" | "NORMAL")
|
13
13
|
attr_accessor bitrate: ::Integer
|
14
|
-
attr_accessor codec_profile: ("LC" | "HEV1" | "HEV2")
|
14
|
+
attr_accessor codec_profile: ("LC" | "HEV1" | "HEV2" | "XHE")
|
15
15
|
attr_accessor coding_mode: ("AD_RECEIVER_MIX" | "CODING_MODE_1_0" | "CODING_MODE_1_1" | "CODING_MODE_2_0" | "CODING_MODE_5_1")
|
16
|
+
attr_accessor loudness_measurement_mode: ("PROGRAM" | "ANCHOR")
|
17
|
+
attr_accessor rap_interval: ::Integer
|
16
18
|
attr_accessor rate_control_mode: ("CBR" | "VBR")
|
17
19
|
attr_accessor raw_format: ("LATM_LOAS" | "NONE")
|
18
20
|
attr_accessor sample_rate: ::Integer
|
19
21
|
attr_accessor specification: ("MPEG2" | "MPEG4")
|
22
|
+
attr_accessor target_loudness_range: ::Integer
|
20
23
|
attr_accessor vbr_quality: ("LOW" | "MEDIUM_LOW" | "MEDIUM_HIGH" | "HIGH")
|
21
24
|
SENSITIVE: []
|
22
25
|
end
|
@@ -452,7 +455,7 @@ module Aws::MediaConvert
|
|
452
455
|
|
453
456
|
class Container
|
454
457
|
attr_accessor duration: ::Float
|
455
|
-
attr_accessor format: ("mp4" | "quicktime" | "matroska" | "webm")
|
458
|
+
attr_accessor format: ("mp4" | "quicktime" | "matroska" | "webm" | "mxf")
|
456
459
|
attr_accessor tracks: ::Array[Types::Track]
|
457
460
|
SENSITIVE: []
|
458
461
|
end
|
@@ -692,7 +695,7 @@ module Aws::MediaConvert
|
|
692
695
|
attr_accessor apply_font_color: ("WHITE_TEXT_ONLY" | "ALL_TEXT")
|
693
696
|
attr_accessor background_color: ("NONE" | "BLACK" | "WHITE" | "AUTO")
|
694
697
|
attr_accessor background_opacity: ::Integer
|
695
|
-
attr_accessor dds_handling: ("NONE" | "SPECIFIED" | "NO_DISPLAY_WINDOW")
|
698
|
+
attr_accessor dds_handling: ("NONE" | "SPECIFIED" | "NO_DISPLAY_WINDOW" | "SPECIFIED_OPTIMAL")
|
696
699
|
attr_accessor dds_x_coordinate: ::Integer
|
697
700
|
attr_accessor dds_y_coordinate: ::Integer
|
698
701
|
attr_accessor fallback_font: ("BEST_MATCH" | "MONOSPACED_SANSSERIF" | "MONOSPACED_SERIF" | "PROPORTIONAL_SANSSERIF" | "PROPORTIONAL_SERIF")
|
@@ -2148,7 +2151,7 @@ module Aws::MediaConvert
|
|
2148
2151
|
|
2149
2152
|
class Track
|
2150
2153
|
attr_accessor audio_properties: Types::AudioProperties
|
2151
|
-
attr_accessor codec: ("UNKNOWN" | "AAC" | "AC3" | "EAC3" | "FLAC" | "MP3" | "OPUS" | "PCM" | "VORBIS" | "AV1" | "AVC" | "HEVC" | "MJPEG" | "MP4V" | "MPEG2" | "PRORES" | "THEORA" | "VP8" | "VP9" | "C608" | "C708" | "WEBVTT")
|
2154
|
+
attr_accessor codec: ("UNKNOWN" | "AAC" | "AC3" | "EAC3" | "FLAC" | "MP3" | "OPUS" | "PCM" | "VORBIS" | "AV1" | "AVC" | "HEVC" | "JPEG2000" | "MJPEG" | "MP4V" | "MPEG2" | "PRORES" | "THEORA" | "VP8" | "VP9" | "C608" | "C708" | "WEBVTT")
|
2152
2155
|
attr_accessor data_properties: Types::DataProperties
|
2153
2156
|
attr_accessor duration: ::Float
|
2154
2157
|
attr_accessor index: ::Integer
|