aws-sdk-mediaconvert 1.191.0 → 1.192.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 +94 -28
- data/lib/aws-sdk-mediaconvert/client_api.rb +26 -0
- data/lib/aws-sdk-mediaconvert/types.rb +189 -21
- data/lib/aws-sdk-mediaconvert.rb +1 -1
- data/sig/client.rbs +1 -1
- data/sig/params.rbs +20 -8
- data/sig/types.rbs +28 -8
- 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: ac146a84f586f4e2ccf7df0fd8ab85691ac54f4caab66e033116a70551d9d9ec
|
|
4
|
+
data.tar.gz: 565b25bd37c713e29ebd571750118eb573be355aa323eb8fdcb0b09d9c1b7219
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: eae17339eb1260871d3095b720a2b13a8a98e88a4955483f651b8cf28664354f14524f3006ff10b15755986c0d923b7e6650ab1ed46df132e8283f4881bc58d4
|
|
7
|
+
data.tar.gz: db0cb6b025a2bb34309f12246a53c9abb37217c487c1c7d1d111f8e8d40d25a6faa4eeaf9bc3d4cb5c55362a51a178462461d7fcb4602a6ee51a535e2a1e7de9
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.192.0 (2026-09-01)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Adds support for AAC passthrough. Adds ManifestCues option to support HLS manifest Cue marker passthrough. Adds playback device compatibility mode for DASH H.265 outputs. Adds TTML caption styling options. Adds interlace mode support for XAVC HD Intra CBG profile.
|
|
8
|
+
|
|
4
9
|
1.191.0 (2026-08-03)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.192.0
|
|
@@ -745,6 +745,7 @@ module Aws::MediaConvert
|
|
|
745
745
|
# codec_profile: "LC", # accepts LC, HEV1, HEV2, XHE
|
|
746
746
|
# 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, CODING_MODE_AUTO
|
|
747
747
|
# loudness_measurement_mode: "PROGRAM", # accepts PROGRAM, ANCHOR
|
|
748
|
+
# passthrough_control: "WHEN_POSSIBLE", # accepts WHEN_POSSIBLE, NO_PASSTHROUGH
|
|
748
749
|
# rap_interval: 1,
|
|
749
750
|
# rate_control_mode: "CBR", # accepts CBR, VBR
|
|
750
751
|
# raw_format: "LATM_LOAS", # accepts LATM_LOAS, NONE
|
|
@@ -968,7 +969,15 @@ module Aws::MediaConvert
|
|
|
968
969
|
# page_types: ["PAGE_TYPE_INITIAL"], # accepts PAGE_TYPE_INITIAL, PAGE_TYPE_SUBTITLE, PAGE_TYPE_ADDL_INFO, PAGE_TYPE_PROGRAM_SCHEDULE, PAGE_TYPE_HEARING_IMPAIRED_SUBTITLE
|
|
969
970
|
# },
|
|
970
971
|
# ttml_destination_settings: {
|
|
972
|
+
# background_color: "NONE", # accepts NONE, BLACK, WHITE, AUTO
|
|
973
|
+
# background_opacity: 1,
|
|
974
|
+
# font_color: "WHITE", # accepts WHITE, BLACK, YELLOW, RED, GREEN, BLUE, AUTO
|
|
975
|
+
# font_opacity: 1,
|
|
976
|
+
# font_size: 1,
|
|
977
|
+
# font_style: "NORMAL", # accepts NORMAL, ITALIC
|
|
978
|
+
# font_weight: "NORMAL", # accepts NORMAL, BOLD
|
|
971
979
|
# style_passthrough: "ENABLED", # accepts ENABLED, DISABLED
|
|
980
|
+
# text_decoration: "NONE", # accepts NONE, UNDERLINE
|
|
972
981
|
# },
|
|
973
982
|
# webvtt_destination_settings: {
|
|
974
983
|
# accessibility: "DISABLED", # accepts DISABLED, ENABLED
|
|
@@ -992,7 +1001,7 @@ module Aws::MediaConvert
|
|
|
992
1001
|
# klv_metadata: "PASSTHROUGH", # accepts PASSTHROUGH, NONE
|
|
993
1002
|
# manifest_metadata_signaling: "ENABLED", # accepts ENABLED, DISABLED
|
|
994
1003
|
# scte_35_esam: "INSERT", # accepts INSERT, NONE
|
|
995
|
-
# scte_35_source: "PASSTHROUGH", # accepts PASSTHROUGH, NONE
|
|
1004
|
+
# scte_35_source: "PASSTHROUGH", # accepts PASSTHROUGH, NONE, MANIFEST_CUES
|
|
996
1005
|
# signing_kms_key: "__stringMin1PatternArnAwsUsGovCnKmsAZ26EastWestCentralNorthSouthEastWest1912D12KeyAFAF098AFAF094AFAF094AFAF094AFAF0912MrkAFAF0932",
|
|
997
1006
|
# timed_metadata: "PASSTHROUGH", # accepts PASSTHROUGH, NONE
|
|
998
1007
|
# timed_metadata_box_version: "VERSION_0", # accepts VERSION_0, VERSION_1
|
|
@@ -1053,7 +1062,7 @@ module Aws::MediaConvert
|
|
|
1053
1062
|
# scte_35_esam_pid: 1,
|
|
1054
1063
|
# },
|
|
1055
1064
|
# scte_35_pid: 1,
|
|
1056
|
-
# scte_35_source: "PASSTHROUGH", # accepts PASSTHROUGH, NONE
|
|
1065
|
+
# scte_35_source: "PASSTHROUGH", # accepts PASSTHROUGH, NONE, MANIFEST_CUES
|
|
1057
1066
|
# segmentation_markers: "NONE", # accepts NONE, RAI_SEGSTART, RAI_ADAPT, PSI_SEGSTART, EBP, EBP_LEGACY
|
|
1058
1067
|
# segmentation_style: "MAINTAIN_CADENCE", # accepts MAINTAIN_CADENCE, RESET_CADENCE
|
|
1059
1068
|
# segmentation_time: 1.0,
|
|
@@ -1079,7 +1088,7 @@ module Aws::MediaConvert
|
|
|
1079
1088
|
# pts_offset: 1,
|
|
1080
1089
|
# pts_offset_mode: "AUTO", # accepts AUTO, SECONDS, MILLISECONDS
|
|
1081
1090
|
# scte_35_pid: 1,
|
|
1082
|
-
# scte_35_source: "PASSTHROUGH", # accepts PASSTHROUGH, NONE
|
|
1091
|
+
# scte_35_source: "PASSTHROUGH", # accepts PASSTHROUGH, NONE, MANIFEST_CUES
|
|
1083
1092
|
# timed_metadata: "PASSTHROUGH", # accepts PASSTHROUGH, NONE
|
|
1084
1093
|
# timed_metadata_pid: 1,
|
|
1085
1094
|
# transport_stream_id: 1,
|
|
@@ -1113,7 +1122,7 @@ module Aws::MediaConvert
|
|
|
1113
1122
|
# klv_metadata: "NONE", # accepts NONE, PASSTHROUGH
|
|
1114
1123
|
# manifest_metadata_signaling: "ENABLED", # accepts ENABLED, DISABLED
|
|
1115
1124
|
# scte_35_esam: "INSERT", # accepts INSERT, NONE
|
|
1116
|
-
# scte_35_source: "PASSTHROUGH", # accepts PASSTHROUGH, NONE
|
|
1125
|
+
# scte_35_source: "PASSTHROUGH", # accepts PASSTHROUGH, NONE, MANIFEST_CUES
|
|
1117
1126
|
# signing_kms_key: "__stringMin1PatternArnAwsUsGovCnKmsAZ26EastWestCentralNorthSouthEastWest1912D12KeyAFAF098AFAF094AFAF094AFAF094AFAF0912MrkAFAF0932",
|
|
1118
1127
|
# timed_metadata: "PASSTHROUGH", # accepts PASSTHROUGH, NONE
|
|
1119
1128
|
# timed_metadata_box_version: "VERSION_0", # accepts VERSION_0, VERSION_1
|
|
@@ -1437,6 +1446,7 @@ module Aws::MediaConvert
|
|
|
1437
1446
|
# slices: 1,
|
|
1438
1447
|
# },
|
|
1439
1448
|
# xavc_hd_intra_cbg_profile_settings: {
|
|
1449
|
+
# interlace_mode: "PROGRESSIVE", # accepts PROGRESSIVE, TOP_FIELD, BOTTOM_FIELD, FOLLOW_TOP_FIELD, FOLLOW_BOTTOM_FIELD
|
|
1440
1450
|
# xavc_class: "CLASS_50", # accepts CLASS_50, CLASS_100, CLASS_200
|
|
1441
1451
|
# },
|
|
1442
1452
|
# xavc_hd_profile_settings: {
|
|
@@ -1615,6 +1625,7 @@ module Aws::MediaConvert
|
|
|
1615
1625
|
# resp.preset.settings.audio_descriptions[0].codec_settings.aac_settings.codec_profile #=> String, one of "LC", "HEV1", "HEV2", "XHE"
|
|
1616
1626
|
# 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", "CODING_MODE_AUTO"
|
|
1617
1627
|
# resp.preset.settings.audio_descriptions[0].codec_settings.aac_settings.loudness_measurement_mode #=> String, one of "PROGRAM", "ANCHOR"
|
|
1628
|
+
# resp.preset.settings.audio_descriptions[0].codec_settings.aac_settings.passthrough_control #=> String, one of "WHEN_POSSIBLE", "NO_PASSTHROUGH"
|
|
1618
1629
|
# resp.preset.settings.audio_descriptions[0].codec_settings.aac_settings.rap_interval #=> Integer
|
|
1619
1630
|
# resp.preset.settings.audio_descriptions[0].codec_settings.aac_settings.rate_control_mode #=> String, one of "CBR", "VBR"
|
|
1620
1631
|
# resp.preset.settings.audio_descriptions[0].codec_settings.aac_settings.raw_format #=> String, one of "LATM_LOAS", "NONE"
|
|
@@ -1791,7 +1802,15 @@ module Aws::MediaConvert
|
|
|
1791
1802
|
# resp.preset.settings.caption_descriptions[0].destination_settings.teletext_destination_settings.page_number #=> String
|
|
1792
1803
|
# resp.preset.settings.caption_descriptions[0].destination_settings.teletext_destination_settings.page_types #=> Array
|
|
1793
1804
|
# resp.preset.settings.caption_descriptions[0].destination_settings.teletext_destination_settings.page_types[0] #=> String, one of "PAGE_TYPE_INITIAL", "PAGE_TYPE_SUBTITLE", "PAGE_TYPE_ADDL_INFO", "PAGE_TYPE_PROGRAM_SCHEDULE", "PAGE_TYPE_HEARING_IMPAIRED_SUBTITLE"
|
|
1805
|
+
# resp.preset.settings.caption_descriptions[0].destination_settings.ttml_destination_settings.background_color #=> String, one of "NONE", "BLACK", "WHITE", "AUTO"
|
|
1806
|
+
# resp.preset.settings.caption_descriptions[0].destination_settings.ttml_destination_settings.background_opacity #=> Integer
|
|
1807
|
+
# resp.preset.settings.caption_descriptions[0].destination_settings.ttml_destination_settings.font_color #=> String, one of "WHITE", "BLACK", "YELLOW", "RED", "GREEN", "BLUE", "AUTO"
|
|
1808
|
+
# resp.preset.settings.caption_descriptions[0].destination_settings.ttml_destination_settings.font_opacity #=> Integer
|
|
1809
|
+
# resp.preset.settings.caption_descriptions[0].destination_settings.ttml_destination_settings.font_size #=> Integer
|
|
1810
|
+
# resp.preset.settings.caption_descriptions[0].destination_settings.ttml_destination_settings.font_style #=> String, one of "NORMAL", "ITALIC"
|
|
1811
|
+
# resp.preset.settings.caption_descriptions[0].destination_settings.ttml_destination_settings.font_weight #=> String, one of "NORMAL", "BOLD"
|
|
1794
1812
|
# resp.preset.settings.caption_descriptions[0].destination_settings.ttml_destination_settings.style_passthrough #=> String, one of "ENABLED", "DISABLED"
|
|
1813
|
+
# resp.preset.settings.caption_descriptions[0].destination_settings.ttml_destination_settings.text_decoration #=> String, one of "NONE", "UNDERLINE"
|
|
1795
1814
|
# resp.preset.settings.caption_descriptions[0].destination_settings.webvtt_destination_settings.accessibility #=> String, one of "DISABLED", "ENABLED"
|
|
1796
1815
|
# resp.preset.settings.caption_descriptions[0].destination_settings.webvtt_destination_settings.style_passthrough #=> String, one of "ENABLED", "DISABLED", "STRICT", "MERGE"
|
|
1797
1816
|
# resp.preset.settings.caption_descriptions[0].language_code #=> String, one of "ENG", "SPA", "FRA", "DEU", "GER", "ZHO", "ARA", "HIN", "JPN", "RUS", "POR", "ITA", "URD", "VIE", "KOR", "PAN", "ABK", "AAR", "AFR", "AKA", "SQI", "AMH", "ARG", "HYE", "ASM", "AVA", "AVE", "AYM", "AZE", "BAM", "BAK", "EUS", "BEL", "BEN", "BIH", "BIS", "BOS", "BRE", "BUL", "MYA", "CAT", "KHM", "CHA", "CHE", "NYA", "CHU", "CHV", "COR", "COS", "CRE", "HRV", "CES", "DAN", "DIV", "NLD", "DZO", "ENM", "EPO", "EST", "EWE", "FAO", "FIJ", "FIN", "FRM", "FUL", "GLA", "GLG", "LUG", "KAT", "ELL", "GRN", "GUJ", "HAT", "HAU", "HEB", "HER", "HMO", "HUN", "ISL", "IDO", "IBO", "IND", "INA", "ILE", "IKU", "IPK", "GLE", "JAV", "KAL", "KAN", "KAU", "KAS", "KAZ", "KIK", "KIN", "KIR", "KOM", "KON", "KUA", "KUR", "LAO", "LAT", "LAV", "LIM", "LIN", "LIT", "LUB", "LTZ", "MKD", "MLG", "MSA", "MAL", "MLT", "GLV", "MRI", "MAR", "MAH", "MON", "NAU", "NAV", "NDE", "NBL", "NDO", "NEP", "SME", "NOR", "NOB", "NNO", "OCI", "OJI", "ORI", "ORM", "OSS", "PLI", "FAS", "POL", "PUS", "QUE", "QAA", "RON", "ROH", "RUN", "SMO", "SAG", "SAN", "SRD", "SRB", "SNA", "III", "SND", "SIN", "SLK", "SLV", "SOM", "SOT", "SUN", "SWA", "SSW", "SWE", "TGL", "TAH", "TGK", "TAM", "TAT", "TEL", "THA", "BOD", "TIR", "TON", "TSO", "TSN", "TUR", "TUK", "TWI", "UIG", "UKR", "UZB", "VEN", "VOL", "WLN", "CYM", "FRY", "WOL", "XHO", "YID", "YOR", "ZHA", "ZUL", "ORJ", "QPC", "TNG", "SRP"
|
|
@@ -1807,7 +1826,7 @@ module Aws::MediaConvert
|
|
|
1807
1826
|
# resp.preset.settings.container_settings.cmfc_settings.klv_metadata #=> String, one of "PASSTHROUGH", "NONE"
|
|
1808
1827
|
# resp.preset.settings.container_settings.cmfc_settings.manifest_metadata_signaling #=> String, one of "ENABLED", "DISABLED"
|
|
1809
1828
|
# resp.preset.settings.container_settings.cmfc_settings.scte_35_esam #=> String, one of "INSERT", "NONE"
|
|
1810
|
-
# resp.preset.settings.container_settings.cmfc_settings.scte_35_source #=> String, one of "PASSTHROUGH", "NONE"
|
|
1829
|
+
# resp.preset.settings.container_settings.cmfc_settings.scte_35_source #=> String, one of "PASSTHROUGH", "NONE", "MANIFEST_CUES"
|
|
1811
1830
|
# resp.preset.settings.container_settings.cmfc_settings.signing_kms_key #=> String
|
|
1812
1831
|
# resp.preset.settings.container_settings.cmfc_settings.timed_metadata #=> String, one of "PASSTHROUGH", "NONE"
|
|
1813
1832
|
# resp.preset.settings.container_settings.cmfc_settings.timed_metadata_box_version #=> String, one of "VERSION_0", "VERSION_1"
|
|
@@ -1858,7 +1877,7 @@ module Aws::MediaConvert
|
|
|
1858
1877
|
# resp.preset.settings.container_settings.m2ts_settings.rate_mode #=> String, one of "VBR", "CBR"
|
|
1859
1878
|
# resp.preset.settings.container_settings.m2ts_settings.scte_35_esam.scte_35_esam_pid #=> Integer
|
|
1860
1879
|
# resp.preset.settings.container_settings.m2ts_settings.scte_35_pid #=> Integer
|
|
1861
|
-
# resp.preset.settings.container_settings.m2ts_settings.scte_35_source #=> String, one of "PASSTHROUGH", "NONE"
|
|
1880
|
+
# resp.preset.settings.container_settings.m2ts_settings.scte_35_source #=> String, one of "PASSTHROUGH", "NONE", "MANIFEST_CUES"
|
|
1862
1881
|
# resp.preset.settings.container_settings.m2ts_settings.segmentation_markers #=> String, one of "NONE", "RAI_SEGSTART", "RAI_ADAPT", "PSI_SEGSTART", "EBP", "EBP_LEGACY"
|
|
1863
1882
|
# resp.preset.settings.container_settings.m2ts_settings.segmentation_style #=> String, one of "MAINTAIN_CADENCE", "RESET_CADENCE"
|
|
1864
1883
|
# resp.preset.settings.container_settings.m2ts_settings.segmentation_time #=> Float
|
|
@@ -1883,7 +1902,7 @@ module Aws::MediaConvert
|
|
|
1883
1902
|
# resp.preset.settings.container_settings.m3u_8_settings.pts_offset #=> Integer
|
|
1884
1903
|
# resp.preset.settings.container_settings.m3u_8_settings.pts_offset_mode #=> String, one of "AUTO", "SECONDS", "MILLISECONDS"
|
|
1885
1904
|
# resp.preset.settings.container_settings.m3u_8_settings.scte_35_pid #=> Integer
|
|
1886
|
-
# resp.preset.settings.container_settings.m3u_8_settings.scte_35_source #=> String, one of "PASSTHROUGH", "NONE"
|
|
1905
|
+
# resp.preset.settings.container_settings.m3u_8_settings.scte_35_source #=> String, one of "PASSTHROUGH", "NONE", "MANIFEST_CUES"
|
|
1887
1906
|
# resp.preset.settings.container_settings.m3u_8_settings.timed_metadata #=> String, one of "PASSTHROUGH", "NONE"
|
|
1888
1907
|
# resp.preset.settings.container_settings.m3u_8_settings.timed_metadata_pid #=> Integer
|
|
1889
1908
|
# resp.preset.settings.container_settings.m3u_8_settings.transport_stream_id #=> Integer
|
|
@@ -1911,7 +1930,7 @@ module Aws::MediaConvert
|
|
|
1911
1930
|
# resp.preset.settings.container_settings.mpd_settings.klv_metadata #=> String, one of "NONE", "PASSTHROUGH"
|
|
1912
1931
|
# resp.preset.settings.container_settings.mpd_settings.manifest_metadata_signaling #=> String, one of "ENABLED", "DISABLED"
|
|
1913
1932
|
# resp.preset.settings.container_settings.mpd_settings.scte_35_esam #=> String, one of "INSERT", "NONE"
|
|
1914
|
-
# resp.preset.settings.container_settings.mpd_settings.scte_35_source #=> String, one of "PASSTHROUGH", "NONE"
|
|
1933
|
+
# resp.preset.settings.container_settings.mpd_settings.scte_35_source #=> String, one of "PASSTHROUGH", "NONE", "MANIFEST_CUES"
|
|
1915
1934
|
# resp.preset.settings.container_settings.mpd_settings.signing_kms_key #=> String
|
|
1916
1935
|
# resp.preset.settings.container_settings.mpd_settings.timed_metadata #=> String, one of "PASSTHROUGH", "NONE"
|
|
1917
1936
|
# resp.preset.settings.container_settings.mpd_settings.timed_metadata_box_version #=> String, one of "VERSION_0", "VERSION_1"
|
|
@@ -2188,6 +2207,7 @@ module Aws::MediaConvert
|
|
|
2188
2207
|
# resp.preset.settings.video_description.codec_settings.xavc_settings.xavc_4k_profile_settings.hrd_buffer_size #=> Integer
|
|
2189
2208
|
# resp.preset.settings.video_description.codec_settings.xavc_settings.xavc_4k_profile_settings.quality_tuning_level #=> String, one of "SINGLE_PASS", "SINGLE_PASS_HQ", "MULTI_PASS_HQ"
|
|
2190
2209
|
# resp.preset.settings.video_description.codec_settings.xavc_settings.xavc_4k_profile_settings.slices #=> Integer
|
|
2210
|
+
# resp.preset.settings.video_description.codec_settings.xavc_settings.xavc_hd_intra_cbg_profile_settings.interlace_mode #=> String, one of "PROGRESSIVE", "TOP_FIELD", "BOTTOM_FIELD", "FOLLOW_TOP_FIELD", "FOLLOW_BOTTOM_FIELD"
|
|
2191
2211
|
# resp.preset.settings.video_description.codec_settings.xavc_settings.xavc_hd_intra_cbg_profile_settings.xavc_class #=> String, one of "CLASS_50", "CLASS_100", "CLASS_200"
|
|
2192
2212
|
# resp.preset.settings.video_description.codec_settings.xavc_settings.xavc_hd_profile_settings.bitrate_class #=> String, one of "BITRATE_CLASS_25", "BITRATE_CLASS_35", "BITRATE_CLASS_50"
|
|
2193
2213
|
# resp.preset.settings.video_description.codec_settings.xavc_settings.xavc_hd_profile_settings.flicker_adaptive_quantization #=> String, one of "DISABLED", "ENABLED"
|
|
@@ -2716,6 +2736,7 @@ module Aws::MediaConvert
|
|
|
2716
2736
|
# resp.preset.settings.audio_descriptions[0].codec_settings.aac_settings.codec_profile #=> String, one of "LC", "HEV1", "HEV2", "XHE"
|
|
2717
2737
|
# 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", "CODING_MODE_AUTO"
|
|
2718
2738
|
# resp.preset.settings.audio_descriptions[0].codec_settings.aac_settings.loudness_measurement_mode #=> String, one of "PROGRAM", "ANCHOR"
|
|
2739
|
+
# resp.preset.settings.audio_descriptions[0].codec_settings.aac_settings.passthrough_control #=> String, one of "WHEN_POSSIBLE", "NO_PASSTHROUGH"
|
|
2719
2740
|
# resp.preset.settings.audio_descriptions[0].codec_settings.aac_settings.rap_interval #=> Integer
|
|
2720
2741
|
# resp.preset.settings.audio_descriptions[0].codec_settings.aac_settings.rate_control_mode #=> String, one of "CBR", "VBR"
|
|
2721
2742
|
# resp.preset.settings.audio_descriptions[0].codec_settings.aac_settings.raw_format #=> String, one of "LATM_LOAS", "NONE"
|
|
@@ -2892,7 +2913,15 @@ module Aws::MediaConvert
|
|
|
2892
2913
|
# resp.preset.settings.caption_descriptions[0].destination_settings.teletext_destination_settings.page_number #=> String
|
|
2893
2914
|
# resp.preset.settings.caption_descriptions[0].destination_settings.teletext_destination_settings.page_types #=> Array
|
|
2894
2915
|
# resp.preset.settings.caption_descriptions[0].destination_settings.teletext_destination_settings.page_types[0] #=> String, one of "PAGE_TYPE_INITIAL", "PAGE_TYPE_SUBTITLE", "PAGE_TYPE_ADDL_INFO", "PAGE_TYPE_PROGRAM_SCHEDULE", "PAGE_TYPE_HEARING_IMPAIRED_SUBTITLE"
|
|
2916
|
+
# resp.preset.settings.caption_descriptions[0].destination_settings.ttml_destination_settings.background_color #=> String, one of "NONE", "BLACK", "WHITE", "AUTO"
|
|
2917
|
+
# resp.preset.settings.caption_descriptions[0].destination_settings.ttml_destination_settings.background_opacity #=> Integer
|
|
2918
|
+
# resp.preset.settings.caption_descriptions[0].destination_settings.ttml_destination_settings.font_color #=> String, one of "WHITE", "BLACK", "YELLOW", "RED", "GREEN", "BLUE", "AUTO"
|
|
2919
|
+
# resp.preset.settings.caption_descriptions[0].destination_settings.ttml_destination_settings.font_opacity #=> Integer
|
|
2920
|
+
# resp.preset.settings.caption_descriptions[0].destination_settings.ttml_destination_settings.font_size #=> Integer
|
|
2921
|
+
# resp.preset.settings.caption_descriptions[0].destination_settings.ttml_destination_settings.font_style #=> String, one of "NORMAL", "ITALIC"
|
|
2922
|
+
# resp.preset.settings.caption_descriptions[0].destination_settings.ttml_destination_settings.font_weight #=> String, one of "NORMAL", "BOLD"
|
|
2895
2923
|
# resp.preset.settings.caption_descriptions[0].destination_settings.ttml_destination_settings.style_passthrough #=> String, one of "ENABLED", "DISABLED"
|
|
2924
|
+
# resp.preset.settings.caption_descriptions[0].destination_settings.ttml_destination_settings.text_decoration #=> String, one of "NONE", "UNDERLINE"
|
|
2896
2925
|
# resp.preset.settings.caption_descriptions[0].destination_settings.webvtt_destination_settings.accessibility #=> String, one of "DISABLED", "ENABLED"
|
|
2897
2926
|
# resp.preset.settings.caption_descriptions[0].destination_settings.webvtt_destination_settings.style_passthrough #=> String, one of "ENABLED", "DISABLED", "STRICT", "MERGE"
|
|
2898
2927
|
# resp.preset.settings.caption_descriptions[0].language_code #=> String, one of "ENG", "SPA", "FRA", "DEU", "GER", "ZHO", "ARA", "HIN", "JPN", "RUS", "POR", "ITA", "URD", "VIE", "KOR", "PAN", "ABK", "AAR", "AFR", "AKA", "SQI", "AMH", "ARG", "HYE", "ASM", "AVA", "AVE", "AYM", "AZE", "BAM", "BAK", "EUS", "BEL", "BEN", "BIH", "BIS", "BOS", "BRE", "BUL", "MYA", "CAT", "KHM", "CHA", "CHE", "NYA", "CHU", "CHV", "COR", "COS", "CRE", "HRV", "CES", "DAN", "DIV", "NLD", "DZO", "ENM", "EPO", "EST", "EWE", "FAO", "FIJ", "FIN", "FRM", "FUL", "GLA", "GLG", "LUG", "KAT", "ELL", "GRN", "GUJ", "HAT", "HAU", "HEB", "HER", "HMO", "HUN", "ISL", "IDO", "IBO", "IND", "INA", "ILE", "IKU", "IPK", "GLE", "JAV", "KAL", "KAN", "KAU", "KAS", "KAZ", "KIK", "KIN", "KIR", "KOM", "KON", "KUA", "KUR", "LAO", "LAT", "LAV", "LIM", "LIN", "LIT", "LUB", "LTZ", "MKD", "MLG", "MSA", "MAL", "MLT", "GLV", "MRI", "MAR", "MAH", "MON", "NAU", "NAV", "NDE", "NBL", "NDO", "NEP", "SME", "NOR", "NOB", "NNO", "OCI", "OJI", "ORI", "ORM", "OSS", "PLI", "FAS", "POL", "PUS", "QUE", "QAA", "RON", "ROH", "RUN", "SMO", "SAG", "SAN", "SRD", "SRB", "SNA", "III", "SND", "SIN", "SLK", "SLV", "SOM", "SOT", "SUN", "SWA", "SSW", "SWE", "TGL", "TAH", "TGK", "TAM", "TAT", "TEL", "THA", "BOD", "TIR", "TON", "TSO", "TSN", "TUR", "TUK", "TWI", "UIG", "UKR", "UZB", "VEN", "VOL", "WLN", "CYM", "FRY", "WOL", "XHO", "YID", "YOR", "ZHA", "ZUL", "ORJ", "QPC", "TNG", "SRP"
|
|
@@ -2908,7 +2937,7 @@ module Aws::MediaConvert
|
|
|
2908
2937
|
# resp.preset.settings.container_settings.cmfc_settings.klv_metadata #=> String, one of "PASSTHROUGH", "NONE"
|
|
2909
2938
|
# resp.preset.settings.container_settings.cmfc_settings.manifest_metadata_signaling #=> String, one of "ENABLED", "DISABLED"
|
|
2910
2939
|
# resp.preset.settings.container_settings.cmfc_settings.scte_35_esam #=> String, one of "INSERT", "NONE"
|
|
2911
|
-
# resp.preset.settings.container_settings.cmfc_settings.scte_35_source #=> String, one of "PASSTHROUGH", "NONE"
|
|
2940
|
+
# resp.preset.settings.container_settings.cmfc_settings.scte_35_source #=> String, one of "PASSTHROUGH", "NONE", "MANIFEST_CUES"
|
|
2912
2941
|
# resp.preset.settings.container_settings.cmfc_settings.signing_kms_key #=> String
|
|
2913
2942
|
# resp.preset.settings.container_settings.cmfc_settings.timed_metadata #=> String, one of "PASSTHROUGH", "NONE"
|
|
2914
2943
|
# resp.preset.settings.container_settings.cmfc_settings.timed_metadata_box_version #=> String, one of "VERSION_0", "VERSION_1"
|
|
@@ -2959,7 +2988,7 @@ module Aws::MediaConvert
|
|
|
2959
2988
|
# resp.preset.settings.container_settings.m2ts_settings.rate_mode #=> String, one of "VBR", "CBR"
|
|
2960
2989
|
# resp.preset.settings.container_settings.m2ts_settings.scte_35_esam.scte_35_esam_pid #=> Integer
|
|
2961
2990
|
# resp.preset.settings.container_settings.m2ts_settings.scte_35_pid #=> Integer
|
|
2962
|
-
# resp.preset.settings.container_settings.m2ts_settings.scte_35_source #=> String, one of "PASSTHROUGH", "NONE"
|
|
2991
|
+
# resp.preset.settings.container_settings.m2ts_settings.scte_35_source #=> String, one of "PASSTHROUGH", "NONE", "MANIFEST_CUES"
|
|
2963
2992
|
# resp.preset.settings.container_settings.m2ts_settings.segmentation_markers #=> String, one of "NONE", "RAI_SEGSTART", "RAI_ADAPT", "PSI_SEGSTART", "EBP", "EBP_LEGACY"
|
|
2964
2993
|
# resp.preset.settings.container_settings.m2ts_settings.segmentation_style #=> String, one of "MAINTAIN_CADENCE", "RESET_CADENCE"
|
|
2965
2994
|
# resp.preset.settings.container_settings.m2ts_settings.segmentation_time #=> Float
|
|
@@ -2984,7 +3013,7 @@ module Aws::MediaConvert
|
|
|
2984
3013
|
# resp.preset.settings.container_settings.m3u_8_settings.pts_offset #=> Integer
|
|
2985
3014
|
# resp.preset.settings.container_settings.m3u_8_settings.pts_offset_mode #=> String, one of "AUTO", "SECONDS", "MILLISECONDS"
|
|
2986
3015
|
# resp.preset.settings.container_settings.m3u_8_settings.scte_35_pid #=> Integer
|
|
2987
|
-
# resp.preset.settings.container_settings.m3u_8_settings.scte_35_source #=> String, one of "PASSTHROUGH", "NONE"
|
|
3016
|
+
# resp.preset.settings.container_settings.m3u_8_settings.scte_35_source #=> String, one of "PASSTHROUGH", "NONE", "MANIFEST_CUES"
|
|
2988
3017
|
# resp.preset.settings.container_settings.m3u_8_settings.timed_metadata #=> String, one of "PASSTHROUGH", "NONE"
|
|
2989
3018
|
# resp.preset.settings.container_settings.m3u_8_settings.timed_metadata_pid #=> Integer
|
|
2990
3019
|
# resp.preset.settings.container_settings.m3u_8_settings.transport_stream_id #=> Integer
|
|
@@ -3012,7 +3041,7 @@ module Aws::MediaConvert
|
|
|
3012
3041
|
# resp.preset.settings.container_settings.mpd_settings.klv_metadata #=> String, one of "NONE", "PASSTHROUGH"
|
|
3013
3042
|
# resp.preset.settings.container_settings.mpd_settings.manifest_metadata_signaling #=> String, one of "ENABLED", "DISABLED"
|
|
3014
3043
|
# resp.preset.settings.container_settings.mpd_settings.scte_35_esam #=> String, one of "INSERT", "NONE"
|
|
3015
|
-
# resp.preset.settings.container_settings.mpd_settings.scte_35_source #=> String, one of "PASSTHROUGH", "NONE"
|
|
3044
|
+
# resp.preset.settings.container_settings.mpd_settings.scte_35_source #=> String, one of "PASSTHROUGH", "NONE", "MANIFEST_CUES"
|
|
3016
3045
|
# resp.preset.settings.container_settings.mpd_settings.signing_kms_key #=> String
|
|
3017
3046
|
# resp.preset.settings.container_settings.mpd_settings.timed_metadata #=> String, one of "PASSTHROUGH", "NONE"
|
|
3018
3047
|
# resp.preset.settings.container_settings.mpd_settings.timed_metadata_box_version #=> String, one of "VERSION_0", "VERSION_1"
|
|
@@ -3289,6 +3318,7 @@ module Aws::MediaConvert
|
|
|
3289
3318
|
# resp.preset.settings.video_description.codec_settings.xavc_settings.xavc_4k_profile_settings.hrd_buffer_size #=> Integer
|
|
3290
3319
|
# resp.preset.settings.video_description.codec_settings.xavc_settings.xavc_4k_profile_settings.quality_tuning_level #=> String, one of "SINGLE_PASS", "SINGLE_PASS_HQ", "MULTI_PASS_HQ"
|
|
3291
3320
|
# resp.preset.settings.video_description.codec_settings.xavc_settings.xavc_4k_profile_settings.slices #=> Integer
|
|
3321
|
+
# resp.preset.settings.video_description.codec_settings.xavc_settings.xavc_hd_intra_cbg_profile_settings.interlace_mode #=> String, one of "PROGRESSIVE", "TOP_FIELD", "BOTTOM_FIELD", "FOLLOW_TOP_FIELD", "FOLLOW_BOTTOM_FIELD"
|
|
3292
3322
|
# resp.preset.settings.video_description.codec_settings.xavc_settings.xavc_hd_intra_cbg_profile_settings.xavc_class #=> String, one of "CLASS_50", "CLASS_100", "CLASS_200"
|
|
3293
3323
|
# resp.preset.settings.video_description.codec_settings.xavc_settings.xavc_hd_profile_settings.bitrate_class #=> String, one of "BITRATE_CLASS_25", "BITRATE_CLASS_35", "BITRATE_CLASS_50"
|
|
3294
3324
|
# resp.preset.settings.video_description.codec_settings.xavc_settings.xavc_hd_profile_settings.flicker_adaptive_quantization #=> String, one of "DISABLED", "ENABLED"
|
|
@@ -3626,6 +3656,7 @@ module Aws::MediaConvert
|
|
|
3626
3656
|
# resp.presets[0].settings.audio_descriptions[0].codec_settings.aac_settings.codec_profile #=> String, one of "LC", "HEV1", "HEV2", "XHE"
|
|
3627
3657
|
# 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", "CODING_MODE_AUTO"
|
|
3628
3658
|
# resp.presets[0].settings.audio_descriptions[0].codec_settings.aac_settings.loudness_measurement_mode #=> String, one of "PROGRAM", "ANCHOR"
|
|
3659
|
+
# resp.presets[0].settings.audio_descriptions[0].codec_settings.aac_settings.passthrough_control #=> String, one of "WHEN_POSSIBLE", "NO_PASSTHROUGH"
|
|
3629
3660
|
# resp.presets[0].settings.audio_descriptions[0].codec_settings.aac_settings.rap_interval #=> Integer
|
|
3630
3661
|
# resp.presets[0].settings.audio_descriptions[0].codec_settings.aac_settings.rate_control_mode #=> String, one of "CBR", "VBR"
|
|
3631
3662
|
# resp.presets[0].settings.audio_descriptions[0].codec_settings.aac_settings.raw_format #=> String, one of "LATM_LOAS", "NONE"
|
|
@@ -3802,7 +3833,15 @@ module Aws::MediaConvert
|
|
|
3802
3833
|
# resp.presets[0].settings.caption_descriptions[0].destination_settings.teletext_destination_settings.page_number #=> String
|
|
3803
3834
|
# resp.presets[0].settings.caption_descriptions[0].destination_settings.teletext_destination_settings.page_types #=> Array
|
|
3804
3835
|
# resp.presets[0].settings.caption_descriptions[0].destination_settings.teletext_destination_settings.page_types[0] #=> String, one of "PAGE_TYPE_INITIAL", "PAGE_TYPE_SUBTITLE", "PAGE_TYPE_ADDL_INFO", "PAGE_TYPE_PROGRAM_SCHEDULE", "PAGE_TYPE_HEARING_IMPAIRED_SUBTITLE"
|
|
3836
|
+
# resp.presets[0].settings.caption_descriptions[0].destination_settings.ttml_destination_settings.background_color #=> String, one of "NONE", "BLACK", "WHITE", "AUTO"
|
|
3837
|
+
# resp.presets[0].settings.caption_descriptions[0].destination_settings.ttml_destination_settings.background_opacity #=> Integer
|
|
3838
|
+
# resp.presets[0].settings.caption_descriptions[0].destination_settings.ttml_destination_settings.font_color #=> String, one of "WHITE", "BLACK", "YELLOW", "RED", "GREEN", "BLUE", "AUTO"
|
|
3839
|
+
# resp.presets[0].settings.caption_descriptions[0].destination_settings.ttml_destination_settings.font_opacity #=> Integer
|
|
3840
|
+
# resp.presets[0].settings.caption_descriptions[0].destination_settings.ttml_destination_settings.font_size #=> Integer
|
|
3841
|
+
# resp.presets[0].settings.caption_descriptions[0].destination_settings.ttml_destination_settings.font_style #=> String, one of "NORMAL", "ITALIC"
|
|
3842
|
+
# resp.presets[0].settings.caption_descriptions[0].destination_settings.ttml_destination_settings.font_weight #=> String, one of "NORMAL", "BOLD"
|
|
3805
3843
|
# resp.presets[0].settings.caption_descriptions[0].destination_settings.ttml_destination_settings.style_passthrough #=> String, one of "ENABLED", "DISABLED"
|
|
3844
|
+
# resp.presets[0].settings.caption_descriptions[0].destination_settings.ttml_destination_settings.text_decoration #=> String, one of "NONE", "UNDERLINE"
|
|
3806
3845
|
# resp.presets[0].settings.caption_descriptions[0].destination_settings.webvtt_destination_settings.accessibility #=> String, one of "DISABLED", "ENABLED"
|
|
3807
3846
|
# resp.presets[0].settings.caption_descriptions[0].destination_settings.webvtt_destination_settings.style_passthrough #=> String, one of "ENABLED", "DISABLED", "STRICT", "MERGE"
|
|
3808
3847
|
# resp.presets[0].settings.caption_descriptions[0].language_code #=> String, one of "ENG", "SPA", "FRA", "DEU", "GER", "ZHO", "ARA", "HIN", "JPN", "RUS", "POR", "ITA", "URD", "VIE", "KOR", "PAN", "ABK", "AAR", "AFR", "AKA", "SQI", "AMH", "ARG", "HYE", "ASM", "AVA", "AVE", "AYM", "AZE", "BAM", "BAK", "EUS", "BEL", "BEN", "BIH", "BIS", "BOS", "BRE", "BUL", "MYA", "CAT", "KHM", "CHA", "CHE", "NYA", "CHU", "CHV", "COR", "COS", "CRE", "HRV", "CES", "DAN", "DIV", "NLD", "DZO", "ENM", "EPO", "EST", "EWE", "FAO", "FIJ", "FIN", "FRM", "FUL", "GLA", "GLG", "LUG", "KAT", "ELL", "GRN", "GUJ", "HAT", "HAU", "HEB", "HER", "HMO", "HUN", "ISL", "IDO", "IBO", "IND", "INA", "ILE", "IKU", "IPK", "GLE", "JAV", "KAL", "KAN", "KAU", "KAS", "KAZ", "KIK", "KIN", "KIR", "KOM", "KON", "KUA", "KUR", "LAO", "LAT", "LAV", "LIM", "LIN", "LIT", "LUB", "LTZ", "MKD", "MLG", "MSA", "MAL", "MLT", "GLV", "MRI", "MAR", "MAH", "MON", "NAU", "NAV", "NDE", "NBL", "NDO", "NEP", "SME", "NOR", "NOB", "NNO", "OCI", "OJI", "ORI", "ORM", "OSS", "PLI", "FAS", "POL", "PUS", "QUE", "QAA", "RON", "ROH", "RUN", "SMO", "SAG", "SAN", "SRD", "SRB", "SNA", "III", "SND", "SIN", "SLK", "SLV", "SOM", "SOT", "SUN", "SWA", "SSW", "SWE", "TGL", "TAH", "TGK", "TAM", "TAT", "TEL", "THA", "BOD", "TIR", "TON", "TSO", "TSN", "TUR", "TUK", "TWI", "UIG", "UKR", "UZB", "VEN", "VOL", "WLN", "CYM", "FRY", "WOL", "XHO", "YID", "YOR", "ZHA", "ZUL", "ORJ", "QPC", "TNG", "SRP"
|
|
@@ -3818,7 +3857,7 @@ module Aws::MediaConvert
|
|
|
3818
3857
|
# resp.presets[0].settings.container_settings.cmfc_settings.klv_metadata #=> String, one of "PASSTHROUGH", "NONE"
|
|
3819
3858
|
# resp.presets[0].settings.container_settings.cmfc_settings.manifest_metadata_signaling #=> String, one of "ENABLED", "DISABLED"
|
|
3820
3859
|
# resp.presets[0].settings.container_settings.cmfc_settings.scte_35_esam #=> String, one of "INSERT", "NONE"
|
|
3821
|
-
# resp.presets[0].settings.container_settings.cmfc_settings.scte_35_source #=> String, one of "PASSTHROUGH", "NONE"
|
|
3860
|
+
# resp.presets[0].settings.container_settings.cmfc_settings.scte_35_source #=> String, one of "PASSTHROUGH", "NONE", "MANIFEST_CUES"
|
|
3822
3861
|
# resp.presets[0].settings.container_settings.cmfc_settings.signing_kms_key #=> String
|
|
3823
3862
|
# resp.presets[0].settings.container_settings.cmfc_settings.timed_metadata #=> String, one of "PASSTHROUGH", "NONE"
|
|
3824
3863
|
# resp.presets[0].settings.container_settings.cmfc_settings.timed_metadata_box_version #=> String, one of "VERSION_0", "VERSION_1"
|
|
@@ -3869,7 +3908,7 @@ module Aws::MediaConvert
|
|
|
3869
3908
|
# resp.presets[0].settings.container_settings.m2ts_settings.rate_mode #=> String, one of "VBR", "CBR"
|
|
3870
3909
|
# resp.presets[0].settings.container_settings.m2ts_settings.scte_35_esam.scte_35_esam_pid #=> Integer
|
|
3871
3910
|
# resp.presets[0].settings.container_settings.m2ts_settings.scte_35_pid #=> Integer
|
|
3872
|
-
# resp.presets[0].settings.container_settings.m2ts_settings.scte_35_source #=> String, one of "PASSTHROUGH", "NONE"
|
|
3911
|
+
# resp.presets[0].settings.container_settings.m2ts_settings.scte_35_source #=> String, one of "PASSTHROUGH", "NONE", "MANIFEST_CUES"
|
|
3873
3912
|
# resp.presets[0].settings.container_settings.m2ts_settings.segmentation_markers #=> String, one of "NONE", "RAI_SEGSTART", "RAI_ADAPT", "PSI_SEGSTART", "EBP", "EBP_LEGACY"
|
|
3874
3913
|
# resp.presets[0].settings.container_settings.m2ts_settings.segmentation_style #=> String, one of "MAINTAIN_CADENCE", "RESET_CADENCE"
|
|
3875
3914
|
# resp.presets[0].settings.container_settings.m2ts_settings.segmentation_time #=> Float
|
|
@@ -3894,7 +3933,7 @@ module Aws::MediaConvert
|
|
|
3894
3933
|
# resp.presets[0].settings.container_settings.m3u_8_settings.pts_offset #=> Integer
|
|
3895
3934
|
# resp.presets[0].settings.container_settings.m3u_8_settings.pts_offset_mode #=> String, one of "AUTO", "SECONDS", "MILLISECONDS"
|
|
3896
3935
|
# resp.presets[0].settings.container_settings.m3u_8_settings.scte_35_pid #=> Integer
|
|
3897
|
-
# resp.presets[0].settings.container_settings.m3u_8_settings.scte_35_source #=> String, one of "PASSTHROUGH", "NONE"
|
|
3936
|
+
# resp.presets[0].settings.container_settings.m3u_8_settings.scte_35_source #=> String, one of "PASSTHROUGH", "NONE", "MANIFEST_CUES"
|
|
3898
3937
|
# resp.presets[0].settings.container_settings.m3u_8_settings.timed_metadata #=> String, one of "PASSTHROUGH", "NONE"
|
|
3899
3938
|
# resp.presets[0].settings.container_settings.m3u_8_settings.timed_metadata_pid #=> Integer
|
|
3900
3939
|
# resp.presets[0].settings.container_settings.m3u_8_settings.transport_stream_id #=> Integer
|
|
@@ -3922,7 +3961,7 @@ module Aws::MediaConvert
|
|
|
3922
3961
|
# resp.presets[0].settings.container_settings.mpd_settings.klv_metadata #=> String, one of "NONE", "PASSTHROUGH"
|
|
3923
3962
|
# resp.presets[0].settings.container_settings.mpd_settings.manifest_metadata_signaling #=> String, one of "ENABLED", "DISABLED"
|
|
3924
3963
|
# resp.presets[0].settings.container_settings.mpd_settings.scte_35_esam #=> String, one of "INSERT", "NONE"
|
|
3925
|
-
# resp.presets[0].settings.container_settings.mpd_settings.scte_35_source #=> String, one of "PASSTHROUGH", "NONE"
|
|
3964
|
+
# resp.presets[0].settings.container_settings.mpd_settings.scte_35_source #=> String, one of "PASSTHROUGH", "NONE", "MANIFEST_CUES"
|
|
3926
3965
|
# resp.presets[0].settings.container_settings.mpd_settings.signing_kms_key #=> String
|
|
3927
3966
|
# resp.presets[0].settings.container_settings.mpd_settings.timed_metadata #=> String, one of "PASSTHROUGH", "NONE"
|
|
3928
3967
|
# resp.presets[0].settings.container_settings.mpd_settings.timed_metadata_box_version #=> String, one of "VERSION_0", "VERSION_1"
|
|
@@ -4199,6 +4238,7 @@ module Aws::MediaConvert
|
|
|
4199
4238
|
# resp.presets[0].settings.video_description.codec_settings.xavc_settings.xavc_4k_profile_settings.hrd_buffer_size #=> Integer
|
|
4200
4239
|
# resp.presets[0].settings.video_description.codec_settings.xavc_settings.xavc_4k_profile_settings.quality_tuning_level #=> String, one of "SINGLE_PASS", "SINGLE_PASS_HQ", "MULTI_PASS_HQ"
|
|
4201
4240
|
# resp.presets[0].settings.video_description.codec_settings.xavc_settings.xavc_4k_profile_settings.slices #=> Integer
|
|
4241
|
+
# resp.presets[0].settings.video_description.codec_settings.xavc_settings.xavc_hd_intra_cbg_profile_settings.interlace_mode #=> String, one of "PROGRESSIVE", "TOP_FIELD", "BOTTOM_FIELD", "FOLLOW_TOP_FIELD", "FOLLOW_BOTTOM_FIELD"
|
|
4202
4242
|
# resp.presets[0].settings.video_description.codec_settings.xavc_settings.xavc_hd_intra_cbg_profile_settings.xavc_class #=> String, one of "CLASS_50", "CLASS_100", "CLASS_200"
|
|
4203
4243
|
# resp.presets[0].settings.video_description.codec_settings.xavc_settings.xavc_hd_profile_settings.bitrate_class #=> String, one of "BITRATE_CLASS_25", "BITRATE_CLASS_35", "BITRATE_CLASS_50"
|
|
4204
4244
|
# resp.presets[0].settings.video_description.codec_settings.xavc_settings.xavc_hd_profile_settings.flicker_adaptive_quantization #=> String, one of "DISABLED", "ENABLED"
|
|
@@ -4486,18 +4526,19 @@ module Aws::MediaConvert
|
|
|
4486
4526
|
# resp.probe_results #=> Array
|
|
4487
4527
|
# resp.probe_results[0].container.bit_rate #=> Integer
|
|
4488
4528
|
# resp.probe_results[0].container.duration #=> Float
|
|
4489
|
-
# resp.probe_results[0].container.format #=> String, one of "mp4", "quicktime", "matroska", "webm", "mxf", "wave", "avi", "mpegts", "mpegps", "mp3"
|
|
4529
|
+
# resp.probe_results[0].container.format #=> String, one of "mp4", "quicktime", "matroska", "webm", "mxf", "wave", "avi", "mpegts", "mpegps", "mp3", "flac", "asf", "ogg"
|
|
4490
4530
|
# resp.probe_results[0].container.start_timecode #=> String
|
|
4491
4531
|
# resp.probe_results[0].container.tracks #=> Array
|
|
4492
4532
|
# resp.probe_results[0].container.tracks[0].audio_properties.bit_depth #=> Integer
|
|
4493
4533
|
# resp.probe_results[0].container.tracks[0].audio_properties.bit_rate #=> Integer
|
|
4534
|
+
# resp.probe_results[0].container.tracks[0].audio_properties.channel_layout #=> String
|
|
4494
4535
|
# resp.probe_results[0].container.tracks[0].audio_properties.channels #=> Integer
|
|
4495
4536
|
# resp.probe_results[0].container.tracks[0].audio_properties.frame_rate.denominator #=> Integer
|
|
4496
4537
|
# resp.probe_results[0].container.tracks[0].audio_properties.frame_rate.numerator #=> Integer
|
|
4497
4538
|
# resp.probe_results[0].container.tracks[0].audio_properties.language_code #=> String
|
|
4498
4539
|
# resp.probe_results[0].container.tracks[0].audio_properties.object_count #=> Integer
|
|
4499
4540
|
# resp.probe_results[0].container.tracks[0].audio_properties.sample_rate #=> Integer
|
|
4500
|
-
# resp.probe_results[0].container.tracks[0].codec #=> String, one of "UNKNOWN", "AAC", "AC3", "EAC3", "FLAC", "MP2", "MP3", "OPUS", "PCM", "VORBIS", "AV1", "AVC", "HEVC", "JPEG2000", "MJPEG", "MPEG1", "MP4V", "MPEG2", "PRORES", "QTRLE", "THEORA", "UNCOMPRESSED", "VFW", "VP8", "VP9", "C608", "C708", "WEBVTT"
|
|
4541
|
+
# resp.probe_results[0].container.tracks[0].codec #=> String, one of "UNKNOWN", "AAC", "AC3", "AMR", "EAC3", "FLAC", "MP2", "MP3", "OPUS", "PCM", "VORBIS", "WMA", "WMA2", "WMAPRO", "AV1", "AVC", "DV", "H263", "HEVC", "JPEG2000", "MJPEG", "MPEG1", "MP4V", "MPEG2", "PRORES", "QTRLE", "THEORA", "UNCOMPRESSED", "VC1", "VC3", "VFW", "VP8", "VP9", "C608", "C708", "WEBVTT"
|
|
4501
4542
|
# resp.probe_results[0].container.tracks[0].data_properties.language_code #=> String
|
|
4502
4543
|
# resp.probe_results[0].container.tracks[0].duration #=> Float
|
|
4503
4544
|
# resp.probe_results[0].container.tracks[0].index #=> Integer
|
|
@@ -4512,6 +4553,7 @@ module Aws::MediaConvert
|
|
|
4512
4553
|
# resp.probe_results[0].container.tracks[0].video_properties.codec_metadata.content_light_level.max_content_light_level #=> Integer
|
|
4513
4554
|
# resp.probe_results[0].container.tracks[0].video_properties.codec_metadata.content_light_level.max_frame_average_light_level #=> Integer
|
|
4514
4555
|
# resp.probe_results[0].container.tracks[0].video_properties.codec_metadata.field_order #=> String
|
|
4556
|
+
# resp.probe_results[0].container.tracks[0].video_properties.codec_metadata.hdr_10_plus_presence #=> String, one of "PRESENT"
|
|
4515
4557
|
# resp.probe_results[0].container.tracks[0].video_properties.codec_metadata.height #=> Integer
|
|
4516
4558
|
# resp.probe_results[0].container.tracks[0].video_properties.codec_metadata.level #=> String
|
|
4517
4559
|
# resp.probe_results[0].container.tracks[0].video_properties.codec_metadata.matrix_coefficients #=> String, one of "RGB", "ITU_709", "UNSPECIFIED", "RESERVED", "FCC", "ITU_470BG", "SMPTE_170M", "SMPTE_240M", "YCgCo", "ITU_2020_NCL", "ITU_2020_CL", "SMPTE_2085", "CD_NCL", "CD_CL", "ITU_2100ICtCp", "IPT", "EBU3213", "LAST"
|
|
@@ -4521,6 +4563,8 @@ module Aws::MediaConvert
|
|
|
4521
4563
|
# resp.probe_results[0].container.tracks[0].video_properties.codec_metadata.transfer_characteristics #=> String, one of "ITU_709", "UNSPECIFIED", "RESERVED", "ITU_470M", "ITU_470BG", "SMPTE_170M", "SMPTE_240M", "LINEAR", "LOG10_2", "LOC10_2_5", "IEC_61966_2_4", "ITU_1361", "IEC_61966_2_1", "ITU_2020_10bit", "ITU_2020_12bit", "SMPTE_2084", "SMPTE_428_1", "ARIB_B67", "LAST"
|
|
4522
4564
|
# resp.probe_results[0].container.tracks[0].video_properties.codec_metadata.width #=> Integer
|
|
4523
4565
|
# resp.probe_results[0].container.tracks[0].video_properties.color_primaries #=> String, one of "ITU_709", "UNSPECIFIED", "RESERVED", "ITU_470M", "ITU_470BG", "SMPTE_170M", "SMPTE_240M", "GENERIC_FILM", "ITU_2020", "SMPTE_428_1", "SMPTE_431_2", "SMPTE_EG_432_1", "IPT", "SMPTE_2067XYZ", "EBU_3213_E", "LAST"
|
|
4566
|
+
# resp.probe_results[0].container.tracks[0].video_properties.display_aspect_ratio.denominator #=> Integer
|
|
4567
|
+
# resp.probe_results[0].container.tracks[0].video_properties.display_aspect_ratio.numerator #=> Integer
|
|
4524
4568
|
# resp.probe_results[0].container.tracks[0].video_properties.frame_rate.denominator #=> Integer
|
|
4525
4569
|
# resp.probe_results[0].container.tracks[0].video_properties.frame_rate.numerator #=> Integer
|
|
4526
4570
|
# resp.probe_results[0].container.tracks[0].video_properties.hdr_metadata.content_light_level.max_content_light_level #=> Integer
|
|
@@ -4538,6 +4582,8 @@ module Aws::MediaConvert
|
|
|
4538
4582
|
# resp.probe_results[0].container.tracks[0].video_properties.height #=> Integer
|
|
4539
4583
|
# resp.probe_results[0].container.tracks[0].video_properties.matrix_coefficients #=> String, one of "RGB", "ITU_709", "UNSPECIFIED", "RESERVED", "FCC", "ITU_470BG", "SMPTE_170M", "SMPTE_240M", "YCgCo", "ITU_2020_NCL", "ITU_2020_CL", "SMPTE_2085", "CD_NCL", "CD_CL", "ITU_2100ICtCp", "IPT", "EBU3213", "LAST"
|
|
4540
4584
|
# resp.probe_results[0].container.tracks[0].video_properties.rotation #=> Integer
|
|
4585
|
+
# resp.probe_results[0].container.tracks[0].video_properties.sample_aspect_ratio.denominator #=> Integer
|
|
4586
|
+
# resp.probe_results[0].container.tracks[0].video_properties.sample_aspect_ratio.numerator #=> Integer
|
|
4541
4587
|
# resp.probe_results[0].container.tracks[0].video_properties.transfer_characteristics #=> String, one of "ITU_709", "UNSPECIFIED", "RESERVED", "ITU_470M", "ITU_470BG", "SMPTE_170M", "SMPTE_240M", "LINEAR", "LOG10_2", "LOC10_2_5", "IEC_61966_2_4", "ITU_1361", "IEC_61966_2_1", "ITU_2020_10bit", "ITU_2020_12bit", "SMPTE_2084", "SMPTE_428_1", "ARIB_B67", "LAST"
|
|
4542
4588
|
# resp.probe_results[0].container.tracks[0].video_properties.width #=> Integer
|
|
4543
4589
|
# resp.probe_results[0].metadata.etag #=> String
|
|
@@ -4687,7 +4733,7 @@ module Aws::MediaConvert
|
|
|
4687
4733
|
# resp = client.start_jobs_query({
|
|
4688
4734
|
# filter_list: [
|
|
4689
4735
|
# {
|
|
4690
|
-
# key: "queue", # accepts queue, status, fileInput, jobEngineVersionRequested, jobEngineVersionUsed, audioCodec, videoCodec
|
|
4736
|
+
# key: "queue", # accepts queue, status, fileInput, jobEngineVersionRequested, jobEngineVersionUsed, audioCodec, videoCodec, errorCode
|
|
4691
4737
|
# values: ["__stringMax100"],
|
|
4692
4738
|
# },
|
|
4693
4739
|
# ],
|
|
@@ -4877,6 +4923,7 @@ module Aws::MediaConvert
|
|
|
4877
4923
|
# codec_profile: "LC", # accepts LC, HEV1, HEV2, XHE
|
|
4878
4924
|
# 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, CODING_MODE_AUTO
|
|
4879
4925
|
# loudness_measurement_mode: "PROGRAM", # accepts PROGRAM, ANCHOR
|
|
4926
|
+
# passthrough_control: "WHEN_POSSIBLE", # accepts WHEN_POSSIBLE, NO_PASSTHROUGH
|
|
4880
4927
|
# rap_interval: 1,
|
|
4881
4928
|
# rate_control_mode: "CBR", # accepts CBR, VBR
|
|
4882
4929
|
# raw_format: "LATM_LOAS", # accepts LATM_LOAS, NONE
|
|
@@ -5100,7 +5147,15 @@ module Aws::MediaConvert
|
|
|
5100
5147
|
# page_types: ["PAGE_TYPE_INITIAL"], # accepts PAGE_TYPE_INITIAL, PAGE_TYPE_SUBTITLE, PAGE_TYPE_ADDL_INFO, PAGE_TYPE_PROGRAM_SCHEDULE, PAGE_TYPE_HEARING_IMPAIRED_SUBTITLE
|
|
5101
5148
|
# },
|
|
5102
5149
|
# ttml_destination_settings: {
|
|
5150
|
+
# background_color: "NONE", # accepts NONE, BLACK, WHITE, AUTO
|
|
5151
|
+
# background_opacity: 1,
|
|
5152
|
+
# font_color: "WHITE", # accepts WHITE, BLACK, YELLOW, RED, GREEN, BLUE, AUTO
|
|
5153
|
+
# font_opacity: 1,
|
|
5154
|
+
# font_size: 1,
|
|
5155
|
+
# font_style: "NORMAL", # accepts NORMAL, ITALIC
|
|
5156
|
+
# font_weight: "NORMAL", # accepts NORMAL, BOLD
|
|
5103
5157
|
# style_passthrough: "ENABLED", # accepts ENABLED, DISABLED
|
|
5158
|
+
# text_decoration: "NONE", # accepts NONE, UNDERLINE
|
|
5104
5159
|
# },
|
|
5105
5160
|
# webvtt_destination_settings: {
|
|
5106
5161
|
# accessibility: "DISABLED", # accepts DISABLED, ENABLED
|
|
@@ -5124,7 +5179,7 @@ module Aws::MediaConvert
|
|
|
5124
5179
|
# klv_metadata: "PASSTHROUGH", # accepts PASSTHROUGH, NONE
|
|
5125
5180
|
# manifest_metadata_signaling: "ENABLED", # accepts ENABLED, DISABLED
|
|
5126
5181
|
# scte_35_esam: "INSERT", # accepts INSERT, NONE
|
|
5127
|
-
# scte_35_source: "PASSTHROUGH", # accepts PASSTHROUGH, NONE
|
|
5182
|
+
# scte_35_source: "PASSTHROUGH", # accepts PASSTHROUGH, NONE, MANIFEST_CUES
|
|
5128
5183
|
# signing_kms_key: "__stringMin1PatternArnAwsUsGovCnKmsAZ26EastWestCentralNorthSouthEastWest1912D12KeyAFAF098AFAF094AFAF094AFAF094AFAF0912MrkAFAF0932",
|
|
5129
5184
|
# timed_metadata: "PASSTHROUGH", # accepts PASSTHROUGH, NONE
|
|
5130
5185
|
# timed_metadata_box_version: "VERSION_0", # accepts VERSION_0, VERSION_1
|
|
@@ -5185,7 +5240,7 @@ module Aws::MediaConvert
|
|
|
5185
5240
|
# scte_35_esam_pid: 1,
|
|
5186
5241
|
# },
|
|
5187
5242
|
# scte_35_pid: 1,
|
|
5188
|
-
# scte_35_source: "PASSTHROUGH", # accepts PASSTHROUGH, NONE
|
|
5243
|
+
# scte_35_source: "PASSTHROUGH", # accepts PASSTHROUGH, NONE, MANIFEST_CUES
|
|
5189
5244
|
# segmentation_markers: "NONE", # accepts NONE, RAI_SEGSTART, RAI_ADAPT, PSI_SEGSTART, EBP, EBP_LEGACY
|
|
5190
5245
|
# segmentation_style: "MAINTAIN_CADENCE", # accepts MAINTAIN_CADENCE, RESET_CADENCE
|
|
5191
5246
|
# segmentation_time: 1.0,
|
|
@@ -5211,7 +5266,7 @@ module Aws::MediaConvert
|
|
|
5211
5266
|
# pts_offset: 1,
|
|
5212
5267
|
# pts_offset_mode: "AUTO", # accepts AUTO, SECONDS, MILLISECONDS
|
|
5213
5268
|
# scte_35_pid: 1,
|
|
5214
|
-
# scte_35_source: "PASSTHROUGH", # accepts PASSTHROUGH, NONE
|
|
5269
|
+
# scte_35_source: "PASSTHROUGH", # accepts PASSTHROUGH, NONE, MANIFEST_CUES
|
|
5215
5270
|
# timed_metadata: "PASSTHROUGH", # accepts PASSTHROUGH, NONE
|
|
5216
5271
|
# timed_metadata_pid: 1,
|
|
5217
5272
|
# transport_stream_id: 1,
|
|
@@ -5245,7 +5300,7 @@ module Aws::MediaConvert
|
|
|
5245
5300
|
# klv_metadata: "NONE", # accepts NONE, PASSTHROUGH
|
|
5246
5301
|
# manifest_metadata_signaling: "ENABLED", # accepts ENABLED, DISABLED
|
|
5247
5302
|
# scte_35_esam: "INSERT", # accepts INSERT, NONE
|
|
5248
|
-
# scte_35_source: "PASSTHROUGH", # accepts PASSTHROUGH, NONE
|
|
5303
|
+
# scte_35_source: "PASSTHROUGH", # accepts PASSTHROUGH, NONE, MANIFEST_CUES
|
|
5249
5304
|
# signing_kms_key: "__stringMin1PatternArnAwsUsGovCnKmsAZ26EastWestCentralNorthSouthEastWest1912D12KeyAFAF098AFAF094AFAF094AFAF094AFAF0912MrkAFAF0932",
|
|
5250
5305
|
# timed_metadata: "PASSTHROUGH", # accepts PASSTHROUGH, NONE
|
|
5251
5306
|
# timed_metadata_box_version: "VERSION_0", # accepts VERSION_0, VERSION_1
|
|
@@ -5569,6 +5624,7 @@ module Aws::MediaConvert
|
|
|
5569
5624
|
# slices: 1,
|
|
5570
5625
|
# },
|
|
5571
5626
|
# xavc_hd_intra_cbg_profile_settings: {
|
|
5627
|
+
# interlace_mode: "PROGRESSIVE", # accepts PROGRESSIVE, TOP_FIELD, BOTTOM_FIELD, FOLLOW_TOP_FIELD, FOLLOW_BOTTOM_FIELD
|
|
5572
5628
|
# xavc_class: "CLASS_50", # accepts CLASS_50, CLASS_100, CLASS_200
|
|
5573
5629
|
# },
|
|
5574
5630
|
# xavc_hd_profile_settings: {
|
|
@@ -5744,6 +5800,7 @@ module Aws::MediaConvert
|
|
|
5744
5800
|
# resp.preset.settings.audio_descriptions[0].codec_settings.aac_settings.codec_profile #=> String, one of "LC", "HEV1", "HEV2", "XHE"
|
|
5745
5801
|
# 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", "CODING_MODE_AUTO"
|
|
5746
5802
|
# resp.preset.settings.audio_descriptions[0].codec_settings.aac_settings.loudness_measurement_mode #=> String, one of "PROGRAM", "ANCHOR"
|
|
5803
|
+
# resp.preset.settings.audio_descriptions[0].codec_settings.aac_settings.passthrough_control #=> String, one of "WHEN_POSSIBLE", "NO_PASSTHROUGH"
|
|
5747
5804
|
# resp.preset.settings.audio_descriptions[0].codec_settings.aac_settings.rap_interval #=> Integer
|
|
5748
5805
|
# resp.preset.settings.audio_descriptions[0].codec_settings.aac_settings.rate_control_mode #=> String, one of "CBR", "VBR"
|
|
5749
5806
|
# resp.preset.settings.audio_descriptions[0].codec_settings.aac_settings.raw_format #=> String, one of "LATM_LOAS", "NONE"
|
|
@@ -5920,7 +5977,15 @@ module Aws::MediaConvert
|
|
|
5920
5977
|
# resp.preset.settings.caption_descriptions[0].destination_settings.teletext_destination_settings.page_number #=> String
|
|
5921
5978
|
# resp.preset.settings.caption_descriptions[0].destination_settings.teletext_destination_settings.page_types #=> Array
|
|
5922
5979
|
# resp.preset.settings.caption_descriptions[0].destination_settings.teletext_destination_settings.page_types[0] #=> String, one of "PAGE_TYPE_INITIAL", "PAGE_TYPE_SUBTITLE", "PAGE_TYPE_ADDL_INFO", "PAGE_TYPE_PROGRAM_SCHEDULE", "PAGE_TYPE_HEARING_IMPAIRED_SUBTITLE"
|
|
5980
|
+
# resp.preset.settings.caption_descriptions[0].destination_settings.ttml_destination_settings.background_color #=> String, one of "NONE", "BLACK", "WHITE", "AUTO"
|
|
5981
|
+
# resp.preset.settings.caption_descriptions[0].destination_settings.ttml_destination_settings.background_opacity #=> Integer
|
|
5982
|
+
# resp.preset.settings.caption_descriptions[0].destination_settings.ttml_destination_settings.font_color #=> String, one of "WHITE", "BLACK", "YELLOW", "RED", "GREEN", "BLUE", "AUTO"
|
|
5983
|
+
# resp.preset.settings.caption_descriptions[0].destination_settings.ttml_destination_settings.font_opacity #=> Integer
|
|
5984
|
+
# resp.preset.settings.caption_descriptions[0].destination_settings.ttml_destination_settings.font_size #=> Integer
|
|
5985
|
+
# resp.preset.settings.caption_descriptions[0].destination_settings.ttml_destination_settings.font_style #=> String, one of "NORMAL", "ITALIC"
|
|
5986
|
+
# resp.preset.settings.caption_descriptions[0].destination_settings.ttml_destination_settings.font_weight #=> String, one of "NORMAL", "BOLD"
|
|
5923
5987
|
# resp.preset.settings.caption_descriptions[0].destination_settings.ttml_destination_settings.style_passthrough #=> String, one of "ENABLED", "DISABLED"
|
|
5988
|
+
# resp.preset.settings.caption_descriptions[0].destination_settings.ttml_destination_settings.text_decoration #=> String, one of "NONE", "UNDERLINE"
|
|
5924
5989
|
# resp.preset.settings.caption_descriptions[0].destination_settings.webvtt_destination_settings.accessibility #=> String, one of "DISABLED", "ENABLED"
|
|
5925
5990
|
# resp.preset.settings.caption_descriptions[0].destination_settings.webvtt_destination_settings.style_passthrough #=> String, one of "ENABLED", "DISABLED", "STRICT", "MERGE"
|
|
5926
5991
|
# resp.preset.settings.caption_descriptions[0].language_code #=> String, one of "ENG", "SPA", "FRA", "DEU", "GER", "ZHO", "ARA", "HIN", "JPN", "RUS", "POR", "ITA", "URD", "VIE", "KOR", "PAN", "ABK", "AAR", "AFR", "AKA", "SQI", "AMH", "ARG", "HYE", "ASM", "AVA", "AVE", "AYM", "AZE", "BAM", "BAK", "EUS", "BEL", "BEN", "BIH", "BIS", "BOS", "BRE", "BUL", "MYA", "CAT", "KHM", "CHA", "CHE", "NYA", "CHU", "CHV", "COR", "COS", "CRE", "HRV", "CES", "DAN", "DIV", "NLD", "DZO", "ENM", "EPO", "EST", "EWE", "FAO", "FIJ", "FIN", "FRM", "FUL", "GLA", "GLG", "LUG", "KAT", "ELL", "GRN", "GUJ", "HAT", "HAU", "HEB", "HER", "HMO", "HUN", "ISL", "IDO", "IBO", "IND", "INA", "ILE", "IKU", "IPK", "GLE", "JAV", "KAL", "KAN", "KAU", "KAS", "KAZ", "KIK", "KIN", "KIR", "KOM", "KON", "KUA", "KUR", "LAO", "LAT", "LAV", "LIM", "LIN", "LIT", "LUB", "LTZ", "MKD", "MLG", "MSA", "MAL", "MLT", "GLV", "MRI", "MAR", "MAH", "MON", "NAU", "NAV", "NDE", "NBL", "NDO", "NEP", "SME", "NOR", "NOB", "NNO", "OCI", "OJI", "ORI", "ORM", "OSS", "PLI", "FAS", "POL", "PUS", "QUE", "QAA", "RON", "ROH", "RUN", "SMO", "SAG", "SAN", "SRD", "SRB", "SNA", "III", "SND", "SIN", "SLK", "SLV", "SOM", "SOT", "SUN", "SWA", "SSW", "SWE", "TGL", "TAH", "TGK", "TAM", "TAT", "TEL", "THA", "BOD", "TIR", "TON", "TSO", "TSN", "TUR", "TUK", "TWI", "UIG", "UKR", "UZB", "VEN", "VOL", "WLN", "CYM", "FRY", "WOL", "XHO", "YID", "YOR", "ZHA", "ZUL", "ORJ", "QPC", "TNG", "SRP"
|
|
@@ -5936,7 +6001,7 @@ module Aws::MediaConvert
|
|
|
5936
6001
|
# resp.preset.settings.container_settings.cmfc_settings.klv_metadata #=> String, one of "PASSTHROUGH", "NONE"
|
|
5937
6002
|
# resp.preset.settings.container_settings.cmfc_settings.manifest_metadata_signaling #=> String, one of "ENABLED", "DISABLED"
|
|
5938
6003
|
# resp.preset.settings.container_settings.cmfc_settings.scte_35_esam #=> String, one of "INSERT", "NONE"
|
|
5939
|
-
# resp.preset.settings.container_settings.cmfc_settings.scte_35_source #=> String, one of "PASSTHROUGH", "NONE"
|
|
6004
|
+
# resp.preset.settings.container_settings.cmfc_settings.scte_35_source #=> String, one of "PASSTHROUGH", "NONE", "MANIFEST_CUES"
|
|
5940
6005
|
# resp.preset.settings.container_settings.cmfc_settings.signing_kms_key #=> String
|
|
5941
6006
|
# resp.preset.settings.container_settings.cmfc_settings.timed_metadata #=> String, one of "PASSTHROUGH", "NONE"
|
|
5942
6007
|
# resp.preset.settings.container_settings.cmfc_settings.timed_metadata_box_version #=> String, one of "VERSION_0", "VERSION_1"
|
|
@@ -5987,7 +6052,7 @@ module Aws::MediaConvert
|
|
|
5987
6052
|
# resp.preset.settings.container_settings.m2ts_settings.rate_mode #=> String, one of "VBR", "CBR"
|
|
5988
6053
|
# resp.preset.settings.container_settings.m2ts_settings.scte_35_esam.scte_35_esam_pid #=> Integer
|
|
5989
6054
|
# resp.preset.settings.container_settings.m2ts_settings.scte_35_pid #=> Integer
|
|
5990
|
-
# resp.preset.settings.container_settings.m2ts_settings.scte_35_source #=> String, one of "PASSTHROUGH", "NONE"
|
|
6055
|
+
# resp.preset.settings.container_settings.m2ts_settings.scte_35_source #=> String, one of "PASSTHROUGH", "NONE", "MANIFEST_CUES"
|
|
5991
6056
|
# resp.preset.settings.container_settings.m2ts_settings.segmentation_markers #=> String, one of "NONE", "RAI_SEGSTART", "RAI_ADAPT", "PSI_SEGSTART", "EBP", "EBP_LEGACY"
|
|
5992
6057
|
# resp.preset.settings.container_settings.m2ts_settings.segmentation_style #=> String, one of "MAINTAIN_CADENCE", "RESET_CADENCE"
|
|
5993
6058
|
# resp.preset.settings.container_settings.m2ts_settings.segmentation_time #=> Float
|
|
@@ -6012,7 +6077,7 @@ module Aws::MediaConvert
|
|
|
6012
6077
|
# resp.preset.settings.container_settings.m3u_8_settings.pts_offset #=> Integer
|
|
6013
6078
|
# resp.preset.settings.container_settings.m3u_8_settings.pts_offset_mode #=> String, one of "AUTO", "SECONDS", "MILLISECONDS"
|
|
6014
6079
|
# resp.preset.settings.container_settings.m3u_8_settings.scte_35_pid #=> Integer
|
|
6015
|
-
# resp.preset.settings.container_settings.m3u_8_settings.scte_35_source #=> String, one of "PASSTHROUGH", "NONE"
|
|
6080
|
+
# resp.preset.settings.container_settings.m3u_8_settings.scte_35_source #=> String, one of "PASSTHROUGH", "NONE", "MANIFEST_CUES"
|
|
6016
6081
|
# resp.preset.settings.container_settings.m3u_8_settings.timed_metadata #=> String, one of "PASSTHROUGH", "NONE"
|
|
6017
6082
|
# resp.preset.settings.container_settings.m3u_8_settings.timed_metadata_pid #=> Integer
|
|
6018
6083
|
# resp.preset.settings.container_settings.m3u_8_settings.transport_stream_id #=> Integer
|
|
@@ -6040,7 +6105,7 @@ module Aws::MediaConvert
|
|
|
6040
6105
|
# resp.preset.settings.container_settings.mpd_settings.klv_metadata #=> String, one of "NONE", "PASSTHROUGH"
|
|
6041
6106
|
# resp.preset.settings.container_settings.mpd_settings.manifest_metadata_signaling #=> String, one of "ENABLED", "DISABLED"
|
|
6042
6107
|
# resp.preset.settings.container_settings.mpd_settings.scte_35_esam #=> String, one of "INSERT", "NONE"
|
|
6043
|
-
# resp.preset.settings.container_settings.mpd_settings.scte_35_source #=> String, one of "PASSTHROUGH", "NONE"
|
|
6108
|
+
# resp.preset.settings.container_settings.mpd_settings.scte_35_source #=> String, one of "PASSTHROUGH", "NONE", "MANIFEST_CUES"
|
|
6044
6109
|
# resp.preset.settings.container_settings.mpd_settings.signing_kms_key #=> String
|
|
6045
6110
|
# resp.preset.settings.container_settings.mpd_settings.timed_metadata #=> String, one of "PASSTHROUGH", "NONE"
|
|
6046
6111
|
# resp.preset.settings.container_settings.mpd_settings.timed_metadata_box_version #=> String, one of "VERSION_0", "VERSION_1"
|
|
@@ -6317,6 +6382,7 @@ module Aws::MediaConvert
|
|
|
6317
6382
|
# resp.preset.settings.video_description.codec_settings.xavc_settings.xavc_4k_profile_settings.hrd_buffer_size #=> Integer
|
|
6318
6383
|
# resp.preset.settings.video_description.codec_settings.xavc_settings.xavc_4k_profile_settings.quality_tuning_level #=> String, one of "SINGLE_PASS", "SINGLE_PASS_HQ", "MULTI_PASS_HQ"
|
|
6319
6384
|
# resp.preset.settings.video_description.codec_settings.xavc_settings.xavc_4k_profile_settings.slices #=> Integer
|
|
6385
|
+
# resp.preset.settings.video_description.codec_settings.xavc_settings.xavc_hd_intra_cbg_profile_settings.interlace_mode #=> String, one of "PROGRESSIVE", "TOP_FIELD", "BOTTOM_FIELD", "FOLLOW_TOP_FIELD", "FOLLOW_BOTTOM_FIELD"
|
|
6320
6386
|
# resp.preset.settings.video_description.codec_settings.xavc_settings.xavc_hd_intra_cbg_profile_settings.xavc_class #=> String, one of "CLASS_50", "CLASS_100", "CLASS_200"
|
|
6321
6387
|
# resp.preset.settings.video_description.codec_settings.xavc_settings.xavc_hd_profile_settings.bitrate_class #=> String, one of "BITRATE_CLASS_25", "BITRATE_CLASS_35", "BITRATE_CLASS_50"
|
|
6322
6388
|
# resp.preset.settings.video_description.codec_settings.xavc_settings.xavc_hd_profile_settings.flicker_adaptive_quantization #=> String, one of "DISABLED", "ENABLED"
|
|
@@ -6531,7 +6597,7 @@ module Aws::MediaConvert
|
|
|
6531
6597
|
tracer: tracer
|
|
6532
6598
|
)
|
|
6533
6599
|
context[:gem_name] = 'aws-sdk-mediaconvert'
|
|
6534
|
-
context[:gem_version] = '1.
|
|
6600
|
+
context[:gem_version] = '1.192.0'
|
|
6535
6601
|
Seahorse::Client::Request.new(handlers, context)
|
|
6536
6602
|
end
|
|
6537
6603
|
|