aws-sdk-mediaconvert 1.179.0 → 1.180.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-mediaconvert/client.rb +91 -9
- data/lib/aws-sdk-mediaconvert/client_api.rb +26 -0
- data/lib/aws-sdk-mediaconvert/types.rb +173 -6
- data/lib/aws-sdk-mediaconvert.rb +1 -1
- data/sig/client.rbs +92 -14
- data/sig/types.rbs +25 -6
- 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: 7e4c3fdb81ed48bed972bf4bb9a32513a1afe1597d46098b841ce630aa2e8e4b
|
|
4
|
+
data.tar.gz: 4ac9a97362793221fd30d73749054c781aca8e99148a7d87f26606fe90ff013c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e97b74a7b1e9364ddd2810d3c9aeb6786be7ac3687270770f61f83599b3147b9826e54c86633a7de8a541161a3b01d4c47b6d9e0a073bd42c719ab828bcc90c8
|
|
7
|
+
data.tar.gz: 8a460cd1d147cad96830da70416238cd6bd9333ec29cf04585dcc6bcd36a881571876805085c00f0e691639f972c80bc2ffd55ed9f959d77f4398d5f6cde174a
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.180.0 (2026-03-13)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - This update adds support for Dolby AC-4 audio output, frame rate conversion between non-Dolby Vision inputs to Dolby Vision outputs, and clear lead CMAF HLS output.
|
|
8
|
+
|
|
4
9
|
1.179.0 (2026-01-28)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.180.0
|
|
@@ -767,12 +767,27 @@ module Aws::MediaConvert
|
|
|
767
767
|
# metadata_control: "FOLLOW_INPUT", # accepts FOLLOW_INPUT, USE_CONFIGURED
|
|
768
768
|
# sample_rate: 1,
|
|
769
769
|
# },
|
|
770
|
+
# ac_4_settings: {
|
|
771
|
+
# bitrate: 1,
|
|
772
|
+
# bitstream_mode: "COMPLETE_MAIN", # accepts COMPLETE_MAIN, EMERGENCY
|
|
773
|
+
# coding_mode: "CODING_MODE_2_0", # accepts CODING_MODE_2_0, CODING_MODE_3_2_LFE, CODING_MODE_5_1_4
|
|
774
|
+
# dynamic_range_compression_flat_panel_tv: "NONE", # accepts NONE, FILM_STANDARD, FILM_LIGHT, MUSIC_STANDARD, MUSIC_LIGHT, SPEECH
|
|
775
|
+
# dynamic_range_compression_home_theater: "NONE", # accepts NONE, FILM_STANDARD, FILM_LIGHT, MUSIC_STANDARD, MUSIC_LIGHT, SPEECH
|
|
776
|
+
# dynamic_range_compression_portable_headphones: "NONE", # accepts NONE, FILM_STANDARD, FILM_LIGHT, MUSIC_STANDARD, MUSIC_LIGHT, SPEECH
|
|
777
|
+
# dynamic_range_compression_portable_speakers: "NONE", # accepts NONE, FILM_STANDARD, FILM_LIGHT, MUSIC_STANDARD, MUSIC_LIGHT, SPEECH
|
|
778
|
+
# lo_ro_center_mix_level: 1.0,
|
|
779
|
+
# lo_ro_surround_mix_level: 1.0,
|
|
780
|
+
# lt_rt_center_mix_level: 1.0,
|
|
781
|
+
# lt_rt_surround_mix_level: 1.0,
|
|
782
|
+
# sample_rate: 1,
|
|
783
|
+
# stereo_downmix: "NOT_INDICATED", # accepts NOT_INDICATED, LO_RO, LT_RT, DPL2
|
|
784
|
+
# },
|
|
770
785
|
# aiff_settings: {
|
|
771
786
|
# bit_depth: 1,
|
|
772
787
|
# channels: 1,
|
|
773
788
|
# sample_rate: 1,
|
|
774
789
|
# },
|
|
775
|
-
# codec: "AAC", # accepts AAC, MP2, MP3, WAV, AIFF, AC3, EAC3, EAC3_ATMOS, VORBIS, OPUS, PASSTHROUGH, FLAC
|
|
790
|
+
# codec: "AAC", # accepts AAC, MP2, MP3, WAV, AIFF, AC3, AC4, EAC3, EAC3_ATMOS, VORBIS, OPUS, PASSTHROUGH, FLAC
|
|
776
791
|
# eac_3_atmos_settings: {
|
|
777
792
|
# bitrate: 1,
|
|
778
793
|
# bitstream_mode: "COMPLETE_MAIN", # accepts COMPLETE_MAIN
|
|
@@ -1612,10 +1627,23 @@ module Aws::MediaConvert
|
|
|
1612
1627
|
# resp.preset.settings.audio_descriptions[0].codec_settings.ac_3_settings.lfe_filter #=> String, one of "ENABLED", "DISABLED"
|
|
1613
1628
|
# resp.preset.settings.audio_descriptions[0].codec_settings.ac_3_settings.metadata_control #=> String, one of "FOLLOW_INPUT", "USE_CONFIGURED"
|
|
1614
1629
|
# resp.preset.settings.audio_descriptions[0].codec_settings.ac_3_settings.sample_rate #=> Integer
|
|
1630
|
+
# resp.preset.settings.audio_descriptions[0].codec_settings.ac_4_settings.bitrate #=> Integer
|
|
1631
|
+
# resp.preset.settings.audio_descriptions[0].codec_settings.ac_4_settings.bitstream_mode #=> String, one of "COMPLETE_MAIN", "EMERGENCY"
|
|
1632
|
+
# resp.preset.settings.audio_descriptions[0].codec_settings.ac_4_settings.coding_mode #=> String, one of "CODING_MODE_2_0", "CODING_MODE_3_2_LFE", "CODING_MODE_5_1_4"
|
|
1633
|
+
# resp.preset.settings.audio_descriptions[0].codec_settings.ac_4_settings.dynamic_range_compression_flat_panel_tv #=> String, one of "NONE", "FILM_STANDARD", "FILM_LIGHT", "MUSIC_STANDARD", "MUSIC_LIGHT", "SPEECH"
|
|
1634
|
+
# resp.preset.settings.audio_descriptions[0].codec_settings.ac_4_settings.dynamic_range_compression_home_theater #=> String, one of "NONE", "FILM_STANDARD", "FILM_LIGHT", "MUSIC_STANDARD", "MUSIC_LIGHT", "SPEECH"
|
|
1635
|
+
# resp.preset.settings.audio_descriptions[0].codec_settings.ac_4_settings.dynamic_range_compression_portable_headphones #=> String, one of "NONE", "FILM_STANDARD", "FILM_LIGHT", "MUSIC_STANDARD", "MUSIC_LIGHT", "SPEECH"
|
|
1636
|
+
# resp.preset.settings.audio_descriptions[0].codec_settings.ac_4_settings.dynamic_range_compression_portable_speakers #=> String, one of "NONE", "FILM_STANDARD", "FILM_LIGHT", "MUSIC_STANDARD", "MUSIC_LIGHT", "SPEECH"
|
|
1637
|
+
# resp.preset.settings.audio_descriptions[0].codec_settings.ac_4_settings.lo_ro_center_mix_level #=> Float
|
|
1638
|
+
# resp.preset.settings.audio_descriptions[0].codec_settings.ac_4_settings.lo_ro_surround_mix_level #=> Float
|
|
1639
|
+
# resp.preset.settings.audio_descriptions[0].codec_settings.ac_4_settings.lt_rt_center_mix_level #=> Float
|
|
1640
|
+
# resp.preset.settings.audio_descriptions[0].codec_settings.ac_4_settings.lt_rt_surround_mix_level #=> Float
|
|
1641
|
+
# resp.preset.settings.audio_descriptions[0].codec_settings.ac_4_settings.sample_rate #=> Integer
|
|
1642
|
+
# resp.preset.settings.audio_descriptions[0].codec_settings.ac_4_settings.stereo_downmix #=> String, one of "NOT_INDICATED", "LO_RO", "LT_RT", "DPL2"
|
|
1615
1643
|
# resp.preset.settings.audio_descriptions[0].codec_settings.aiff_settings.bit_depth #=> Integer
|
|
1616
1644
|
# resp.preset.settings.audio_descriptions[0].codec_settings.aiff_settings.channels #=> Integer
|
|
1617
1645
|
# resp.preset.settings.audio_descriptions[0].codec_settings.aiff_settings.sample_rate #=> Integer
|
|
1618
|
-
# resp.preset.settings.audio_descriptions[0].codec_settings.codec #=> String, one of "AAC", "MP2", "MP3", "WAV", "AIFF", "AC3", "EAC3", "EAC3_ATMOS", "VORBIS", "OPUS", "PASSTHROUGH", "FLAC"
|
|
1646
|
+
# resp.preset.settings.audio_descriptions[0].codec_settings.codec #=> String, one of "AAC", "MP2", "MP3", "WAV", "AIFF", "AC3", "AC4", "EAC3", "EAC3_ATMOS", "VORBIS", "OPUS", "PASSTHROUGH", "FLAC"
|
|
1619
1647
|
# resp.preset.settings.audio_descriptions[0].codec_settings.eac_3_atmos_settings.bitrate #=> Integer
|
|
1620
1648
|
# resp.preset.settings.audio_descriptions[0].codec_settings.eac_3_atmos_settings.bitstream_mode #=> String, one of "COMPLETE_MAIN"
|
|
1621
1649
|
# resp.preset.settings.audio_descriptions[0].codec_settings.eac_3_atmos_settings.coding_mode #=> String, one of "CODING_MODE_AUTO", "CODING_MODE_5_1_4", "CODING_MODE_7_1_4", "CODING_MODE_9_1_6"
|
|
@@ -2689,10 +2717,23 @@ module Aws::MediaConvert
|
|
|
2689
2717
|
# resp.preset.settings.audio_descriptions[0].codec_settings.ac_3_settings.lfe_filter #=> String, one of "ENABLED", "DISABLED"
|
|
2690
2718
|
# resp.preset.settings.audio_descriptions[0].codec_settings.ac_3_settings.metadata_control #=> String, one of "FOLLOW_INPUT", "USE_CONFIGURED"
|
|
2691
2719
|
# resp.preset.settings.audio_descriptions[0].codec_settings.ac_3_settings.sample_rate #=> Integer
|
|
2720
|
+
# resp.preset.settings.audio_descriptions[0].codec_settings.ac_4_settings.bitrate #=> Integer
|
|
2721
|
+
# resp.preset.settings.audio_descriptions[0].codec_settings.ac_4_settings.bitstream_mode #=> String, one of "COMPLETE_MAIN", "EMERGENCY"
|
|
2722
|
+
# resp.preset.settings.audio_descriptions[0].codec_settings.ac_4_settings.coding_mode #=> String, one of "CODING_MODE_2_0", "CODING_MODE_3_2_LFE", "CODING_MODE_5_1_4"
|
|
2723
|
+
# resp.preset.settings.audio_descriptions[0].codec_settings.ac_4_settings.dynamic_range_compression_flat_panel_tv #=> String, one of "NONE", "FILM_STANDARD", "FILM_LIGHT", "MUSIC_STANDARD", "MUSIC_LIGHT", "SPEECH"
|
|
2724
|
+
# resp.preset.settings.audio_descriptions[0].codec_settings.ac_4_settings.dynamic_range_compression_home_theater #=> String, one of "NONE", "FILM_STANDARD", "FILM_LIGHT", "MUSIC_STANDARD", "MUSIC_LIGHT", "SPEECH"
|
|
2725
|
+
# resp.preset.settings.audio_descriptions[0].codec_settings.ac_4_settings.dynamic_range_compression_portable_headphones #=> String, one of "NONE", "FILM_STANDARD", "FILM_LIGHT", "MUSIC_STANDARD", "MUSIC_LIGHT", "SPEECH"
|
|
2726
|
+
# resp.preset.settings.audio_descriptions[0].codec_settings.ac_4_settings.dynamic_range_compression_portable_speakers #=> String, one of "NONE", "FILM_STANDARD", "FILM_LIGHT", "MUSIC_STANDARD", "MUSIC_LIGHT", "SPEECH"
|
|
2727
|
+
# resp.preset.settings.audio_descriptions[0].codec_settings.ac_4_settings.lo_ro_center_mix_level #=> Float
|
|
2728
|
+
# resp.preset.settings.audio_descriptions[0].codec_settings.ac_4_settings.lo_ro_surround_mix_level #=> Float
|
|
2729
|
+
# resp.preset.settings.audio_descriptions[0].codec_settings.ac_4_settings.lt_rt_center_mix_level #=> Float
|
|
2730
|
+
# resp.preset.settings.audio_descriptions[0].codec_settings.ac_4_settings.lt_rt_surround_mix_level #=> Float
|
|
2731
|
+
# resp.preset.settings.audio_descriptions[0].codec_settings.ac_4_settings.sample_rate #=> Integer
|
|
2732
|
+
# resp.preset.settings.audio_descriptions[0].codec_settings.ac_4_settings.stereo_downmix #=> String, one of "NOT_INDICATED", "LO_RO", "LT_RT", "DPL2"
|
|
2692
2733
|
# resp.preset.settings.audio_descriptions[0].codec_settings.aiff_settings.bit_depth #=> Integer
|
|
2693
2734
|
# resp.preset.settings.audio_descriptions[0].codec_settings.aiff_settings.channels #=> Integer
|
|
2694
2735
|
# resp.preset.settings.audio_descriptions[0].codec_settings.aiff_settings.sample_rate #=> Integer
|
|
2695
|
-
# resp.preset.settings.audio_descriptions[0].codec_settings.codec #=> String, one of "AAC", "MP2", "MP3", "WAV", "AIFF", "AC3", "EAC3", "EAC3_ATMOS", "VORBIS", "OPUS", "PASSTHROUGH", "FLAC"
|
|
2736
|
+
# resp.preset.settings.audio_descriptions[0].codec_settings.codec #=> String, one of "AAC", "MP2", "MP3", "WAV", "AIFF", "AC3", "AC4", "EAC3", "EAC3_ATMOS", "VORBIS", "OPUS", "PASSTHROUGH", "FLAC"
|
|
2696
2737
|
# resp.preset.settings.audio_descriptions[0].codec_settings.eac_3_atmos_settings.bitrate #=> Integer
|
|
2697
2738
|
# resp.preset.settings.audio_descriptions[0].codec_settings.eac_3_atmos_settings.bitstream_mode #=> String, one of "COMPLETE_MAIN"
|
|
2698
2739
|
# resp.preset.settings.audio_descriptions[0].codec_settings.eac_3_atmos_settings.coding_mode #=> String, one of "CODING_MODE_AUTO", "CODING_MODE_5_1_4", "CODING_MODE_7_1_4", "CODING_MODE_9_1_6"
|
|
@@ -3580,10 +3621,23 @@ module Aws::MediaConvert
|
|
|
3580
3621
|
# resp.presets[0].settings.audio_descriptions[0].codec_settings.ac_3_settings.lfe_filter #=> String, one of "ENABLED", "DISABLED"
|
|
3581
3622
|
# resp.presets[0].settings.audio_descriptions[0].codec_settings.ac_3_settings.metadata_control #=> String, one of "FOLLOW_INPUT", "USE_CONFIGURED"
|
|
3582
3623
|
# resp.presets[0].settings.audio_descriptions[0].codec_settings.ac_3_settings.sample_rate #=> Integer
|
|
3624
|
+
# resp.presets[0].settings.audio_descriptions[0].codec_settings.ac_4_settings.bitrate #=> Integer
|
|
3625
|
+
# resp.presets[0].settings.audio_descriptions[0].codec_settings.ac_4_settings.bitstream_mode #=> String, one of "COMPLETE_MAIN", "EMERGENCY"
|
|
3626
|
+
# resp.presets[0].settings.audio_descriptions[0].codec_settings.ac_4_settings.coding_mode #=> String, one of "CODING_MODE_2_0", "CODING_MODE_3_2_LFE", "CODING_MODE_5_1_4"
|
|
3627
|
+
# resp.presets[0].settings.audio_descriptions[0].codec_settings.ac_4_settings.dynamic_range_compression_flat_panel_tv #=> String, one of "NONE", "FILM_STANDARD", "FILM_LIGHT", "MUSIC_STANDARD", "MUSIC_LIGHT", "SPEECH"
|
|
3628
|
+
# resp.presets[0].settings.audio_descriptions[0].codec_settings.ac_4_settings.dynamic_range_compression_home_theater #=> String, one of "NONE", "FILM_STANDARD", "FILM_LIGHT", "MUSIC_STANDARD", "MUSIC_LIGHT", "SPEECH"
|
|
3629
|
+
# resp.presets[0].settings.audio_descriptions[0].codec_settings.ac_4_settings.dynamic_range_compression_portable_headphones #=> String, one of "NONE", "FILM_STANDARD", "FILM_LIGHT", "MUSIC_STANDARD", "MUSIC_LIGHT", "SPEECH"
|
|
3630
|
+
# resp.presets[0].settings.audio_descriptions[0].codec_settings.ac_4_settings.dynamic_range_compression_portable_speakers #=> String, one of "NONE", "FILM_STANDARD", "FILM_LIGHT", "MUSIC_STANDARD", "MUSIC_LIGHT", "SPEECH"
|
|
3631
|
+
# resp.presets[0].settings.audio_descriptions[0].codec_settings.ac_4_settings.lo_ro_center_mix_level #=> Float
|
|
3632
|
+
# resp.presets[0].settings.audio_descriptions[0].codec_settings.ac_4_settings.lo_ro_surround_mix_level #=> Float
|
|
3633
|
+
# resp.presets[0].settings.audio_descriptions[0].codec_settings.ac_4_settings.lt_rt_center_mix_level #=> Float
|
|
3634
|
+
# resp.presets[0].settings.audio_descriptions[0].codec_settings.ac_4_settings.lt_rt_surround_mix_level #=> Float
|
|
3635
|
+
# resp.presets[0].settings.audio_descriptions[0].codec_settings.ac_4_settings.sample_rate #=> Integer
|
|
3636
|
+
# resp.presets[0].settings.audio_descriptions[0].codec_settings.ac_4_settings.stereo_downmix #=> String, one of "NOT_INDICATED", "LO_RO", "LT_RT", "DPL2"
|
|
3583
3637
|
# resp.presets[0].settings.audio_descriptions[0].codec_settings.aiff_settings.bit_depth #=> Integer
|
|
3584
3638
|
# resp.presets[0].settings.audio_descriptions[0].codec_settings.aiff_settings.channels #=> Integer
|
|
3585
3639
|
# resp.presets[0].settings.audio_descriptions[0].codec_settings.aiff_settings.sample_rate #=> Integer
|
|
3586
|
-
# resp.presets[0].settings.audio_descriptions[0].codec_settings.codec #=> String, one of "AAC", "MP2", "MP3", "WAV", "AIFF", "AC3", "EAC3", "EAC3_ATMOS", "VORBIS", "OPUS", "PASSTHROUGH", "FLAC"
|
|
3640
|
+
# resp.presets[0].settings.audio_descriptions[0].codec_settings.codec #=> String, one of "AAC", "MP2", "MP3", "WAV", "AIFF", "AC3", "AC4", "EAC3", "EAC3_ATMOS", "VORBIS", "OPUS", "PASSTHROUGH", "FLAC"
|
|
3587
3641
|
# resp.presets[0].settings.audio_descriptions[0].codec_settings.eac_3_atmos_settings.bitrate #=> Integer
|
|
3588
3642
|
# resp.presets[0].settings.audio_descriptions[0].codec_settings.eac_3_atmos_settings.bitstream_mode #=> String, one of "COMPLETE_MAIN"
|
|
3589
3643
|
# resp.presets[0].settings.audio_descriptions[0].codec_settings.eac_3_atmos_settings.coding_mode #=> String, one of "CODING_MODE_AUTO", "CODING_MODE_5_1_4", "CODING_MODE_7_1_4", "CODING_MODE_9_1_6"
|
|
@@ -4403,7 +4457,7 @@ module Aws::MediaConvert
|
|
|
4403
4457
|
#
|
|
4404
4458
|
# resp.probe_results #=> Array
|
|
4405
4459
|
# resp.probe_results[0].container.duration #=> Float
|
|
4406
|
-
# resp.probe_results[0].container.format #=> String, one of "mp4", "quicktime", "matroska", "webm", "mxf", "wave"
|
|
4460
|
+
# resp.probe_results[0].container.format #=> String, one of "mp4", "quicktime", "matroska", "webm", "mxf", "wave", "avi"
|
|
4407
4461
|
# resp.probe_results[0].container.tracks #=> Array
|
|
4408
4462
|
# resp.probe_results[0].container.tracks[0].audio_properties.bit_depth #=> Integer
|
|
4409
4463
|
# resp.probe_results[0].container.tracks[0].audio_properties.bit_rate #=> Integer
|
|
@@ -4412,7 +4466,7 @@ module Aws::MediaConvert
|
|
|
4412
4466
|
# resp.probe_results[0].container.tracks[0].audio_properties.frame_rate.numerator #=> Integer
|
|
4413
4467
|
# resp.probe_results[0].container.tracks[0].audio_properties.language_code #=> String
|
|
4414
4468
|
# resp.probe_results[0].container.tracks[0].audio_properties.sample_rate #=> Integer
|
|
4415
|
-
# 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", "MPEG1", "MP4V", "MPEG2", "PRORES", "THEORA", "
|
|
4469
|
+
# 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", "MPEG1", "MP4V", "MPEG2", "PRORES", "QTRLE", "THEORA", "UNCOMPRESSED", "VFW", "VP8", "VP9", "C608", "C708", "WEBVTT"
|
|
4416
4470
|
# resp.probe_results[0].container.tracks[0].data_properties.language_code #=> String
|
|
4417
4471
|
# resp.probe_results[0].container.tracks[0].duration #=> Float
|
|
4418
4472
|
# resp.probe_results[0].container.tracks[0].index #=> Integer
|
|
@@ -4795,12 +4849,27 @@ module Aws::MediaConvert
|
|
|
4795
4849
|
# metadata_control: "FOLLOW_INPUT", # accepts FOLLOW_INPUT, USE_CONFIGURED
|
|
4796
4850
|
# sample_rate: 1,
|
|
4797
4851
|
# },
|
|
4852
|
+
# ac_4_settings: {
|
|
4853
|
+
# bitrate: 1,
|
|
4854
|
+
# bitstream_mode: "COMPLETE_MAIN", # accepts COMPLETE_MAIN, EMERGENCY
|
|
4855
|
+
# coding_mode: "CODING_MODE_2_0", # accepts CODING_MODE_2_0, CODING_MODE_3_2_LFE, CODING_MODE_5_1_4
|
|
4856
|
+
# dynamic_range_compression_flat_panel_tv: "NONE", # accepts NONE, FILM_STANDARD, FILM_LIGHT, MUSIC_STANDARD, MUSIC_LIGHT, SPEECH
|
|
4857
|
+
# dynamic_range_compression_home_theater: "NONE", # accepts NONE, FILM_STANDARD, FILM_LIGHT, MUSIC_STANDARD, MUSIC_LIGHT, SPEECH
|
|
4858
|
+
# dynamic_range_compression_portable_headphones: "NONE", # accepts NONE, FILM_STANDARD, FILM_LIGHT, MUSIC_STANDARD, MUSIC_LIGHT, SPEECH
|
|
4859
|
+
# dynamic_range_compression_portable_speakers: "NONE", # accepts NONE, FILM_STANDARD, FILM_LIGHT, MUSIC_STANDARD, MUSIC_LIGHT, SPEECH
|
|
4860
|
+
# lo_ro_center_mix_level: 1.0,
|
|
4861
|
+
# lo_ro_surround_mix_level: 1.0,
|
|
4862
|
+
# lt_rt_center_mix_level: 1.0,
|
|
4863
|
+
# lt_rt_surround_mix_level: 1.0,
|
|
4864
|
+
# sample_rate: 1,
|
|
4865
|
+
# stereo_downmix: "NOT_INDICATED", # accepts NOT_INDICATED, LO_RO, LT_RT, DPL2
|
|
4866
|
+
# },
|
|
4798
4867
|
# aiff_settings: {
|
|
4799
4868
|
# bit_depth: 1,
|
|
4800
4869
|
# channels: 1,
|
|
4801
4870
|
# sample_rate: 1,
|
|
4802
4871
|
# },
|
|
4803
|
-
# codec: "AAC", # accepts AAC, MP2, MP3, WAV, AIFF, AC3, EAC3, EAC3_ATMOS, VORBIS, OPUS, PASSTHROUGH, FLAC
|
|
4872
|
+
# codec: "AAC", # accepts AAC, MP2, MP3, WAV, AIFF, AC3, AC4, EAC3, EAC3_ATMOS, VORBIS, OPUS, PASSTHROUGH, FLAC
|
|
4804
4873
|
# eac_3_atmos_settings: {
|
|
4805
4874
|
# bitrate: 1,
|
|
4806
4875
|
# bitstream_mode: "COMPLETE_MAIN", # accepts COMPLETE_MAIN
|
|
@@ -5637,10 +5706,23 @@ module Aws::MediaConvert
|
|
|
5637
5706
|
# resp.preset.settings.audio_descriptions[0].codec_settings.ac_3_settings.lfe_filter #=> String, one of "ENABLED", "DISABLED"
|
|
5638
5707
|
# resp.preset.settings.audio_descriptions[0].codec_settings.ac_3_settings.metadata_control #=> String, one of "FOLLOW_INPUT", "USE_CONFIGURED"
|
|
5639
5708
|
# resp.preset.settings.audio_descriptions[0].codec_settings.ac_3_settings.sample_rate #=> Integer
|
|
5709
|
+
# resp.preset.settings.audio_descriptions[0].codec_settings.ac_4_settings.bitrate #=> Integer
|
|
5710
|
+
# resp.preset.settings.audio_descriptions[0].codec_settings.ac_4_settings.bitstream_mode #=> String, one of "COMPLETE_MAIN", "EMERGENCY"
|
|
5711
|
+
# resp.preset.settings.audio_descriptions[0].codec_settings.ac_4_settings.coding_mode #=> String, one of "CODING_MODE_2_0", "CODING_MODE_3_2_LFE", "CODING_MODE_5_1_4"
|
|
5712
|
+
# resp.preset.settings.audio_descriptions[0].codec_settings.ac_4_settings.dynamic_range_compression_flat_panel_tv #=> String, one of "NONE", "FILM_STANDARD", "FILM_LIGHT", "MUSIC_STANDARD", "MUSIC_LIGHT", "SPEECH"
|
|
5713
|
+
# resp.preset.settings.audio_descriptions[0].codec_settings.ac_4_settings.dynamic_range_compression_home_theater #=> String, one of "NONE", "FILM_STANDARD", "FILM_LIGHT", "MUSIC_STANDARD", "MUSIC_LIGHT", "SPEECH"
|
|
5714
|
+
# resp.preset.settings.audio_descriptions[0].codec_settings.ac_4_settings.dynamic_range_compression_portable_headphones #=> String, one of "NONE", "FILM_STANDARD", "FILM_LIGHT", "MUSIC_STANDARD", "MUSIC_LIGHT", "SPEECH"
|
|
5715
|
+
# resp.preset.settings.audio_descriptions[0].codec_settings.ac_4_settings.dynamic_range_compression_portable_speakers #=> String, one of "NONE", "FILM_STANDARD", "FILM_LIGHT", "MUSIC_STANDARD", "MUSIC_LIGHT", "SPEECH"
|
|
5716
|
+
# resp.preset.settings.audio_descriptions[0].codec_settings.ac_4_settings.lo_ro_center_mix_level #=> Float
|
|
5717
|
+
# resp.preset.settings.audio_descriptions[0].codec_settings.ac_4_settings.lo_ro_surround_mix_level #=> Float
|
|
5718
|
+
# resp.preset.settings.audio_descriptions[0].codec_settings.ac_4_settings.lt_rt_center_mix_level #=> Float
|
|
5719
|
+
# resp.preset.settings.audio_descriptions[0].codec_settings.ac_4_settings.lt_rt_surround_mix_level #=> Float
|
|
5720
|
+
# resp.preset.settings.audio_descriptions[0].codec_settings.ac_4_settings.sample_rate #=> Integer
|
|
5721
|
+
# resp.preset.settings.audio_descriptions[0].codec_settings.ac_4_settings.stereo_downmix #=> String, one of "NOT_INDICATED", "LO_RO", "LT_RT", "DPL2"
|
|
5640
5722
|
# resp.preset.settings.audio_descriptions[0].codec_settings.aiff_settings.bit_depth #=> Integer
|
|
5641
5723
|
# resp.preset.settings.audio_descriptions[0].codec_settings.aiff_settings.channels #=> Integer
|
|
5642
5724
|
# resp.preset.settings.audio_descriptions[0].codec_settings.aiff_settings.sample_rate #=> Integer
|
|
5643
|
-
# resp.preset.settings.audio_descriptions[0].codec_settings.codec #=> String, one of "AAC", "MP2", "MP3", "WAV", "AIFF", "AC3", "EAC3", "EAC3_ATMOS", "VORBIS", "OPUS", "PASSTHROUGH", "FLAC"
|
|
5725
|
+
# resp.preset.settings.audio_descriptions[0].codec_settings.codec #=> String, one of "AAC", "MP2", "MP3", "WAV", "AIFF", "AC3", "AC4", "EAC3", "EAC3_ATMOS", "VORBIS", "OPUS", "PASSTHROUGH", "FLAC"
|
|
5644
5726
|
# resp.preset.settings.audio_descriptions[0].codec_settings.eac_3_atmos_settings.bitrate #=> Integer
|
|
5645
5727
|
# resp.preset.settings.audio_descriptions[0].codec_settings.eac_3_atmos_settings.bitstream_mode #=> String, one of "COMPLETE_MAIN"
|
|
5646
5728
|
# resp.preset.settings.audio_descriptions[0].codec_settings.eac_3_atmos_settings.coding_mode #=> String, one of "CODING_MODE_AUTO", "CODING_MODE_5_1_4", "CODING_MODE_7_1_4", "CODING_MODE_9_1_6"
|
|
@@ -6383,7 +6465,7 @@ module Aws::MediaConvert
|
|
|
6383
6465
|
tracer: tracer
|
|
6384
6466
|
)
|
|
6385
6467
|
context[:gem_name] = 'aws-sdk-mediaconvert'
|
|
6386
|
-
context[:gem_version] = '1.
|
|
6468
|
+
context[:gem_version] = '1.180.0'
|
|
6387
6469
|
Seahorse::Client::Request.new(handlers, context)
|
|
6388
6470
|
end
|
|
6389
6471
|
|
|
@@ -31,6 +31,11 @@ module Aws::MediaConvert
|
|
|
31
31
|
Ac3LfeFilter = Shapes::StringShape.new(name: 'Ac3LfeFilter')
|
|
32
32
|
Ac3MetadataControl = Shapes::StringShape.new(name: 'Ac3MetadataControl')
|
|
33
33
|
Ac3Settings = Shapes::StructureShape.new(name: 'Ac3Settings')
|
|
34
|
+
Ac4BitstreamMode = Shapes::StringShape.new(name: 'Ac4BitstreamMode')
|
|
35
|
+
Ac4CodingMode = Shapes::StringShape.new(name: 'Ac4CodingMode')
|
|
36
|
+
Ac4DynamicRangeCompressionDrcProfile = Shapes::StringShape.new(name: 'Ac4DynamicRangeCompressionDrcProfile')
|
|
37
|
+
Ac4Settings = Shapes::StructureShape.new(name: 'Ac4Settings')
|
|
38
|
+
Ac4StereoDownmix = Shapes::StringShape.new(name: 'Ac4StereoDownmix')
|
|
34
39
|
AccelerationMode = Shapes::StringShape.new(name: 'AccelerationMode')
|
|
35
40
|
AccelerationSettings = Shapes::StructureShape.new(name: 'AccelerationSettings')
|
|
36
41
|
AccelerationStatus = Shapes::StringShape.new(name: 'AccelerationStatus')
|
|
@@ -385,6 +390,7 @@ module Aws::MediaConvert
|
|
|
385
390
|
HlsCaptionLanguageMapping = Shapes::StructureShape.new(name: 'HlsCaptionLanguageMapping')
|
|
386
391
|
HlsCaptionLanguageSetting = Shapes::StringShape.new(name: 'HlsCaptionLanguageSetting')
|
|
387
392
|
HlsCaptionSegmentLengthControl = Shapes::StringShape.new(name: 'HlsCaptionSegmentLengthControl')
|
|
393
|
+
HlsClearLead = Shapes::StringShape.new(name: 'HlsClearLead')
|
|
388
394
|
HlsClientCache = Shapes::StringShape.new(name: 'HlsClientCache')
|
|
389
395
|
HlsCodecSpecification = Shapes::StringShape.new(name: 'HlsCodecSpecification')
|
|
390
396
|
HlsDescriptiveVideoServiceFlag = Shapes::StringShape.new(name: 'HlsDescriptiveVideoServiceFlag')
|
|
@@ -762,6 +768,8 @@ module Aws::MediaConvert
|
|
|
762
768
|
__doubleMin0Max1 = Shapes::FloatShape.new(name: '__doubleMin0Max1')
|
|
763
769
|
__doubleMin0Max2147483647 = Shapes::FloatShape.new(name: '__doubleMin0Max2147483647')
|
|
764
770
|
__doubleMin1Max10 = Shapes::FloatShape.new(name: '__doubleMin1Max10')
|
|
771
|
+
__doubleMinNegative1000Max3 = Shapes::FloatShape.new(name: '__doubleMinNegative1000Max3')
|
|
772
|
+
__doubleMinNegative1000MaxNegative1 = Shapes::FloatShape.new(name: '__doubleMinNegative1000MaxNegative1')
|
|
765
773
|
__doubleMinNegative59Max0 = Shapes::FloatShape.new(name: '__doubleMinNegative59Max0')
|
|
766
774
|
__doubleMinNegative60Max3 = Shapes::FloatShape.new(name: '__doubleMinNegative60Max3')
|
|
767
775
|
__doubleMinNegative60Max6 = Shapes::FloatShape.new(name: '__doubleMinNegative60Max6')
|
|
@@ -814,6 +822,7 @@ module Aws::MediaConvert
|
|
|
814
822
|
__integerMin16000Max320000 = Shapes::IntegerShape.new(name: '__integerMin16000Max320000')
|
|
815
823
|
__integerMin16000Max48000 = Shapes::IntegerShape.new(name: '__integerMin16000Max48000')
|
|
816
824
|
__integerMin16Max24 = Shapes::IntegerShape.new(name: '__integerMin16Max24')
|
|
825
|
+
__integerMin192000Max1024000 = Shapes::IntegerShape.new(name: '__integerMin192000Max1024000')
|
|
817
826
|
__integerMin1Max1 = Shapes::IntegerShape.new(name: '__integerMin1Max1')
|
|
818
827
|
__integerMin1Max10 = Shapes::IntegerShape.new(name: '__integerMin1Max10')
|
|
819
828
|
__integerMin1Max100 = Shapes::IntegerShape.new(name: '__integerMin1Max100')
|
|
@@ -1024,6 +1033,21 @@ module Aws::MediaConvert
|
|
|
1024
1033
|
Ac3Settings.add_member(:sample_rate, Shapes::ShapeRef.new(shape: __integerMin48000Max48000, location_name: "sampleRate"))
|
|
1025
1034
|
Ac3Settings.struct_class = Types::Ac3Settings
|
|
1026
1035
|
|
|
1036
|
+
Ac4Settings.add_member(:bitrate, Shapes::ShapeRef.new(shape: __integerMin192000Max1024000, location_name: "bitrate"))
|
|
1037
|
+
Ac4Settings.add_member(:bitstream_mode, Shapes::ShapeRef.new(shape: Ac4BitstreamMode, location_name: "bitstreamMode"))
|
|
1038
|
+
Ac4Settings.add_member(:coding_mode, Shapes::ShapeRef.new(shape: Ac4CodingMode, location_name: "codingMode"))
|
|
1039
|
+
Ac4Settings.add_member(:dynamic_range_compression_flat_panel_tv, Shapes::ShapeRef.new(shape: Ac4DynamicRangeCompressionDrcProfile, location_name: "dynamicRangeCompressionFlatPanelTv"))
|
|
1040
|
+
Ac4Settings.add_member(:dynamic_range_compression_home_theater, Shapes::ShapeRef.new(shape: Ac4DynamicRangeCompressionDrcProfile, location_name: "dynamicRangeCompressionHomeTheater"))
|
|
1041
|
+
Ac4Settings.add_member(:dynamic_range_compression_portable_headphones, Shapes::ShapeRef.new(shape: Ac4DynamicRangeCompressionDrcProfile, location_name: "dynamicRangeCompressionPortableHeadphones"))
|
|
1042
|
+
Ac4Settings.add_member(:dynamic_range_compression_portable_speakers, Shapes::ShapeRef.new(shape: Ac4DynamicRangeCompressionDrcProfile, location_name: "dynamicRangeCompressionPortableSpeakers"))
|
|
1043
|
+
Ac4Settings.add_member(:lo_ro_center_mix_level, Shapes::ShapeRef.new(shape: __doubleMinNegative1000Max3, location_name: "loRoCenterMixLevel"))
|
|
1044
|
+
Ac4Settings.add_member(:lo_ro_surround_mix_level, Shapes::ShapeRef.new(shape: __doubleMinNegative1000MaxNegative1, location_name: "loRoSurroundMixLevel"))
|
|
1045
|
+
Ac4Settings.add_member(:lt_rt_center_mix_level, Shapes::ShapeRef.new(shape: __doubleMinNegative1000Max3, location_name: "ltRtCenterMixLevel"))
|
|
1046
|
+
Ac4Settings.add_member(:lt_rt_surround_mix_level, Shapes::ShapeRef.new(shape: __doubleMinNegative1000MaxNegative1, location_name: "ltRtSurroundMixLevel"))
|
|
1047
|
+
Ac4Settings.add_member(:sample_rate, Shapes::ShapeRef.new(shape: __integerMin48000Max48000, location_name: "sampleRate"))
|
|
1048
|
+
Ac4Settings.add_member(:stereo_downmix, Shapes::ShapeRef.new(shape: Ac4StereoDownmix, location_name: "stereoDownmix"))
|
|
1049
|
+
Ac4Settings.struct_class = Types::Ac4Settings
|
|
1050
|
+
|
|
1027
1051
|
AccelerationSettings.add_member(:mode, Shapes::ShapeRef.new(shape: AccelerationMode, required: true, location_name: "mode"))
|
|
1028
1052
|
AccelerationSettings.struct_class = Types::AccelerationSettings
|
|
1029
1053
|
|
|
@@ -1057,6 +1081,7 @@ module Aws::MediaConvert
|
|
|
1057
1081
|
|
|
1058
1082
|
AudioCodecSettings.add_member(:aac_settings, Shapes::ShapeRef.new(shape: AacSettings, location_name: "aacSettings"))
|
|
1059
1083
|
AudioCodecSettings.add_member(:ac_3_settings, Shapes::ShapeRef.new(shape: Ac3Settings, location_name: "ac3Settings"))
|
|
1084
|
+
AudioCodecSettings.add_member(:ac_4_settings, Shapes::ShapeRef.new(shape: Ac4Settings, location_name: "ac4Settings"))
|
|
1060
1085
|
AudioCodecSettings.add_member(:aiff_settings, Shapes::ShapeRef.new(shape: AiffSettings, location_name: "aiffSettings"))
|
|
1061
1086
|
AudioCodecSettings.add_member(:codec, Shapes::ShapeRef.new(shape: AudioCodec, location_name: "codec"))
|
|
1062
1087
|
AudioCodecSettings.add_member(:eac_3_atmos_settings, Shapes::ShapeRef.new(shape: Eac3AtmosSettings, location_name: "eac3AtmosSettings"))
|
|
@@ -1275,6 +1300,7 @@ module Aws::MediaConvert
|
|
|
1275
1300
|
CmafAdditionalManifest.add_member(:selected_outputs, Shapes::ShapeRef.new(shape: __listOf__stringMin1, location_name: "selectedOutputs"))
|
|
1276
1301
|
CmafAdditionalManifest.struct_class = Types::CmafAdditionalManifest
|
|
1277
1302
|
|
|
1303
|
+
CmafEncryptionSettings.add_member(:clear_lead, Shapes::ShapeRef.new(shape: HlsClearLead, location_name: "clearLead"))
|
|
1278
1304
|
CmafEncryptionSettings.add_member(:constant_initialization_vector, Shapes::ShapeRef.new(shape: __stringMin32Max32Pattern09aFAF32, location_name: "constantInitializationVector"))
|
|
1279
1305
|
CmafEncryptionSettings.add_member(:encryption_method, Shapes::ShapeRef.new(shape: CmafEncryptionType, location_name: "encryptionMethod"))
|
|
1280
1306
|
CmafEncryptionSettings.add_member(:initialization_vector_in_manifest, Shapes::ShapeRef.new(shape: CmafInitializationVectorInManifest, location_name: "initializationVectorInManifest"))
|
|
@@ -245,6 +245,140 @@ module Aws::MediaConvert
|
|
|
245
245
|
include Aws::Structure
|
|
246
246
|
end
|
|
247
247
|
|
|
248
|
+
# Required when you set Codec to the value AC4.
|
|
249
|
+
#
|
|
250
|
+
# @!attribute [rw] bitrate
|
|
251
|
+
# Specify the average bitrate in bits per second. Leave blank to use
|
|
252
|
+
# the default bitrate for the coding mode you select according to ETSI
|
|
253
|
+
# TS 103 190. Valid bitrates for coding mode 2.0 (stereo): 192000,
|
|
254
|
+
# 256000, or 320000. Valid bitrates for coding mode 5.1 (3/2 with
|
|
255
|
+
# LFE): 512000. Valid bitrates for coding mode 5.1.4 (immersive):
|
|
256
|
+
# 512000, 768000, or 1024000.
|
|
257
|
+
# @return [Integer]
|
|
258
|
+
#
|
|
259
|
+
# @!attribute [rw] bitstream_mode
|
|
260
|
+
# Specify the bitstream mode for the AC-4 stream that the encoder
|
|
261
|
+
# emits. For more information about the AC-4 bitstream mode, see ETSI
|
|
262
|
+
# TS 103 190. Maps to dlb\_paec\_ac4\_bed\_classifier in the encoder
|
|
263
|
+
# implementation. - COMPLETE\_MAIN: Complete Main (standard mix) -
|
|
264
|
+
# EMERGENCY: Stereo Emergency content
|
|
265
|
+
# @return [String]
|
|
266
|
+
#
|
|
267
|
+
# @!attribute [rw] coding_mode
|
|
268
|
+
# Dolby AC-4 coding mode. Determines number of channels. Maps to
|
|
269
|
+
# dlb\_paec\_ac4\_bed\_channel\_config in the encoder implementation.
|
|
270
|
+
# - CODING\_MODE\_2\_0: 2.0 (stereo) - maps to
|
|
271
|
+
# DLB\_PAEC\_AC4\_BED\_CHANNEL\_CONFIG\_20 - CODING\_MODE\_3\_2\_LFE:
|
|
272
|
+
# 5.1 surround - maps to DLB\_PAEC\_AC4\_BED\_CHANNEL\_CONFIG\_51 -
|
|
273
|
+
# CODING\_MODE\_5\_1\_4: 5.1.4 immersive - maps to
|
|
274
|
+
# DLB\_PAEC\_AC4\_BED\_CHANNEL\_CONFIG\_514
|
|
275
|
+
# @return [String]
|
|
276
|
+
#
|
|
277
|
+
# @!attribute [rw] dynamic_range_compression_flat_panel_tv
|
|
278
|
+
# Choose the Dolby AC-4 dynamic range control (DRC) profile that
|
|
279
|
+
# MediaConvert uses when encoding the metadata in the Dolby AC-4
|
|
280
|
+
# stream for the specified decoder mode. For information about the
|
|
281
|
+
# Dolby AC-4 DRC profiles, see the Dolby AC-4 specification.
|
|
282
|
+
# @return [String]
|
|
283
|
+
#
|
|
284
|
+
# @!attribute [rw] dynamic_range_compression_home_theater
|
|
285
|
+
# Choose the Dolby AC-4 dynamic range control (DRC) profile that
|
|
286
|
+
# MediaConvert uses when encoding the metadata in the Dolby AC-4
|
|
287
|
+
# stream for the specified decoder mode. For information about the
|
|
288
|
+
# Dolby AC-4 DRC profiles, see the Dolby AC-4 specification.
|
|
289
|
+
# @return [String]
|
|
290
|
+
#
|
|
291
|
+
# @!attribute [rw] dynamic_range_compression_portable_headphones
|
|
292
|
+
# Choose the Dolby AC-4 dynamic range control (DRC) profile that
|
|
293
|
+
# MediaConvert uses when encoding the metadata in the Dolby AC-4
|
|
294
|
+
# stream for the specified decoder mode. For information about the
|
|
295
|
+
# Dolby AC-4 DRC profiles, see the Dolby AC-4 specification.
|
|
296
|
+
# @return [String]
|
|
297
|
+
#
|
|
298
|
+
# @!attribute [rw] dynamic_range_compression_portable_speakers
|
|
299
|
+
# Choose the Dolby AC-4 dynamic range control (DRC) profile that
|
|
300
|
+
# MediaConvert uses when encoding the metadata in the Dolby AC-4
|
|
301
|
+
# stream for the specified decoder mode. For information about the
|
|
302
|
+
# Dolby AC-4 DRC profiles, see the Dolby AC-4 specification.
|
|
303
|
+
# @return [String]
|
|
304
|
+
#
|
|
305
|
+
# @!attribute [rw] lo_ro_center_mix_level
|
|
306
|
+
# Specify a value for the following Dolby AC-4 setting: Left
|
|
307
|
+
# only/Right only center mix. MediaConvert uses this value for
|
|
308
|
+
# downmixing. How the service uses this value depends on the value
|
|
309
|
+
# that you choose for Stereo downmix. Valid values: 3.0, 1.5, 0.0,
|
|
310
|
+
# -1.5, -3.0, -4.5, -6.0, and -infinity. The value -infinity mutes the
|
|
311
|
+
# channel. This setting applies only if you keep the default value of
|
|
312
|
+
# 3/2 - L, R, C, Ls, Rs for the setting Coding mode. If you choose a
|
|
313
|
+
# different value for Coding mode, the service ignores Left only/Right
|
|
314
|
+
# only center.
|
|
315
|
+
# @return [Float]
|
|
316
|
+
#
|
|
317
|
+
# @!attribute [rw] lo_ro_surround_mix_level
|
|
318
|
+
# Specify a value for the following Dolby AC-4 setting: Left
|
|
319
|
+
# only/Right only surround mix. MediaConvert uses this value for
|
|
320
|
+
# downmixing. How the service uses this value depends on the value
|
|
321
|
+
# that you choose for Stereo downmix. Valid values: -1.5, -3.0, -4.5,
|
|
322
|
+
# -6.0, and -infinity. The value -infinity mutes the channel. This
|
|
323
|
+
# setting applies only if you keep the default value of 3/2 - L, R, C,
|
|
324
|
+
# Ls, Rs for the setting Coding mode. If you choose a different value
|
|
325
|
+
# for Coding mode, the service ignores Left only/Right only surround.
|
|
326
|
+
# @return [Float]
|
|
327
|
+
#
|
|
328
|
+
# @!attribute [rw] lt_rt_center_mix_level
|
|
329
|
+
# Specify a value for the following Dolby AC-4 setting: Left
|
|
330
|
+
# total/Right total center mix. MediaConvert uses this value for
|
|
331
|
+
# downmixing. How the service uses this value depends on the value
|
|
332
|
+
# that you choose for Stereo downmix. Valid values: 3.0, 1.5, 0.0,
|
|
333
|
+
# -1.5, -3.0, -4.5, -6.0, and -infinity. The value -infinity mutes the
|
|
334
|
+
# channel. This setting applies only if you keep the default value of
|
|
335
|
+
# 3/2 - L, R, C, Ls, Rs for the setting Coding mode. If you choose a
|
|
336
|
+
# different value for Coding mode, the service ignores Left
|
|
337
|
+
# total/Right total center.
|
|
338
|
+
# @return [Float]
|
|
339
|
+
#
|
|
340
|
+
# @!attribute [rw] lt_rt_surround_mix_level
|
|
341
|
+
# Specify a value for the following Dolby AC-4 setting: Left
|
|
342
|
+
# total/Right total surround mix. MediaConvert uses this value for
|
|
343
|
+
# downmixing. How the service uses this value depends on the value
|
|
344
|
+
# that you choose for Stereo downmix. Valid values: -1.5, -3.0, -4.5,
|
|
345
|
+
# -6.0, and -infinity. The value -infinity mutes the channel. This
|
|
346
|
+
# setting applies only if you keep the default value of 3/2 - L, R, C,
|
|
347
|
+
# Ls, Rs for the setting Coding mode. If you choose a different value
|
|
348
|
+
# for Coding mode, the service ignores Left total/Right total
|
|
349
|
+
# surround.
|
|
350
|
+
# @return [Float]
|
|
351
|
+
#
|
|
352
|
+
# @!attribute [rw] sample_rate
|
|
353
|
+
# This value is always 48000. It represents the sample rate in Hz.
|
|
354
|
+
# @return [Integer]
|
|
355
|
+
#
|
|
356
|
+
# @!attribute [rw] stereo_downmix
|
|
357
|
+
# Choose the preferred stereo downmix method. This setting tells the
|
|
358
|
+
# decoder how to downmix multi-channel audio to stereo during
|
|
359
|
+
# playback.
|
|
360
|
+
# @return [String]
|
|
361
|
+
#
|
|
362
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconvert-2017-08-29/Ac4Settings AWS API Documentation
|
|
363
|
+
#
|
|
364
|
+
class Ac4Settings < Struct.new(
|
|
365
|
+
:bitrate,
|
|
366
|
+
:bitstream_mode,
|
|
367
|
+
:coding_mode,
|
|
368
|
+
:dynamic_range_compression_flat_panel_tv,
|
|
369
|
+
:dynamic_range_compression_home_theater,
|
|
370
|
+
:dynamic_range_compression_portable_headphones,
|
|
371
|
+
:dynamic_range_compression_portable_speakers,
|
|
372
|
+
:lo_ro_center_mix_level,
|
|
373
|
+
:lo_ro_surround_mix_level,
|
|
374
|
+
:lt_rt_center_mix_level,
|
|
375
|
+
:lt_rt_surround_mix_level,
|
|
376
|
+
:sample_rate,
|
|
377
|
+
:stereo_downmix)
|
|
378
|
+
SENSITIVE = []
|
|
379
|
+
include Aws::Structure
|
|
380
|
+
end
|
|
381
|
+
|
|
248
382
|
# Accelerated transcoding can significantly speed up jobs with long,
|
|
249
383
|
# visually complex content.
|
|
250
384
|
#
|
|
@@ -457,6 +591,10 @@ module Aws::MediaConvert
|
|
|
457
591
|
# Required when you set Codec to the value AC3.
|
|
458
592
|
# @return [Types::Ac3Settings]
|
|
459
593
|
#
|
|
594
|
+
# @!attribute [rw] ac_4_settings
|
|
595
|
+
# Required when you set Codec to the value AC4.
|
|
596
|
+
# @return [Types::Ac4Settings]
|
|
597
|
+
#
|
|
460
598
|
# @!attribute [rw] aiff_settings
|
|
461
599
|
# Required when you set Codec to the value AIFF.
|
|
462
600
|
# @return [Types::AiffSettings]
|
|
@@ -516,6 +654,7 @@ module Aws::MediaConvert
|
|
|
516
654
|
class AudioCodecSettings < Struct.new(
|
|
517
655
|
:aac_settings,
|
|
518
656
|
:ac_3_settings,
|
|
657
|
+
:ac_4_settings,
|
|
519
658
|
:aiff_settings,
|
|
520
659
|
:codec,
|
|
521
660
|
:eac_3_atmos_settings,
|
|
@@ -2340,6 +2479,24 @@ module Aws::MediaConvert
|
|
|
2340
2479
|
|
|
2341
2480
|
# Settings for CMAF encryption
|
|
2342
2481
|
#
|
|
2482
|
+
# @!attribute [rw] clear_lead
|
|
2483
|
+
# Enable Clear Lead DRM to reduce video startup latency by leaving the
|
|
2484
|
+
# first segment unencrypted while DRM license retrieval occurs in
|
|
2485
|
+
# parallel. This optimization allows immediate playback startup while
|
|
2486
|
+
# maintaining content protection for the remainder of the stream. When
|
|
2487
|
+
# enabled, the first output segment remains fully unencrypted, and
|
|
2488
|
+
# encryption begins at the start of the second segment. The HLS
|
|
2489
|
+
# manifest will omit #EXT-X-KEY tags during the clear segment and
|
|
2490
|
+
# insert the first #EXT-X-KEY immediately before the first encrypted
|
|
2491
|
+
# fragment. This feature is supported exclusively for CMAF HLS (fMP4)
|
|
2492
|
+
# outputs and is compatible with all existing key provider
|
|
2493
|
+
# integrations (SPEKE v1, SPEKE v2, and Static Key encryption).
|
|
2494
|
+
# Supported codecs: H.264 and H.265 video codecs, and AAC audio codec.
|
|
2495
|
+
# Choose Enabled to activate Clear Lead DRM optimization. Choose
|
|
2496
|
+
# Disabled to use standard encryption where all segments are encrypted
|
|
2497
|
+
# from the beginning.
|
|
2498
|
+
# @return [String]
|
|
2499
|
+
#
|
|
2343
2500
|
# @!attribute [rw] constant_initialization_vector
|
|
2344
2501
|
# This is a 128-bit, 16-byte hex value represented by a 32-character
|
|
2345
2502
|
# text string. If this parameter is not set then the Initialization
|
|
@@ -2378,6 +2535,7 @@ module Aws::MediaConvert
|
|
|
2378
2535
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconvert-2017-08-29/CmafEncryptionSettings AWS API Documentation
|
|
2379
2536
|
#
|
|
2380
2537
|
class CmafEncryptionSettings < Struct.new(
|
|
2538
|
+
:clear_lead,
|
|
2381
2539
|
:constant_initialization_vector,
|
|
2382
2540
|
:encryption_method,
|
|
2383
2541
|
:initialization_vector_in_manifest,
|
|
@@ -2686,7 +2844,10 @@ module Aws::MediaConvert
|
|
|
2686
2844
|
# to FOLLOW\_IFRAME, MediaConvert generates thumbnails for each IDR
|
|
2687
2845
|
# frame in the output (matching the GOP cadence). If set to
|
|
2688
2846
|
# FOLLOW\_CUSTOM, MediaConvert generates thumbnails according to the
|
|
2689
|
-
# interval you specify in thumbnailInterval.
|
|
2847
|
+
# interval you specify in thumbnailInterval. If set to
|
|
2848
|
+
# FOLLOW\_SEGMENTATION, MediaConvert generates thumbnail playlist
|
|
2849
|
+
# entries that align exactly with video segment boundaries.
|
|
2850
|
+
# FOLLOW\_SEGMENTATION requires 1x1 tiling.
|
|
2690
2851
|
# @return [String]
|
|
2691
2852
|
#
|
|
2692
2853
|
# @!attribute [rw] thumbnail_height
|
|
@@ -3236,9 +3397,9 @@ module Aws::MediaConvert
|
|
|
3236
3397
|
#
|
|
3237
3398
|
# @!attribute [rw] format
|
|
3238
3399
|
# The format of your media file. For example: MP4, QuickTime (MOV),
|
|
3239
|
-
# Matroska (MKV), WebM, MXF or
|
|
3240
|
-
# your media file has a format that the MediaConvert Probe
|
|
3241
|
-
# does not recognize.
|
|
3400
|
+
# Matroska (MKV), WebM, MXF, Wave, or AVI. Note that this will be
|
|
3401
|
+
# blank if your media file has a format that the MediaConvert Probe
|
|
3402
|
+
# operation does not recognize.
|
|
3242
3403
|
# @return [String]
|
|
3243
3404
|
#
|
|
3244
3405
|
# @!attribute [rw] tracks
|
|
@@ -4030,7 +4191,10 @@ module Aws::MediaConvert
|
|
|
4030
4191
|
# to FOLLOW\_IFRAME, MediaConvert generates thumbnails for each IDR
|
|
4031
4192
|
# frame in the output (matching the GOP cadence). If set to
|
|
4032
4193
|
# FOLLOW\_CUSTOM, MediaConvert generates thumbnails according to the
|
|
4033
|
-
# interval you specify in thumbnailInterval.
|
|
4194
|
+
# interval you specify in thumbnailInterval. If set to
|
|
4195
|
+
# FOLLOW\_SEGMENTATION, MediaConvert generates thumbnail playlist
|
|
4196
|
+
# entries that align exactly with video segment boundaries.
|
|
4197
|
+
# FOLLOW\_SEGMENTATION requires 1x1 tiling.
|
|
4034
4198
|
# @return [String]
|
|
4035
4199
|
#
|
|
4036
4200
|
# @!attribute [rw] thumbnail_height
|
|
@@ -7765,7 +7929,10 @@ module Aws::MediaConvert
|
|
|
7765
7929
|
# to FOLLOW\_IFRAME, MediaConvert generates thumbnails for each IDR
|
|
7766
7930
|
# frame in the output (matching the GOP cadence). If set to
|
|
7767
7931
|
# FOLLOW\_CUSTOM, MediaConvert generates thumbnails according to the
|
|
7768
|
-
# interval you specify in thumbnailInterval.
|
|
7932
|
+
# interval you specify in thumbnailInterval. If set to
|
|
7933
|
+
# FOLLOW\_SEGMENTATION, MediaConvert generates thumbnail playlist
|
|
7934
|
+
# entries that align exactly with video segment boundaries.
|
|
7935
|
+
# FOLLOW\_SEGMENTATION requires 1x1 tiling.
|
|
7769
7936
|
# @return [String]
|
|
7770
7937
|
#
|
|
7771
7938
|
# @!attribute [rw] thumbnail_height
|
data/lib/aws-sdk-mediaconvert.rb
CHANGED
data/sig/client.rbs
CHANGED
|
@@ -533,6 +533,7 @@ module Aws
|
|
|
533
533
|
}?
|
|
534
534
|
}?,
|
|
535
535
|
encryption: {
|
|
536
|
+
clear_lead: ("ENABLED" | "DISABLED")?,
|
|
536
537
|
constant_initialization_vector: ::String?,
|
|
537
538
|
encryption_method: ("SAMPLE_AES" | "AES_CTR")?,
|
|
538
539
|
initialization_vector_in_manifest: ("INCLUDE" | "EXCLUDE")?,
|
|
@@ -558,7 +559,7 @@ module Aws
|
|
|
558
559
|
fragment_length: ::Integer?,
|
|
559
560
|
image_based_trick_play: ("NONE" | "THUMBNAIL" | "THUMBNAIL_AND_FULLFRAME" | "ADVANCED")?,
|
|
560
561
|
image_based_trick_play_settings: {
|
|
561
|
-
interval_cadence: ("FOLLOW_IFRAME" | "FOLLOW_CUSTOM")?,
|
|
562
|
+
interval_cadence: ("FOLLOW_IFRAME" | "FOLLOW_CUSTOM" | "FOLLOW_SEGMENTATION")?,
|
|
562
563
|
thumbnail_height: ::Integer?,
|
|
563
564
|
thumbnail_interval: ::Float?,
|
|
564
565
|
thumbnail_width: ::Integer?,
|
|
@@ -624,7 +625,7 @@ module Aws
|
|
|
624
625
|
hbbtv_compliance: ("HBBTV_1_5" | "NONE")?,
|
|
625
626
|
image_based_trick_play: ("NONE" | "THUMBNAIL" | "THUMBNAIL_AND_FULLFRAME" | "ADVANCED")?,
|
|
626
627
|
image_based_trick_play_settings: {
|
|
627
|
-
interval_cadence: ("FOLLOW_IFRAME" | "FOLLOW_CUSTOM")?,
|
|
628
|
+
interval_cadence: ("FOLLOW_IFRAME" | "FOLLOW_CUSTOM" | "FOLLOW_SEGMENTATION")?,
|
|
628
629
|
thumbnail_height: ::Integer?,
|
|
629
630
|
thumbnail_interval: ::Float?,
|
|
630
631
|
thumbnail_width: ::Integer?,
|
|
@@ -720,7 +721,7 @@ module Aws
|
|
|
720
721
|
}?,
|
|
721
722
|
image_based_trick_play: ("NONE" | "THUMBNAIL" | "THUMBNAIL_AND_FULLFRAME" | "ADVANCED")?,
|
|
722
723
|
image_based_trick_play_settings: {
|
|
723
|
-
interval_cadence: ("FOLLOW_IFRAME" | "FOLLOW_CUSTOM")?,
|
|
724
|
+
interval_cadence: ("FOLLOW_IFRAME" | "FOLLOW_CUSTOM" | "FOLLOW_SEGMENTATION")?,
|
|
724
725
|
thumbnail_height: ::Integer?,
|
|
725
726
|
thumbnail_interval: ::Float?,
|
|
726
727
|
thumbnail_width: ::Integer?,
|
|
@@ -836,12 +837,27 @@ module Aws
|
|
|
836
837
|
metadata_control: ("FOLLOW_INPUT" | "USE_CONFIGURED")?,
|
|
837
838
|
sample_rate: ::Integer?
|
|
838
839
|
}?,
|
|
840
|
+
ac_4_settings: {
|
|
841
|
+
bitrate: ::Integer?,
|
|
842
|
+
bitstream_mode: ("COMPLETE_MAIN" | "EMERGENCY")?,
|
|
843
|
+
coding_mode: ("CODING_MODE_2_0" | "CODING_MODE_3_2_LFE" | "CODING_MODE_5_1_4")?,
|
|
844
|
+
dynamic_range_compression_flat_panel_tv: ("NONE" | "FILM_STANDARD" | "FILM_LIGHT" | "MUSIC_STANDARD" | "MUSIC_LIGHT" | "SPEECH")?,
|
|
845
|
+
dynamic_range_compression_home_theater: ("NONE" | "FILM_STANDARD" | "FILM_LIGHT" | "MUSIC_STANDARD" | "MUSIC_LIGHT" | "SPEECH")?,
|
|
846
|
+
dynamic_range_compression_portable_headphones: ("NONE" | "FILM_STANDARD" | "FILM_LIGHT" | "MUSIC_STANDARD" | "MUSIC_LIGHT" | "SPEECH")?,
|
|
847
|
+
dynamic_range_compression_portable_speakers: ("NONE" | "FILM_STANDARD" | "FILM_LIGHT" | "MUSIC_STANDARD" | "MUSIC_LIGHT" | "SPEECH")?,
|
|
848
|
+
lo_ro_center_mix_level: ::Float?,
|
|
849
|
+
lo_ro_surround_mix_level: ::Float?,
|
|
850
|
+
lt_rt_center_mix_level: ::Float?,
|
|
851
|
+
lt_rt_surround_mix_level: ::Float?,
|
|
852
|
+
sample_rate: ::Integer?,
|
|
853
|
+
stereo_downmix: ("NOT_INDICATED" | "LO_RO" | "LT_RT" | "DPL2")?
|
|
854
|
+
}?,
|
|
839
855
|
aiff_settings: {
|
|
840
856
|
bit_depth: ::Integer?,
|
|
841
857
|
channels: ::Integer?,
|
|
842
858
|
sample_rate: ::Integer?
|
|
843
859
|
}?,
|
|
844
|
-
codec: ("AAC" | "MP2" | "MP3" | "WAV" | "AIFF" | "AC3" | "EAC3" | "EAC3_ATMOS" | "VORBIS" | "OPUS" | "PASSTHROUGH" | "FLAC")?,
|
|
860
|
+
codec: ("AAC" | "MP2" | "MP3" | "WAV" | "AIFF" | "AC3" | "AC4" | "EAC3" | "EAC3_ATMOS" | "VORBIS" | "OPUS" | "PASSTHROUGH" | "FLAC")?,
|
|
845
861
|
eac_3_atmos_settings: {
|
|
846
862
|
bitrate: ::Integer?,
|
|
847
863
|
bitstream_mode: ("COMPLETE_MAIN")?,
|
|
@@ -2082,6 +2098,7 @@ module Aws
|
|
|
2082
2098
|
}?
|
|
2083
2099
|
}?,
|
|
2084
2100
|
encryption: {
|
|
2101
|
+
clear_lead: ("ENABLED" | "DISABLED")?,
|
|
2085
2102
|
constant_initialization_vector: ::String?,
|
|
2086
2103
|
encryption_method: ("SAMPLE_AES" | "AES_CTR")?,
|
|
2087
2104
|
initialization_vector_in_manifest: ("INCLUDE" | "EXCLUDE")?,
|
|
@@ -2107,7 +2124,7 @@ module Aws
|
|
|
2107
2124
|
fragment_length: ::Integer?,
|
|
2108
2125
|
image_based_trick_play: ("NONE" | "THUMBNAIL" | "THUMBNAIL_AND_FULLFRAME" | "ADVANCED")?,
|
|
2109
2126
|
image_based_trick_play_settings: {
|
|
2110
|
-
interval_cadence: ("FOLLOW_IFRAME" | "FOLLOW_CUSTOM")?,
|
|
2127
|
+
interval_cadence: ("FOLLOW_IFRAME" | "FOLLOW_CUSTOM" | "FOLLOW_SEGMENTATION")?,
|
|
2111
2128
|
thumbnail_height: ::Integer?,
|
|
2112
2129
|
thumbnail_interval: ::Float?,
|
|
2113
2130
|
thumbnail_width: ::Integer?,
|
|
@@ -2173,7 +2190,7 @@ module Aws
|
|
|
2173
2190
|
hbbtv_compliance: ("HBBTV_1_5" | "NONE")?,
|
|
2174
2191
|
image_based_trick_play: ("NONE" | "THUMBNAIL" | "THUMBNAIL_AND_FULLFRAME" | "ADVANCED")?,
|
|
2175
2192
|
image_based_trick_play_settings: {
|
|
2176
|
-
interval_cadence: ("FOLLOW_IFRAME" | "FOLLOW_CUSTOM")?,
|
|
2193
|
+
interval_cadence: ("FOLLOW_IFRAME" | "FOLLOW_CUSTOM" | "FOLLOW_SEGMENTATION")?,
|
|
2177
2194
|
thumbnail_height: ::Integer?,
|
|
2178
2195
|
thumbnail_interval: ::Float?,
|
|
2179
2196
|
thumbnail_width: ::Integer?,
|
|
@@ -2269,7 +2286,7 @@ module Aws
|
|
|
2269
2286
|
}?,
|
|
2270
2287
|
image_based_trick_play: ("NONE" | "THUMBNAIL" | "THUMBNAIL_AND_FULLFRAME" | "ADVANCED")?,
|
|
2271
2288
|
image_based_trick_play_settings: {
|
|
2272
|
-
interval_cadence: ("FOLLOW_IFRAME" | "FOLLOW_CUSTOM")?,
|
|
2289
|
+
interval_cadence: ("FOLLOW_IFRAME" | "FOLLOW_CUSTOM" | "FOLLOW_SEGMENTATION")?,
|
|
2273
2290
|
thumbnail_height: ::Integer?,
|
|
2274
2291
|
thumbnail_interval: ::Float?,
|
|
2275
2292
|
thumbnail_width: ::Integer?,
|
|
@@ -2385,12 +2402,27 @@ module Aws
|
|
|
2385
2402
|
metadata_control: ("FOLLOW_INPUT" | "USE_CONFIGURED")?,
|
|
2386
2403
|
sample_rate: ::Integer?
|
|
2387
2404
|
}?,
|
|
2405
|
+
ac_4_settings: {
|
|
2406
|
+
bitrate: ::Integer?,
|
|
2407
|
+
bitstream_mode: ("COMPLETE_MAIN" | "EMERGENCY")?,
|
|
2408
|
+
coding_mode: ("CODING_MODE_2_0" | "CODING_MODE_3_2_LFE" | "CODING_MODE_5_1_4")?,
|
|
2409
|
+
dynamic_range_compression_flat_panel_tv: ("NONE" | "FILM_STANDARD" | "FILM_LIGHT" | "MUSIC_STANDARD" | "MUSIC_LIGHT" | "SPEECH")?,
|
|
2410
|
+
dynamic_range_compression_home_theater: ("NONE" | "FILM_STANDARD" | "FILM_LIGHT" | "MUSIC_STANDARD" | "MUSIC_LIGHT" | "SPEECH")?,
|
|
2411
|
+
dynamic_range_compression_portable_headphones: ("NONE" | "FILM_STANDARD" | "FILM_LIGHT" | "MUSIC_STANDARD" | "MUSIC_LIGHT" | "SPEECH")?,
|
|
2412
|
+
dynamic_range_compression_portable_speakers: ("NONE" | "FILM_STANDARD" | "FILM_LIGHT" | "MUSIC_STANDARD" | "MUSIC_LIGHT" | "SPEECH")?,
|
|
2413
|
+
lo_ro_center_mix_level: ::Float?,
|
|
2414
|
+
lo_ro_surround_mix_level: ::Float?,
|
|
2415
|
+
lt_rt_center_mix_level: ::Float?,
|
|
2416
|
+
lt_rt_surround_mix_level: ::Float?,
|
|
2417
|
+
sample_rate: ::Integer?,
|
|
2418
|
+
stereo_downmix: ("NOT_INDICATED" | "LO_RO" | "LT_RT" | "DPL2")?
|
|
2419
|
+
}?,
|
|
2388
2420
|
aiff_settings: {
|
|
2389
2421
|
bit_depth: ::Integer?,
|
|
2390
2422
|
channels: ::Integer?,
|
|
2391
2423
|
sample_rate: ::Integer?
|
|
2392
2424
|
}?,
|
|
2393
|
-
codec: ("AAC" | "MP2" | "MP3" | "WAV" | "AIFF" | "AC3" | "EAC3" | "EAC3_ATMOS" | "VORBIS" | "OPUS" | "PASSTHROUGH" | "FLAC")?,
|
|
2425
|
+
codec: ("AAC" | "MP2" | "MP3" | "WAV" | "AIFF" | "AC3" | "AC4" | "EAC3" | "EAC3_ATMOS" | "VORBIS" | "OPUS" | "PASSTHROUGH" | "FLAC")?,
|
|
2394
2426
|
eac_3_atmos_settings: {
|
|
2395
2427
|
bitrate: ::Integer?,
|
|
2396
2428
|
bitstream_mode: ("COMPLETE_MAIN")?,
|
|
@@ -3276,12 +3308,27 @@ module Aws
|
|
|
3276
3308
|
metadata_control: ("FOLLOW_INPUT" | "USE_CONFIGURED")?,
|
|
3277
3309
|
sample_rate: ::Integer?
|
|
3278
3310
|
}?,
|
|
3311
|
+
ac_4_settings: {
|
|
3312
|
+
bitrate: ::Integer?,
|
|
3313
|
+
bitstream_mode: ("COMPLETE_MAIN" | "EMERGENCY")?,
|
|
3314
|
+
coding_mode: ("CODING_MODE_2_0" | "CODING_MODE_3_2_LFE" | "CODING_MODE_5_1_4")?,
|
|
3315
|
+
dynamic_range_compression_flat_panel_tv: ("NONE" | "FILM_STANDARD" | "FILM_LIGHT" | "MUSIC_STANDARD" | "MUSIC_LIGHT" | "SPEECH")?,
|
|
3316
|
+
dynamic_range_compression_home_theater: ("NONE" | "FILM_STANDARD" | "FILM_LIGHT" | "MUSIC_STANDARD" | "MUSIC_LIGHT" | "SPEECH")?,
|
|
3317
|
+
dynamic_range_compression_portable_headphones: ("NONE" | "FILM_STANDARD" | "FILM_LIGHT" | "MUSIC_STANDARD" | "MUSIC_LIGHT" | "SPEECH")?,
|
|
3318
|
+
dynamic_range_compression_portable_speakers: ("NONE" | "FILM_STANDARD" | "FILM_LIGHT" | "MUSIC_STANDARD" | "MUSIC_LIGHT" | "SPEECH")?,
|
|
3319
|
+
lo_ro_center_mix_level: ::Float?,
|
|
3320
|
+
lo_ro_surround_mix_level: ::Float?,
|
|
3321
|
+
lt_rt_center_mix_level: ::Float?,
|
|
3322
|
+
lt_rt_surround_mix_level: ::Float?,
|
|
3323
|
+
sample_rate: ::Integer?,
|
|
3324
|
+
stereo_downmix: ("NOT_INDICATED" | "LO_RO" | "LT_RT" | "DPL2")?
|
|
3325
|
+
}?,
|
|
3279
3326
|
aiff_settings: {
|
|
3280
3327
|
bit_depth: ::Integer?,
|
|
3281
3328
|
channels: ::Integer?,
|
|
3282
3329
|
sample_rate: ::Integer?
|
|
3283
3330
|
}?,
|
|
3284
|
-
codec: ("AAC" | "MP2" | "MP3" | "WAV" | "AIFF" | "AC3" | "EAC3" | "EAC3_ATMOS" | "VORBIS" | "OPUS" | "PASSTHROUGH" | "FLAC")?,
|
|
3331
|
+
codec: ("AAC" | "MP2" | "MP3" | "WAV" | "AIFF" | "AC3" | "AC4" | "EAC3" | "EAC3_ATMOS" | "VORBIS" | "OPUS" | "PASSTHROUGH" | "FLAC")?,
|
|
3285
3332
|
eac_3_atmos_settings: {
|
|
3286
3333
|
bitrate: ::Integer?,
|
|
3287
3334
|
bitstream_mode: ("COMPLETE_MAIN")?,
|
|
@@ -4799,6 +4846,7 @@ module Aws
|
|
|
4799
4846
|
}?
|
|
4800
4847
|
}?,
|
|
4801
4848
|
encryption: {
|
|
4849
|
+
clear_lead: ("ENABLED" | "DISABLED")?,
|
|
4802
4850
|
constant_initialization_vector: ::String?,
|
|
4803
4851
|
encryption_method: ("SAMPLE_AES" | "AES_CTR")?,
|
|
4804
4852
|
initialization_vector_in_manifest: ("INCLUDE" | "EXCLUDE")?,
|
|
@@ -4824,7 +4872,7 @@ module Aws
|
|
|
4824
4872
|
fragment_length: ::Integer?,
|
|
4825
4873
|
image_based_trick_play: ("NONE" | "THUMBNAIL" | "THUMBNAIL_AND_FULLFRAME" | "ADVANCED")?,
|
|
4826
4874
|
image_based_trick_play_settings: {
|
|
4827
|
-
interval_cadence: ("FOLLOW_IFRAME" | "FOLLOW_CUSTOM")?,
|
|
4875
|
+
interval_cadence: ("FOLLOW_IFRAME" | "FOLLOW_CUSTOM" | "FOLLOW_SEGMENTATION")?,
|
|
4828
4876
|
thumbnail_height: ::Integer?,
|
|
4829
4877
|
thumbnail_interval: ::Float?,
|
|
4830
4878
|
thumbnail_width: ::Integer?,
|
|
@@ -4890,7 +4938,7 @@ module Aws
|
|
|
4890
4938
|
hbbtv_compliance: ("HBBTV_1_5" | "NONE")?,
|
|
4891
4939
|
image_based_trick_play: ("NONE" | "THUMBNAIL" | "THUMBNAIL_AND_FULLFRAME" | "ADVANCED")?,
|
|
4892
4940
|
image_based_trick_play_settings: {
|
|
4893
|
-
interval_cadence: ("FOLLOW_IFRAME" | "FOLLOW_CUSTOM")?,
|
|
4941
|
+
interval_cadence: ("FOLLOW_IFRAME" | "FOLLOW_CUSTOM" | "FOLLOW_SEGMENTATION")?,
|
|
4894
4942
|
thumbnail_height: ::Integer?,
|
|
4895
4943
|
thumbnail_interval: ::Float?,
|
|
4896
4944
|
thumbnail_width: ::Integer?,
|
|
@@ -4986,7 +5034,7 @@ module Aws
|
|
|
4986
5034
|
}?,
|
|
4987
5035
|
image_based_trick_play: ("NONE" | "THUMBNAIL" | "THUMBNAIL_AND_FULLFRAME" | "ADVANCED")?,
|
|
4988
5036
|
image_based_trick_play_settings: {
|
|
4989
|
-
interval_cadence: ("FOLLOW_IFRAME" | "FOLLOW_CUSTOM")?,
|
|
5037
|
+
interval_cadence: ("FOLLOW_IFRAME" | "FOLLOW_CUSTOM" | "FOLLOW_SEGMENTATION")?,
|
|
4990
5038
|
thumbnail_height: ::Integer?,
|
|
4991
5039
|
thumbnail_interval: ::Float?,
|
|
4992
5040
|
thumbnail_width: ::Integer?,
|
|
@@ -5102,12 +5150,27 @@ module Aws
|
|
|
5102
5150
|
metadata_control: ("FOLLOW_INPUT" | "USE_CONFIGURED")?,
|
|
5103
5151
|
sample_rate: ::Integer?
|
|
5104
5152
|
}?,
|
|
5153
|
+
ac_4_settings: {
|
|
5154
|
+
bitrate: ::Integer?,
|
|
5155
|
+
bitstream_mode: ("COMPLETE_MAIN" | "EMERGENCY")?,
|
|
5156
|
+
coding_mode: ("CODING_MODE_2_0" | "CODING_MODE_3_2_LFE" | "CODING_MODE_5_1_4")?,
|
|
5157
|
+
dynamic_range_compression_flat_panel_tv: ("NONE" | "FILM_STANDARD" | "FILM_LIGHT" | "MUSIC_STANDARD" | "MUSIC_LIGHT" | "SPEECH")?,
|
|
5158
|
+
dynamic_range_compression_home_theater: ("NONE" | "FILM_STANDARD" | "FILM_LIGHT" | "MUSIC_STANDARD" | "MUSIC_LIGHT" | "SPEECH")?,
|
|
5159
|
+
dynamic_range_compression_portable_headphones: ("NONE" | "FILM_STANDARD" | "FILM_LIGHT" | "MUSIC_STANDARD" | "MUSIC_LIGHT" | "SPEECH")?,
|
|
5160
|
+
dynamic_range_compression_portable_speakers: ("NONE" | "FILM_STANDARD" | "FILM_LIGHT" | "MUSIC_STANDARD" | "MUSIC_LIGHT" | "SPEECH")?,
|
|
5161
|
+
lo_ro_center_mix_level: ::Float?,
|
|
5162
|
+
lo_ro_surround_mix_level: ::Float?,
|
|
5163
|
+
lt_rt_center_mix_level: ::Float?,
|
|
5164
|
+
lt_rt_surround_mix_level: ::Float?,
|
|
5165
|
+
sample_rate: ::Integer?,
|
|
5166
|
+
stereo_downmix: ("NOT_INDICATED" | "LO_RO" | "LT_RT" | "DPL2")?
|
|
5167
|
+
}?,
|
|
5105
5168
|
aiff_settings: {
|
|
5106
5169
|
bit_depth: ::Integer?,
|
|
5107
5170
|
channels: ::Integer?,
|
|
5108
5171
|
sample_rate: ::Integer?
|
|
5109
5172
|
}?,
|
|
5110
|
-
codec: ("AAC" | "MP2" | "MP3" | "WAV" | "AIFF" | "AC3" | "EAC3" | "EAC3_ATMOS" | "VORBIS" | "OPUS" | "PASSTHROUGH" | "FLAC")?,
|
|
5173
|
+
codec: ("AAC" | "MP2" | "MP3" | "WAV" | "AIFF" | "AC3" | "AC4" | "EAC3" | "EAC3_ATMOS" | "VORBIS" | "OPUS" | "PASSTHROUGH" | "FLAC")?,
|
|
5111
5174
|
eac_3_atmos_settings: {
|
|
5112
5175
|
bitrate: ::Integer?,
|
|
5113
5176
|
bitstream_mode: ("COMPLETE_MAIN")?,
|
|
@@ -5992,12 +6055,27 @@ module Aws
|
|
|
5992
6055
|
metadata_control: ("FOLLOW_INPUT" | "USE_CONFIGURED")?,
|
|
5993
6056
|
sample_rate: ::Integer?
|
|
5994
6057
|
}?,
|
|
6058
|
+
ac_4_settings: {
|
|
6059
|
+
bitrate: ::Integer?,
|
|
6060
|
+
bitstream_mode: ("COMPLETE_MAIN" | "EMERGENCY")?,
|
|
6061
|
+
coding_mode: ("CODING_MODE_2_0" | "CODING_MODE_3_2_LFE" | "CODING_MODE_5_1_4")?,
|
|
6062
|
+
dynamic_range_compression_flat_panel_tv: ("NONE" | "FILM_STANDARD" | "FILM_LIGHT" | "MUSIC_STANDARD" | "MUSIC_LIGHT" | "SPEECH")?,
|
|
6063
|
+
dynamic_range_compression_home_theater: ("NONE" | "FILM_STANDARD" | "FILM_LIGHT" | "MUSIC_STANDARD" | "MUSIC_LIGHT" | "SPEECH")?,
|
|
6064
|
+
dynamic_range_compression_portable_headphones: ("NONE" | "FILM_STANDARD" | "FILM_LIGHT" | "MUSIC_STANDARD" | "MUSIC_LIGHT" | "SPEECH")?,
|
|
6065
|
+
dynamic_range_compression_portable_speakers: ("NONE" | "FILM_STANDARD" | "FILM_LIGHT" | "MUSIC_STANDARD" | "MUSIC_LIGHT" | "SPEECH")?,
|
|
6066
|
+
lo_ro_center_mix_level: ::Float?,
|
|
6067
|
+
lo_ro_surround_mix_level: ::Float?,
|
|
6068
|
+
lt_rt_center_mix_level: ::Float?,
|
|
6069
|
+
lt_rt_surround_mix_level: ::Float?,
|
|
6070
|
+
sample_rate: ::Integer?,
|
|
6071
|
+
stereo_downmix: ("NOT_INDICATED" | "LO_RO" | "LT_RT" | "DPL2")?
|
|
6072
|
+
}?,
|
|
5995
6073
|
aiff_settings: {
|
|
5996
6074
|
bit_depth: ::Integer?,
|
|
5997
6075
|
channels: ::Integer?,
|
|
5998
6076
|
sample_rate: ::Integer?
|
|
5999
6077
|
}?,
|
|
6000
|
-
codec: ("AAC" | "MP2" | "MP3" | "WAV" | "AIFF" | "AC3" | "EAC3" | "EAC3_ATMOS" | "VORBIS" | "OPUS" | "PASSTHROUGH" | "FLAC")?,
|
|
6078
|
+
codec: ("AAC" | "MP2" | "MP3" | "WAV" | "AIFF" | "AC3" | "AC4" | "EAC3" | "EAC3_ATMOS" | "VORBIS" | "OPUS" | "PASSTHROUGH" | "FLAC")?,
|
|
6001
6079
|
eac_3_atmos_settings: {
|
|
6002
6080
|
bitrate: ::Integer?,
|
|
6003
6081
|
bitstream_mode: ("COMPLETE_MAIN")?,
|
data/sig/types.rbs
CHANGED
|
@@ -38,6 +38,23 @@ module Aws::MediaConvert
|
|
|
38
38
|
SENSITIVE: []
|
|
39
39
|
end
|
|
40
40
|
|
|
41
|
+
class Ac4Settings
|
|
42
|
+
attr_accessor bitrate: ::Integer
|
|
43
|
+
attr_accessor bitstream_mode: ("COMPLETE_MAIN" | "EMERGENCY")
|
|
44
|
+
attr_accessor coding_mode: ("CODING_MODE_2_0" | "CODING_MODE_3_2_LFE" | "CODING_MODE_5_1_4")
|
|
45
|
+
attr_accessor dynamic_range_compression_flat_panel_tv: ("NONE" | "FILM_STANDARD" | "FILM_LIGHT" | "MUSIC_STANDARD" | "MUSIC_LIGHT" | "SPEECH")
|
|
46
|
+
attr_accessor dynamic_range_compression_home_theater: ("NONE" | "FILM_STANDARD" | "FILM_LIGHT" | "MUSIC_STANDARD" | "MUSIC_LIGHT" | "SPEECH")
|
|
47
|
+
attr_accessor dynamic_range_compression_portable_headphones: ("NONE" | "FILM_STANDARD" | "FILM_LIGHT" | "MUSIC_STANDARD" | "MUSIC_LIGHT" | "SPEECH")
|
|
48
|
+
attr_accessor dynamic_range_compression_portable_speakers: ("NONE" | "FILM_STANDARD" | "FILM_LIGHT" | "MUSIC_STANDARD" | "MUSIC_LIGHT" | "SPEECH")
|
|
49
|
+
attr_accessor lo_ro_center_mix_level: ::Float
|
|
50
|
+
attr_accessor lo_ro_surround_mix_level: ::Float
|
|
51
|
+
attr_accessor lt_rt_center_mix_level: ::Float
|
|
52
|
+
attr_accessor lt_rt_surround_mix_level: ::Float
|
|
53
|
+
attr_accessor sample_rate: ::Integer
|
|
54
|
+
attr_accessor stereo_downmix: ("NOT_INDICATED" | "LO_RO" | "LT_RT" | "DPL2")
|
|
55
|
+
SENSITIVE: []
|
|
56
|
+
end
|
|
57
|
+
|
|
41
58
|
class AccelerationSettings
|
|
42
59
|
attr_accessor mode: ("DISABLED" | "ENABLED" | "PREFERRED")
|
|
43
60
|
SENSITIVE: []
|
|
@@ -87,8 +104,9 @@ module Aws::MediaConvert
|
|
|
87
104
|
class AudioCodecSettings
|
|
88
105
|
attr_accessor aac_settings: Types::AacSettings
|
|
89
106
|
attr_accessor ac_3_settings: Types::Ac3Settings
|
|
107
|
+
attr_accessor ac_4_settings: Types::Ac4Settings
|
|
90
108
|
attr_accessor aiff_settings: Types::AiffSettings
|
|
91
|
-
attr_accessor codec: ("AAC" | "MP2" | "MP3" | "WAV" | "AIFF" | "AC3" | "EAC3" | "EAC3_ATMOS" | "VORBIS" | "OPUS" | "PASSTHROUGH" | "FLAC")
|
|
109
|
+
attr_accessor codec: ("AAC" | "MP2" | "MP3" | "WAV" | "AIFF" | "AC3" | "AC4" | "EAC3" | "EAC3_ATMOS" | "VORBIS" | "OPUS" | "PASSTHROUGH" | "FLAC")
|
|
92
110
|
attr_accessor eac_3_atmos_settings: Types::Eac3AtmosSettings
|
|
93
111
|
attr_accessor eac_3_settings: Types::Eac3Settings
|
|
94
112
|
attr_accessor flac_settings: Types::FlacSettings
|
|
@@ -362,6 +380,7 @@ module Aws::MediaConvert
|
|
|
362
380
|
end
|
|
363
381
|
|
|
364
382
|
class CmafEncryptionSettings
|
|
383
|
+
attr_accessor clear_lead: ("ENABLED" | "DISABLED")
|
|
365
384
|
attr_accessor constant_initialization_vector: ::String
|
|
366
385
|
attr_accessor encryption_method: ("SAMPLE_AES" | "AES_CTR")
|
|
367
386
|
attr_accessor initialization_vector_in_manifest: ("INCLUDE" | "EXCLUDE")
|
|
@@ -404,7 +423,7 @@ module Aws::MediaConvert
|
|
|
404
423
|
end
|
|
405
424
|
|
|
406
425
|
class CmafImageBasedTrickPlaySettings
|
|
407
|
-
attr_accessor interval_cadence: ("FOLLOW_IFRAME" | "FOLLOW_CUSTOM")
|
|
426
|
+
attr_accessor interval_cadence: ("FOLLOW_IFRAME" | "FOLLOW_CUSTOM" | "FOLLOW_SEGMENTATION")
|
|
408
427
|
attr_accessor thumbnail_height: ::Integer
|
|
409
428
|
attr_accessor thumbnail_interval: ::Float
|
|
410
429
|
attr_accessor thumbnail_width: ::Integer
|
|
@@ -480,7 +499,7 @@ module Aws::MediaConvert
|
|
|
480
499
|
|
|
481
500
|
class Container
|
|
482
501
|
attr_accessor duration: ::Float
|
|
483
|
-
attr_accessor format: ("mp4" | "quicktime" | "matroska" | "webm" | "mxf" | "wave")
|
|
502
|
+
attr_accessor format: ("mp4" | "quicktime" | "matroska" | "webm" | "mxf" | "wave" | "avi")
|
|
484
503
|
attr_accessor tracks: ::Array[Types::Track]
|
|
485
504
|
SENSITIVE: []
|
|
486
505
|
end
|
|
@@ -618,7 +637,7 @@ module Aws::MediaConvert
|
|
|
618
637
|
end
|
|
619
638
|
|
|
620
639
|
class DashIsoImageBasedTrickPlaySettings
|
|
621
|
-
attr_accessor interval_cadence: ("FOLLOW_IFRAME" | "FOLLOW_CUSTOM")
|
|
640
|
+
attr_accessor interval_cadence: ("FOLLOW_IFRAME" | "FOLLOW_CUSTOM" | "FOLLOW_SEGMENTATION")
|
|
622
641
|
attr_accessor thumbnail_height: ::Integer
|
|
623
642
|
attr_accessor thumbnail_interval: ::Float
|
|
624
643
|
attr_accessor thumbnail_width: ::Integer
|
|
@@ -1204,7 +1223,7 @@ module Aws::MediaConvert
|
|
|
1204
1223
|
end
|
|
1205
1224
|
|
|
1206
1225
|
class HlsImageBasedTrickPlaySettings
|
|
1207
|
-
attr_accessor interval_cadence: ("FOLLOW_IFRAME" | "FOLLOW_CUSTOM")
|
|
1226
|
+
attr_accessor interval_cadence: ("FOLLOW_IFRAME" | "FOLLOW_CUSTOM" | "FOLLOW_SEGMENTATION")
|
|
1208
1227
|
attr_accessor thumbnail_height: ::Integer
|
|
1209
1228
|
attr_accessor thumbnail_interval: ::Float
|
|
1210
1229
|
attr_accessor thumbnail_width: ::Integer
|
|
@@ -2253,7 +2272,7 @@ module Aws::MediaConvert
|
|
|
2253
2272
|
|
|
2254
2273
|
class Track
|
|
2255
2274
|
attr_accessor audio_properties: Types::AudioProperties
|
|
2256
|
-
attr_accessor codec: ("UNKNOWN" | "AAC" | "AC3" | "EAC3" | "FLAC" | "MP3" | "OPUS" | "PCM" | "VORBIS" | "AV1" | "AVC" | "HEVC" | "JPEG2000" | "MJPEG" | "MPEG1" | "MP4V" | "MPEG2" | "PRORES" | "THEORA" | "
|
|
2275
|
+
attr_accessor codec: ("UNKNOWN" | "AAC" | "AC3" | "EAC3" | "FLAC" | "MP3" | "OPUS" | "PCM" | "VORBIS" | "AV1" | "AVC" | "HEVC" | "JPEG2000" | "MJPEG" | "MPEG1" | "MP4V" | "MPEG2" | "PRORES" | "QTRLE" | "THEORA" | "UNCOMPRESSED" | "VFW" | "VP8" | "VP9" | "C608" | "C708" | "WEBVTT")
|
|
2257
2276
|
attr_accessor data_properties: Types::DataProperties
|
|
2258
2277
|
attr_accessor duration: ::Float
|
|
2259
2278
|
attr_accessor index: ::Integer
|