aws-sdk-mediaconvert 1.72.0 → 1.76.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 +20 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-mediaconvert/client.rb +760 -239
- data/lib/aws-sdk-mediaconvert/client_api.rb +136 -0
- data/lib/aws-sdk-mediaconvert/types.rb +1188 -250
- data/lib/aws-sdk-mediaconvert.rb +1 -1
- metadata +5 -5
|
@@ -1599,21 +1599,25 @@ module Aws::MediaConvert
|
|
|
1599
1599
|
# data as a hash:
|
|
1600
1600
|
#
|
|
1601
1601
|
# {
|
|
1602
|
-
# alignment: "CENTERED", # accepts CENTERED, LEFT
|
|
1603
|
-
#
|
|
1602
|
+
# alignment: "CENTERED", # accepts CENTERED, LEFT, AUTO
|
|
1603
|
+
# apply_font_color: "WHITE_TEXT_ONLY", # accepts WHITE_TEXT_ONLY, ALL_TEXT
|
|
1604
|
+
# background_color: "NONE", # accepts NONE, BLACK, WHITE, AUTO
|
|
1604
1605
|
# background_opacity: 1,
|
|
1605
|
-
#
|
|
1606
|
+
# fallback_font: "BEST_MATCH", # accepts BEST_MATCH, MONOSPACED_SANSSERIF, MONOSPACED_SERIF, PROPORTIONAL_SANSSERIF, PROPORTIONAL_SERIF
|
|
1607
|
+
# font_color: "WHITE", # accepts WHITE, BLACK, YELLOW, RED, GREEN, BLUE, HEX, AUTO
|
|
1606
1608
|
# font_opacity: 1,
|
|
1607
1609
|
# font_resolution: 1,
|
|
1608
1610
|
# font_script: "AUTOMATIC", # accepts AUTOMATIC, HANS, HANT
|
|
1609
1611
|
# font_size: 1,
|
|
1610
|
-
#
|
|
1612
|
+
# hex_font_color: "__stringMin6Max8Pattern09aFAF609aFAF2",
|
|
1613
|
+
# outline_color: "BLACK", # accepts BLACK, WHITE, YELLOW, RED, GREEN, BLUE, AUTO
|
|
1611
1614
|
# outline_size: 1,
|
|
1612
|
-
# shadow_color: "NONE", # accepts NONE, BLACK, WHITE
|
|
1615
|
+
# shadow_color: "NONE", # accepts NONE, BLACK, WHITE, AUTO
|
|
1613
1616
|
# shadow_opacity: 1,
|
|
1614
1617
|
# shadow_x_offset: 1,
|
|
1615
1618
|
# shadow_y_offset: 1,
|
|
1616
|
-
#
|
|
1619
|
+
# style_passthrough: "ENABLED", # accepts ENABLED, DISABLED
|
|
1620
|
+
# teletext_spacing: "FIXED_GRID", # accepts FIXED_GRID, PROPORTIONAL, AUTO
|
|
1617
1621
|
# x_position: 1,
|
|
1618
1622
|
# y_position: 1,
|
|
1619
1623
|
# }
|
|
@@ -1631,6 +1635,19 @@ module Aws::MediaConvert
|
|
|
1631
1635
|
# settings must match.
|
|
1632
1636
|
# @return [String]
|
|
1633
1637
|
#
|
|
1638
|
+
# @!attribute [rw] apply_font_color
|
|
1639
|
+
# Ignore this setting unless your input captions are STL, any type of
|
|
1640
|
+
# 608, teletext, or TTML, and your output captions are burned in.
|
|
1641
|
+
# Specify how the service applies the color specified in the setting
|
|
1642
|
+
# Font color (BurninSubtitleFontColor). By default, this color is
|
|
1643
|
+
# white. When you choose WHITE\_TEXT\_ONLY, the service uses the
|
|
1644
|
+
# specified font color only for text that is white in the input. When
|
|
1645
|
+
# you choose ALL\_TEXT, the service uses the specified font color for
|
|
1646
|
+
# all output captions text. If you leave both settings at their
|
|
1647
|
+
# default value, your output font color is the same as your input font
|
|
1648
|
+
# color.
|
|
1649
|
+
# @return [String]
|
|
1650
|
+
#
|
|
1634
1651
|
# @!attribute [rw] background_color
|
|
1635
1652
|
# Specifies the color of the rectangle behind the captions. All
|
|
1636
1653
|
# burn-in and DVB-Sub font settings must match.
|
|
@@ -1643,6 +1660,18 @@ module Aws::MediaConvert
|
|
|
1643
1660
|
# must match.
|
|
1644
1661
|
# @return [Integer]
|
|
1645
1662
|
#
|
|
1663
|
+
# @!attribute [rw] fallback_font
|
|
1664
|
+
# Specify the font that you want the service to use for your burn in
|
|
1665
|
+
# captions when your input captions specify a font that MediaConvert
|
|
1666
|
+
# doesn't support. When you keep the default value, Best match
|
|
1667
|
+
# (BEST\_MATCH), MediaConvert uses a supported font that most closely
|
|
1668
|
+
# matches the font that your input captions specify. When there are
|
|
1669
|
+
# multiple unsupported fonts in your input captions, MediaConvert
|
|
1670
|
+
# matches each font with the supported font that matches best. When
|
|
1671
|
+
# you explicitly choose a replacement font, MediaConvert uses that
|
|
1672
|
+
# font to replace all unsupported fonts from your input.
|
|
1673
|
+
# @return [String]
|
|
1674
|
+
#
|
|
1646
1675
|
# @!attribute [rw] font_color
|
|
1647
1676
|
# Specifies the color of the burned-in captions. This option is not
|
|
1648
1677
|
# valid for source captions that are STL, 608/embedded or teletext.
|
|
@@ -1674,6 +1703,15 @@ module Aws::MediaConvert
|
|
|
1674
1703
|
# settings must match.
|
|
1675
1704
|
# @return [Integer]
|
|
1676
1705
|
#
|
|
1706
|
+
# @!attribute [rw] hex_font_color
|
|
1707
|
+
# Ignore this setting unless your BurninSubtitleFontColor setting is
|
|
1708
|
+
# HEX. Format is six or eight hexidecimal digits, representing the
|
|
1709
|
+
# red, green, and blue components, with the two extra digits used for
|
|
1710
|
+
# an optional alpha value. For example a value of 1122AABB is a red
|
|
1711
|
+
# value of 0x11, a green value of 0x22, a blue value of 0xAA, and an
|
|
1712
|
+
# alpha value of 0xBB.
|
|
1713
|
+
# @return [String]
|
|
1714
|
+
#
|
|
1677
1715
|
# @!attribute [rw] outline_color
|
|
1678
1716
|
# Specifies font outline color. This option is not valid for source
|
|
1679
1717
|
# captions that are either 608/embedded or teletext. These source
|
|
@@ -1713,6 +1751,17 @@ module Aws::MediaConvert
|
|
|
1713
1751
|
# above the text. All burn-in and DVB-Sub font settings must match.
|
|
1714
1752
|
# @return [Integer]
|
|
1715
1753
|
#
|
|
1754
|
+
# @!attribute [rw] style_passthrough
|
|
1755
|
+
# Ignore this setting unless your output captions are burned in.
|
|
1756
|
+
# Choose which set of style and position values the service applies to
|
|
1757
|
+
# your output captions. When you choose ENABLED, the service uses the
|
|
1758
|
+
# input style and position information from your input. When you
|
|
1759
|
+
# choose DISABLED, the service uses any style values that you specify
|
|
1760
|
+
# in your output settings. If you don't specify values, the service
|
|
1761
|
+
# uses default style and position values. When you choose DISABLED,
|
|
1762
|
+
# the service ignores all style and position values from your input.
|
|
1763
|
+
# @return [String]
|
|
1764
|
+
#
|
|
1716
1765
|
# @!attribute [rw] teletext_spacing
|
|
1717
1766
|
# Only applies to jobs with input captions in Teletext or STL formats.
|
|
1718
1767
|
# Specify whether the spacing between letters in your captions is set
|
|
@@ -1748,19 +1797,23 @@ module Aws::MediaConvert
|
|
|
1748
1797
|
#
|
|
1749
1798
|
class BurninDestinationSettings < Struct.new(
|
|
1750
1799
|
:alignment,
|
|
1800
|
+
:apply_font_color,
|
|
1751
1801
|
:background_color,
|
|
1752
1802
|
:background_opacity,
|
|
1803
|
+
:fallback_font,
|
|
1753
1804
|
:font_color,
|
|
1754
1805
|
:font_opacity,
|
|
1755
1806
|
:font_resolution,
|
|
1756
1807
|
:font_script,
|
|
1757
1808
|
:font_size,
|
|
1809
|
+
:hex_font_color,
|
|
1758
1810
|
:outline_color,
|
|
1759
1811
|
:outline_size,
|
|
1760
1812
|
:shadow_color,
|
|
1761
1813
|
:shadow_opacity,
|
|
1762
1814
|
:shadow_x_offset,
|
|
1763
1815
|
:shadow_y_offset,
|
|
1816
|
+
:style_passthrough,
|
|
1764
1817
|
:teletext_spacing,
|
|
1765
1818
|
:x_position,
|
|
1766
1819
|
:y_position)
|
|
@@ -1807,46 +1860,54 @@ module Aws::MediaConvert
|
|
|
1807
1860
|
# custom_language_code: "__stringPatternAZaZ23AZaZ",
|
|
1808
1861
|
# destination_settings: {
|
|
1809
1862
|
# burnin_destination_settings: {
|
|
1810
|
-
# alignment: "CENTERED", # accepts CENTERED, LEFT
|
|
1811
|
-
#
|
|
1863
|
+
# alignment: "CENTERED", # accepts CENTERED, LEFT, AUTO
|
|
1864
|
+
# apply_font_color: "WHITE_TEXT_ONLY", # accepts WHITE_TEXT_ONLY, ALL_TEXT
|
|
1865
|
+
# background_color: "NONE", # accepts NONE, BLACK, WHITE, AUTO
|
|
1812
1866
|
# background_opacity: 1,
|
|
1813
|
-
#
|
|
1867
|
+
# fallback_font: "BEST_MATCH", # accepts BEST_MATCH, MONOSPACED_SANSSERIF, MONOSPACED_SERIF, PROPORTIONAL_SANSSERIF, PROPORTIONAL_SERIF
|
|
1868
|
+
# font_color: "WHITE", # accepts WHITE, BLACK, YELLOW, RED, GREEN, BLUE, HEX, AUTO
|
|
1814
1869
|
# font_opacity: 1,
|
|
1815
1870
|
# font_resolution: 1,
|
|
1816
1871
|
# font_script: "AUTOMATIC", # accepts AUTOMATIC, HANS, HANT
|
|
1817
1872
|
# font_size: 1,
|
|
1818
|
-
#
|
|
1873
|
+
# hex_font_color: "__stringMin6Max8Pattern09aFAF609aFAF2",
|
|
1874
|
+
# outline_color: "BLACK", # accepts BLACK, WHITE, YELLOW, RED, GREEN, BLUE, AUTO
|
|
1819
1875
|
# outline_size: 1,
|
|
1820
|
-
# shadow_color: "NONE", # accepts NONE, BLACK, WHITE
|
|
1876
|
+
# shadow_color: "NONE", # accepts NONE, BLACK, WHITE, AUTO
|
|
1821
1877
|
# shadow_opacity: 1,
|
|
1822
1878
|
# shadow_x_offset: 1,
|
|
1823
1879
|
# shadow_y_offset: 1,
|
|
1824
|
-
#
|
|
1880
|
+
# style_passthrough: "ENABLED", # accepts ENABLED, DISABLED
|
|
1881
|
+
# teletext_spacing: "FIXED_GRID", # accepts FIXED_GRID, PROPORTIONAL, AUTO
|
|
1825
1882
|
# x_position: 1,
|
|
1826
1883
|
# y_position: 1,
|
|
1827
1884
|
# },
|
|
1828
1885
|
# destination_type: "BURN_IN", # accepts BURN_IN, DVB_SUB, EMBEDDED, EMBEDDED_PLUS_SCTE20, IMSC, SCTE20_PLUS_EMBEDDED, SCC, SRT, SMI, TELETEXT, TTML, WEBVTT
|
|
1829
1886
|
# dvb_sub_destination_settings: {
|
|
1830
|
-
# alignment: "CENTERED", # accepts CENTERED, LEFT
|
|
1831
|
-
#
|
|
1887
|
+
# alignment: "CENTERED", # accepts CENTERED, LEFT, AUTO
|
|
1888
|
+
# apply_font_color: "WHITE_TEXT_ONLY", # accepts WHITE_TEXT_ONLY, ALL_TEXT
|
|
1889
|
+
# background_color: "NONE", # accepts NONE, BLACK, WHITE, AUTO
|
|
1832
1890
|
# background_opacity: 1,
|
|
1833
1891
|
# dds_handling: "NONE", # accepts NONE, SPECIFIED, NO_DISPLAY_WINDOW
|
|
1834
1892
|
# dds_x_coordinate: 1,
|
|
1835
1893
|
# dds_y_coordinate: 1,
|
|
1836
|
-
#
|
|
1894
|
+
# fallback_font: "BEST_MATCH", # accepts BEST_MATCH, MONOSPACED_SANSSERIF, MONOSPACED_SERIF, PROPORTIONAL_SANSSERIF, PROPORTIONAL_SERIF
|
|
1895
|
+
# font_color: "WHITE", # accepts WHITE, BLACK, YELLOW, RED, GREEN, BLUE, HEX, AUTO
|
|
1837
1896
|
# font_opacity: 1,
|
|
1838
1897
|
# font_resolution: 1,
|
|
1839
1898
|
# font_script: "AUTOMATIC", # accepts AUTOMATIC, HANS, HANT
|
|
1840
1899
|
# font_size: 1,
|
|
1841
1900
|
# height: 1,
|
|
1842
|
-
#
|
|
1901
|
+
# hex_font_color: "__stringMin6Max8Pattern09aFAF609aFAF2",
|
|
1902
|
+
# outline_color: "BLACK", # accepts BLACK, WHITE, YELLOW, RED, GREEN, BLUE, AUTO
|
|
1843
1903
|
# outline_size: 1,
|
|
1844
|
-
# shadow_color: "NONE", # accepts NONE, BLACK, WHITE
|
|
1904
|
+
# shadow_color: "NONE", # accepts NONE, BLACK, WHITE, AUTO
|
|
1845
1905
|
# shadow_opacity: 1,
|
|
1846
1906
|
# shadow_x_offset: 1,
|
|
1847
1907
|
# shadow_y_offset: 1,
|
|
1908
|
+
# style_passthrough: "ENABLED", # accepts ENABLED, DISABLED
|
|
1848
1909
|
# subtitling_type: "HEARING_IMPAIRED", # accepts HEARING_IMPAIRED, STANDARD
|
|
1849
|
-
# teletext_spacing: "FIXED_GRID", # accepts FIXED_GRID, PROPORTIONAL
|
|
1910
|
+
# teletext_spacing: "FIXED_GRID", # accepts FIXED_GRID, PROPORTIONAL, AUTO
|
|
1850
1911
|
# width: 1,
|
|
1851
1912
|
# x_position: 1,
|
|
1852
1913
|
# y_position: 1,
|
|
@@ -1943,46 +2004,54 @@ module Aws::MediaConvert
|
|
|
1943
2004
|
# custom_language_code: "__stringPatternAZaZ23AZaZ",
|
|
1944
2005
|
# destination_settings: {
|
|
1945
2006
|
# burnin_destination_settings: {
|
|
1946
|
-
# alignment: "CENTERED", # accepts CENTERED, LEFT
|
|
1947
|
-
#
|
|
2007
|
+
# alignment: "CENTERED", # accepts CENTERED, LEFT, AUTO
|
|
2008
|
+
# apply_font_color: "WHITE_TEXT_ONLY", # accepts WHITE_TEXT_ONLY, ALL_TEXT
|
|
2009
|
+
# background_color: "NONE", # accepts NONE, BLACK, WHITE, AUTO
|
|
1948
2010
|
# background_opacity: 1,
|
|
1949
|
-
#
|
|
2011
|
+
# fallback_font: "BEST_MATCH", # accepts BEST_MATCH, MONOSPACED_SANSSERIF, MONOSPACED_SERIF, PROPORTIONAL_SANSSERIF, PROPORTIONAL_SERIF
|
|
2012
|
+
# font_color: "WHITE", # accepts WHITE, BLACK, YELLOW, RED, GREEN, BLUE, HEX, AUTO
|
|
1950
2013
|
# font_opacity: 1,
|
|
1951
2014
|
# font_resolution: 1,
|
|
1952
2015
|
# font_script: "AUTOMATIC", # accepts AUTOMATIC, HANS, HANT
|
|
1953
2016
|
# font_size: 1,
|
|
1954
|
-
#
|
|
2017
|
+
# hex_font_color: "__stringMin6Max8Pattern09aFAF609aFAF2",
|
|
2018
|
+
# outline_color: "BLACK", # accepts BLACK, WHITE, YELLOW, RED, GREEN, BLUE, AUTO
|
|
1955
2019
|
# outline_size: 1,
|
|
1956
|
-
# shadow_color: "NONE", # accepts NONE, BLACK, WHITE
|
|
2020
|
+
# shadow_color: "NONE", # accepts NONE, BLACK, WHITE, AUTO
|
|
1957
2021
|
# shadow_opacity: 1,
|
|
1958
2022
|
# shadow_x_offset: 1,
|
|
1959
2023
|
# shadow_y_offset: 1,
|
|
1960
|
-
#
|
|
2024
|
+
# style_passthrough: "ENABLED", # accepts ENABLED, DISABLED
|
|
2025
|
+
# teletext_spacing: "FIXED_GRID", # accepts FIXED_GRID, PROPORTIONAL, AUTO
|
|
1961
2026
|
# x_position: 1,
|
|
1962
2027
|
# y_position: 1,
|
|
1963
2028
|
# },
|
|
1964
2029
|
# destination_type: "BURN_IN", # accepts BURN_IN, DVB_SUB, EMBEDDED, EMBEDDED_PLUS_SCTE20, IMSC, SCTE20_PLUS_EMBEDDED, SCC, SRT, SMI, TELETEXT, TTML, WEBVTT
|
|
1965
2030
|
# dvb_sub_destination_settings: {
|
|
1966
|
-
# alignment: "CENTERED", # accepts CENTERED, LEFT
|
|
1967
|
-
#
|
|
2031
|
+
# alignment: "CENTERED", # accepts CENTERED, LEFT, AUTO
|
|
2032
|
+
# apply_font_color: "WHITE_TEXT_ONLY", # accepts WHITE_TEXT_ONLY, ALL_TEXT
|
|
2033
|
+
# background_color: "NONE", # accepts NONE, BLACK, WHITE, AUTO
|
|
1968
2034
|
# background_opacity: 1,
|
|
1969
2035
|
# dds_handling: "NONE", # accepts NONE, SPECIFIED, NO_DISPLAY_WINDOW
|
|
1970
2036
|
# dds_x_coordinate: 1,
|
|
1971
2037
|
# dds_y_coordinate: 1,
|
|
1972
|
-
#
|
|
2038
|
+
# fallback_font: "BEST_MATCH", # accepts BEST_MATCH, MONOSPACED_SANSSERIF, MONOSPACED_SERIF, PROPORTIONAL_SANSSERIF, PROPORTIONAL_SERIF
|
|
2039
|
+
# font_color: "WHITE", # accepts WHITE, BLACK, YELLOW, RED, GREEN, BLUE, HEX, AUTO
|
|
1973
2040
|
# font_opacity: 1,
|
|
1974
2041
|
# font_resolution: 1,
|
|
1975
2042
|
# font_script: "AUTOMATIC", # accepts AUTOMATIC, HANS, HANT
|
|
1976
2043
|
# font_size: 1,
|
|
1977
2044
|
# height: 1,
|
|
1978
|
-
#
|
|
2045
|
+
# hex_font_color: "__stringMin6Max8Pattern09aFAF609aFAF2",
|
|
2046
|
+
# outline_color: "BLACK", # accepts BLACK, WHITE, YELLOW, RED, GREEN, BLUE, AUTO
|
|
1979
2047
|
# outline_size: 1,
|
|
1980
|
-
# shadow_color: "NONE", # accepts NONE, BLACK, WHITE
|
|
2048
|
+
# shadow_color: "NONE", # accepts NONE, BLACK, WHITE, AUTO
|
|
1981
2049
|
# shadow_opacity: 1,
|
|
1982
2050
|
# shadow_x_offset: 1,
|
|
1983
2051
|
# shadow_y_offset: 1,
|
|
2052
|
+
# style_passthrough: "ENABLED", # accepts ENABLED, DISABLED
|
|
1984
2053
|
# subtitling_type: "HEARING_IMPAIRED", # accepts HEARING_IMPAIRED, STANDARD
|
|
1985
|
-
# teletext_spacing: "FIXED_GRID", # accepts FIXED_GRID, PROPORTIONAL
|
|
2054
|
+
# teletext_spacing: "FIXED_GRID", # accepts FIXED_GRID, PROPORTIONAL, AUTO
|
|
1986
2055
|
# width: 1,
|
|
1987
2056
|
# x_position: 1,
|
|
1988
2057
|
# y_position: 1,
|
|
@@ -2078,46 +2147,54 @@ module Aws::MediaConvert
|
|
|
2078
2147
|
#
|
|
2079
2148
|
# {
|
|
2080
2149
|
# burnin_destination_settings: {
|
|
2081
|
-
# alignment: "CENTERED", # accepts CENTERED, LEFT
|
|
2082
|
-
#
|
|
2150
|
+
# alignment: "CENTERED", # accepts CENTERED, LEFT, AUTO
|
|
2151
|
+
# apply_font_color: "WHITE_TEXT_ONLY", # accepts WHITE_TEXT_ONLY, ALL_TEXT
|
|
2152
|
+
# background_color: "NONE", # accepts NONE, BLACK, WHITE, AUTO
|
|
2083
2153
|
# background_opacity: 1,
|
|
2084
|
-
#
|
|
2154
|
+
# fallback_font: "BEST_MATCH", # accepts BEST_MATCH, MONOSPACED_SANSSERIF, MONOSPACED_SERIF, PROPORTIONAL_SANSSERIF, PROPORTIONAL_SERIF
|
|
2155
|
+
# font_color: "WHITE", # accepts WHITE, BLACK, YELLOW, RED, GREEN, BLUE, HEX, AUTO
|
|
2085
2156
|
# font_opacity: 1,
|
|
2086
2157
|
# font_resolution: 1,
|
|
2087
2158
|
# font_script: "AUTOMATIC", # accepts AUTOMATIC, HANS, HANT
|
|
2088
2159
|
# font_size: 1,
|
|
2089
|
-
#
|
|
2160
|
+
# hex_font_color: "__stringMin6Max8Pattern09aFAF609aFAF2",
|
|
2161
|
+
# outline_color: "BLACK", # accepts BLACK, WHITE, YELLOW, RED, GREEN, BLUE, AUTO
|
|
2090
2162
|
# outline_size: 1,
|
|
2091
|
-
# shadow_color: "NONE", # accepts NONE, BLACK, WHITE
|
|
2163
|
+
# shadow_color: "NONE", # accepts NONE, BLACK, WHITE, AUTO
|
|
2092
2164
|
# shadow_opacity: 1,
|
|
2093
2165
|
# shadow_x_offset: 1,
|
|
2094
2166
|
# shadow_y_offset: 1,
|
|
2095
|
-
#
|
|
2167
|
+
# style_passthrough: "ENABLED", # accepts ENABLED, DISABLED
|
|
2168
|
+
# teletext_spacing: "FIXED_GRID", # accepts FIXED_GRID, PROPORTIONAL, AUTO
|
|
2096
2169
|
# x_position: 1,
|
|
2097
2170
|
# y_position: 1,
|
|
2098
2171
|
# },
|
|
2099
2172
|
# destination_type: "BURN_IN", # accepts BURN_IN, DVB_SUB, EMBEDDED, EMBEDDED_PLUS_SCTE20, IMSC, SCTE20_PLUS_EMBEDDED, SCC, SRT, SMI, TELETEXT, TTML, WEBVTT
|
|
2100
2173
|
# dvb_sub_destination_settings: {
|
|
2101
|
-
# alignment: "CENTERED", # accepts CENTERED, LEFT
|
|
2102
|
-
#
|
|
2174
|
+
# alignment: "CENTERED", # accepts CENTERED, LEFT, AUTO
|
|
2175
|
+
# apply_font_color: "WHITE_TEXT_ONLY", # accepts WHITE_TEXT_ONLY, ALL_TEXT
|
|
2176
|
+
# background_color: "NONE", # accepts NONE, BLACK, WHITE, AUTO
|
|
2103
2177
|
# background_opacity: 1,
|
|
2104
2178
|
# dds_handling: "NONE", # accepts NONE, SPECIFIED, NO_DISPLAY_WINDOW
|
|
2105
2179
|
# dds_x_coordinate: 1,
|
|
2106
2180
|
# dds_y_coordinate: 1,
|
|
2107
|
-
#
|
|
2181
|
+
# fallback_font: "BEST_MATCH", # accepts BEST_MATCH, MONOSPACED_SANSSERIF, MONOSPACED_SERIF, PROPORTIONAL_SANSSERIF, PROPORTIONAL_SERIF
|
|
2182
|
+
# font_color: "WHITE", # accepts WHITE, BLACK, YELLOW, RED, GREEN, BLUE, HEX, AUTO
|
|
2108
2183
|
# font_opacity: 1,
|
|
2109
2184
|
# font_resolution: 1,
|
|
2110
2185
|
# font_script: "AUTOMATIC", # accepts AUTOMATIC, HANS, HANT
|
|
2111
2186
|
# font_size: 1,
|
|
2112
2187
|
# height: 1,
|
|
2113
|
-
#
|
|
2188
|
+
# hex_font_color: "__stringMin6Max8Pattern09aFAF609aFAF2",
|
|
2189
|
+
# outline_color: "BLACK", # accepts BLACK, WHITE, YELLOW, RED, GREEN, BLUE, AUTO
|
|
2114
2190
|
# outline_size: 1,
|
|
2115
|
-
# shadow_color: "NONE", # accepts NONE, BLACK, WHITE
|
|
2191
|
+
# shadow_color: "NONE", # accepts NONE, BLACK, WHITE, AUTO
|
|
2116
2192
|
# shadow_opacity: 1,
|
|
2117
2193
|
# shadow_x_offset: 1,
|
|
2118
2194
|
# shadow_y_offset: 1,
|
|
2195
|
+
# style_passthrough: "ENABLED", # accepts ENABLED, DISABLED
|
|
2119
2196
|
# subtitling_type: "HEARING_IMPAIRED", # accepts HEARING_IMPAIRED, STANDARD
|
|
2120
|
-
# teletext_spacing: "FIXED_GRID", # accepts FIXED_GRID, PROPORTIONAL
|
|
2197
|
+
# teletext_spacing: "FIXED_GRID", # accepts FIXED_GRID, PROPORTIONAL, AUTO
|
|
2121
2198
|
# width: 1,
|
|
2122
2199
|
# x_position: 1,
|
|
2123
2200
|
# y_position: 1,
|
|
@@ -2674,6 +2751,7 @@ module Aws::MediaConvert
|
|
|
2674
2751
|
# },
|
|
2675
2752
|
# encryption: {
|
|
2676
2753
|
# encryption_type: "SERVER_SIDE_ENCRYPTION_S3", # accepts SERVER_SIDE_ENCRYPTION_S3, SERVER_SIDE_ENCRYPTION_KMS
|
|
2754
|
+
# kms_encryption_context: "__stringPatternAZaZ0902",
|
|
2677
2755
|
# kms_key_arn: "__stringPatternArnAwsUsGovCnKmsAZ26EastWestCentralNorthSouthEastWest1912D12KeyAFAF098AFAF094AFAF094AFAF094AFAF0912",
|
|
2678
2756
|
# },
|
|
2679
2757
|
# },
|
|
@@ -2698,7 +2776,15 @@ module Aws::MediaConvert
|
|
|
2698
2776
|
# type: "SPEKE", # accepts SPEKE, STATIC_KEY
|
|
2699
2777
|
# },
|
|
2700
2778
|
# fragment_length: 1,
|
|
2701
|
-
# image_based_trick_play: "NONE", # accepts NONE, THUMBNAIL, THUMBNAIL_AND_FULLFRAME
|
|
2779
|
+
# image_based_trick_play: "NONE", # accepts NONE, THUMBNAIL, THUMBNAIL_AND_FULLFRAME, ADVANCED
|
|
2780
|
+
# image_based_trick_play_settings: {
|
|
2781
|
+
# interval_cadence: "FOLLOW_IFRAME", # accepts FOLLOW_IFRAME, FOLLOW_CUSTOM
|
|
2782
|
+
# thumbnail_height: 1,
|
|
2783
|
+
# thumbnail_interval: 1.0,
|
|
2784
|
+
# thumbnail_width: 1,
|
|
2785
|
+
# tile_height: 1,
|
|
2786
|
+
# tile_width: 1,
|
|
2787
|
+
# },
|
|
2702
2788
|
# manifest_compression: "GZIP", # accepts GZIP, NONE
|
|
2703
2789
|
# manifest_duration_format: "FLOATING_POINT", # accepts FLOATING_POINT, INTEGER
|
|
2704
2790
|
# min_buffer_time: 1,
|
|
@@ -2707,6 +2793,7 @@ module Aws::MediaConvert
|
|
|
2707
2793
|
# pts_offset_handling_for_b_frames: "ZERO_BASED", # accepts ZERO_BASED, MATCH_INITIAL_PTS
|
|
2708
2794
|
# segment_control: "SINGLE_FILE", # accepts SINGLE_FILE, SEGMENTED_FILES
|
|
2709
2795
|
# segment_length: 1,
|
|
2796
|
+
# segment_length_control: "EXACT", # accepts EXACT, GOP_MULTIPLE
|
|
2710
2797
|
# stream_inf_resolution: "INCLUDE", # accepts INCLUDE, EXCLUDE
|
|
2711
2798
|
# target_duration_compatibility_mode: "LEGACY", # accepts LEGACY, SPEC_COMPLIANT
|
|
2712
2799
|
# write_dash_manifest: "DISABLED", # accepts DISABLED, ENABLED
|
|
@@ -2760,12 +2847,10 @@ module Aws::MediaConvert
|
|
|
2760
2847
|
# @return [Types::CmafEncryptionSettings]
|
|
2761
2848
|
#
|
|
2762
2849
|
# @!attribute [rw] fragment_length
|
|
2763
|
-
#
|
|
2764
|
-
#
|
|
2765
|
-
#
|
|
2766
|
-
#
|
|
2767
|
-
# fragmentation is internal to a single output file and it does not
|
|
2768
|
-
# cause the creation of many output files as in other output types.
|
|
2850
|
+
# Specify the length, in whole seconds, of the mp4 fragments. When you
|
|
2851
|
+
# don't specify a value, MediaConvert defaults to 2. Related setting:
|
|
2852
|
+
# Use Fragment length control (FragmentLengthControl) to specify
|
|
2853
|
+
# whether the encoder enforces this value strictly.
|
|
2769
2854
|
# @return [Integer]
|
|
2770
2855
|
#
|
|
2771
2856
|
# @!attribute [rw] image_based_trick_play
|
|
@@ -2785,6 +2870,11 @@ module Aws::MediaConvert
|
|
|
2785
2870
|
# https://developer.roku.com/docs/developer-program/media-playback/trick-mode/hls-and-dash.md
|
|
2786
2871
|
# @return [String]
|
|
2787
2872
|
#
|
|
2873
|
+
# @!attribute [rw] image_based_trick_play_settings
|
|
2874
|
+
# Tile and thumbnail settings applicable when imageBasedTrickPlay is
|
|
2875
|
+
# ADVANCED
|
|
2876
|
+
# @return [Types::CmafImageBasedTrickPlaySettings]
|
|
2877
|
+
#
|
|
2788
2878
|
# @!attribute [rw] manifest_compression
|
|
2789
2879
|
# When set to GZIP, compresses HLS playlist.
|
|
2790
2880
|
# @return [String]
|
|
@@ -2847,18 +2937,24 @@ module Aws::MediaConvert
|
|
|
2847
2937
|
# @return [String]
|
|
2848
2938
|
#
|
|
2849
2939
|
# @!attribute [rw] segment_length
|
|
2850
|
-
#
|
|
2851
|
-
#
|
|
2852
|
-
#
|
|
2853
|
-
#
|
|
2854
|
-
#
|
|
2855
|
-
#
|
|
2856
|
-
#
|
|
2857
|
-
# segments. If you set it to segmented files, the service creates
|
|
2858
|
-
# multiple files for each output, each with the content of one
|
|
2859
|
-
# segment.
|
|
2940
|
+
# Specify the length, in whole seconds, of each segment. When you
|
|
2941
|
+
# don't specify a value, MediaConvert defaults to 10. Related
|
|
2942
|
+
# settings: Use Segment length control (SegmentLengthControl) to
|
|
2943
|
+
# specify whether the encoder enforces this value strictly. Use
|
|
2944
|
+
# Segment control (CmafSegmentControl) to specify whether MediaConvert
|
|
2945
|
+
# creates separate segment files or one content file that has metadata
|
|
2946
|
+
# to mark the segment boundaries.
|
|
2860
2947
|
# @return [Integer]
|
|
2861
2948
|
#
|
|
2949
|
+
# @!attribute [rw] segment_length_control
|
|
2950
|
+
# Specify how you want MediaConvert to determine the segment length.
|
|
2951
|
+
# Choose Exact (EXACT) to have the encoder use the exact length that
|
|
2952
|
+
# you specify with the setting Segment length (SegmentLength). This
|
|
2953
|
+
# might result in extra I-frames. Choose Multiple of GOP
|
|
2954
|
+
# (GOP\_MULTIPLE) to have the encoder round up the segment lengths to
|
|
2955
|
+
# match the next GOP boundary.
|
|
2956
|
+
# @return [String]
|
|
2957
|
+
#
|
|
2862
2958
|
# @!attribute [rw] stream_inf_resolution
|
|
2863
2959
|
# Include or exclude RESOLUTION attribute for video in
|
|
2864
2960
|
# EXT-X-STREAM-INF tag of variant manifest.
|
|
@@ -2910,6 +3006,7 @@ module Aws::MediaConvert
|
|
|
2910
3006
|
:encryption,
|
|
2911
3007
|
:fragment_length,
|
|
2912
3008
|
:image_based_trick_play,
|
|
3009
|
+
:image_based_trick_play_settings,
|
|
2913
3010
|
:manifest_compression,
|
|
2914
3011
|
:manifest_duration_format,
|
|
2915
3012
|
:min_buffer_time,
|
|
@@ -2918,6 +3015,7 @@ module Aws::MediaConvert
|
|
|
2918
3015
|
:pts_offset_handling_for_b_frames,
|
|
2919
3016
|
:segment_control,
|
|
2920
3017
|
:segment_length,
|
|
3018
|
+
:segment_length_control,
|
|
2921
3019
|
:stream_inf_resolution,
|
|
2922
3020
|
:target_duration_compatibility_mode,
|
|
2923
3021
|
:write_dash_manifest,
|
|
@@ -2927,6 +3025,73 @@ module Aws::MediaConvert
|
|
|
2927
3025
|
include Aws::Structure
|
|
2928
3026
|
end
|
|
2929
3027
|
|
|
3028
|
+
# Tile and thumbnail settings applicable when imageBasedTrickPlay is
|
|
3029
|
+
# ADVANCED
|
|
3030
|
+
#
|
|
3031
|
+
# @note When making an API call, you may pass CmafImageBasedTrickPlaySettings
|
|
3032
|
+
# data as a hash:
|
|
3033
|
+
#
|
|
3034
|
+
# {
|
|
3035
|
+
# interval_cadence: "FOLLOW_IFRAME", # accepts FOLLOW_IFRAME, FOLLOW_CUSTOM
|
|
3036
|
+
# thumbnail_height: 1,
|
|
3037
|
+
# thumbnail_interval: 1.0,
|
|
3038
|
+
# thumbnail_width: 1,
|
|
3039
|
+
# tile_height: 1,
|
|
3040
|
+
# tile_width: 1,
|
|
3041
|
+
# }
|
|
3042
|
+
#
|
|
3043
|
+
# @!attribute [rw] interval_cadence
|
|
3044
|
+
# The cadence MediaConvert follows for generating thumbnails. If set
|
|
3045
|
+
# to FOLLOW\_IFRAME, MediaConvert generates thumbnails for each IDR
|
|
3046
|
+
# frame in the output (matching the GOP cadence). If set to
|
|
3047
|
+
# FOLLOW\_CUSTOM, MediaConvert generates thumbnails according to the
|
|
3048
|
+
# interval you specify in thumbnailInterval.
|
|
3049
|
+
# @return [String]
|
|
3050
|
+
#
|
|
3051
|
+
# @!attribute [rw] thumbnail_height
|
|
3052
|
+
# Height of each thumbnail within each tile image, in pixels. Leave
|
|
3053
|
+
# blank to maintain aspect ratio with thumbnail width. If following
|
|
3054
|
+
# the aspect ratio would lead to a total tile height greater than
|
|
3055
|
+
# 4096, then the job will be rejected. Must be divisible by 2.
|
|
3056
|
+
# @return [Integer]
|
|
3057
|
+
#
|
|
3058
|
+
# @!attribute [rw] thumbnail_interval
|
|
3059
|
+
# Enter the interval, in seconds, that MediaConvert uses to generate
|
|
3060
|
+
# thumbnails. If the interval you enter doesn't align with the output
|
|
3061
|
+
# frame rate, MediaConvert automatically rounds the interval to align
|
|
3062
|
+
# with the output frame rate. For example, if the output frame rate is
|
|
3063
|
+
# 29.97 frames per second and you enter 5, MediaConvert uses a 150
|
|
3064
|
+
# frame interval to generate thumbnails.
|
|
3065
|
+
# @return [Float]
|
|
3066
|
+
#
|
|
3067
|
+
# @!attribute [rw] thumbnail_width
|
|
3068
|
+
# Width of each thumbnail within each tile image, in pixels. Default
|
|
3069
|
+
# is 312. Must be divisible by 8.
|
|
3070
|
+
# @return [Integer]
|
|
3071
|
+
#
|
|
3072
|
+
# @!attribute [rw] tile_height
|
|
3073
|
+
# Number of thumbnails in each column of a tile image. Set a value
|
|
3074
|
+
# between 2 and 2048. Must be divisible by 2.
|
|
3075
|
+
# @return [Integer]
|
|
3076
|
+
#
|
|
3077
|
+
# @!attribute [rw] tile_width
|
|
3078
|
+
# Number of thumbnails in each row of a tile image. Set a value
|
|
3079
|
+
# between 1 and 512.
|
|
3080
|
+
# @return [Integer]
|
|
3081
|
+
#
|
|
3082
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconvert-2017-08-29/CmafImageBasedTrickPlaySettings AWS API Documentation
|
|
3083
|
+
#
|
|
3084
|
+
class CmafImageBasedTrickPlaySettings < Struct.new(
|
|
3085
|
+
:interval_cadence,
|
|
3086
|
+
:thumbnail_height,
|
|
3087
|
+
:thumbnail_interval,
|
|
3088
|
+
:thumbnail_width,
|
|
3089
|
+
:tile_height,
|
|
3090
|
+
:tile_width)
|
|
3091
|
+
SENSITIVE = []
|
|
3092
|
+
include Aws::Structure
|
|
3093
|
+
end
|
|
3094
|
+
|
|
2930
3095
|
# These settings relate to the fragmented MP4 container for the segments
|
|
2931
3096
|
# in your CMAF outputs.
|
|
2932
3097
|
#
|
|
@@ -3210,6 +3375,7 @@ module Aws::MediaConvert
|
|
|
3210
3375
|
# audio_pids: [1],
|
|
3211
3376
|
# bitrate: 1,
|
|
3212
3377
|
# buffer_model: "MULTIPLEX", # accepts MULTIPLEX, NONE
|
|
3378
|
+
# data_pts_control: "AUTO", # accepts AUTO, ALIGN_TO_VIDEO
|
|
3213
3379
|
# dvb_nit_settings: {
|
|
3214
3380
|
# network_id: 1,
|
|
3215
3381
|
# network_name: "__stringMin1Max256",
|
|
@@ -3259,6 +3425,7 @@ module Aws::MediaConvert
|
|
|
3259
3425
|
# audio_duration: "DEFAULT_CODEC_DURATION", # accepts DEFAULT_CODEC_DURATION, MATCH_VIDEO_DURATION
|
|
3260
3426
|
# audio_frames_per_pes: 1,
|
|
3261
3427
|
# audio_pids: [1],
|
|
3428
|
+
# data_pts_control: "AUTO", # accepts AUTO, ALIGN_TO_VIDEO
|
|
3262
3429
|
# max_pcr_interval: 1,
|
|
3263
3430
|
# nielsen_id_3: "INSERT", # accepts INSERT, NONE
|
|
3264
3431
|
# pat_interval: 1,
|
|
@@ -3650,6 +3817,7 @@ module Aws::MediaConvert
|
|
|
3650
3817
|
# },
|
|
3651
3818
|
# encryption: {
|
|
3652
3819
|
# encryption_type: "SERVER_SIDE_ENCRYPTION_S3", # accepts SERVER_SIDE_ENCRYPTION_S3, SERVER_SIDE_ENCRYPTION_KMS
|
|
3820
|
+
# kms_encryption_context: "__stringPatternAZaZ0902",
|
|
3653
3821
|
# kms_key_arn: "__stringPatternArnAwsUsGovCnKmsAZ26EastWestCentralNorthSouthEastWest1912D12KeyAFAF098AFAF094AFAF094AFAF094AFAF0912",
|
|
3654
3822
|
# },
|
|
3655
3823
|
# },
|
|
@@ -3674,7 +3842,15 @@ module Aws::MediaConvert
|
|
|
3674
3842
|
# type: "SPEKE", # accepts SPEKE, STATIC_KEY
|
|
3675
3843
|
# },
|
|
3676
3844
|
# fragment_length: 1,
|
|
3677
|
-
# image_based_trick_play: "NONE", # accepts NONE, THUMBNAIL, THUMBNAIL_AND_FULLFRAME
|
|
3845
|
+
# image_based_trick_play: "NONE", # accepts NONE, THUMBNAIL, THUMBNAIL_AND_FULLFRAME, ADVANCED
|
|
3846
|
+
# image_based_trick_play_settings: {
|
|
3847
|
+
# interval_cadence: "FOLLOW_IFRAME", # accepts FOLLOW_IFRAME, FOLLOW_CUSTOM
|
|
3848
|
+
# thumbnail_height: 1,
|
|
3849
|
+
# thumbnail_interval: 1.0,
|
|
3850
|
+
# thumbnail_width: 1,
|
|
3851
|
+
# tile_height: 1,
|
|
3852
|
+
# tile_width: 1,
|
|
3853
|
+
# },
|
|
3678
3854
|
# manifest_compression: "GZIP", # accepts GZIP, NONE
|
|
3679
3855
|
# manifest_duration_format: "FLOATING_POINT", # accepts FLOATING_POINT, INTEGER
|
|
3680
3856
|
# min_buffer_time: 1,
|
|
@@ -3683,6 +3859,7 @@ module Aws::MediaConvert
|
|
|
3683
3859
|
# pts_offset_handling_for_b_frames: "ZERO_BASED", # accepts ZERO_BASED, MATCH_INITIAL_PTS
|
|
3684
3860
|
# segment_control: "SINGLE_FILE", # accepts SINGLE_FILE, SEGMENTED_FILES
|
|
3685
3861
|
# segment_length: 1,
|
|
3862
|
+
# segment_length_control: "EXACT", # accepts EXACT, GOP_MULTIPLE
|
|
3686
3863
|
# stream_inf_resolution: "INCLUDE", # accepts INCLUDE, EXCLUDE
|
|
3687
3864
|
# target_duration_compatibility_mode: "LEGACY", # accepts LEGACY, SPEC_COMPLIANT
|
|
3688
3865
|
# write_dash_manifest: "DISABLED", # accepts DISABLED, ENABLED
|
|
@@ -3706,6 +3883,7 @@ module Aws::MediaConvert
|
|
|
3706
3883
|
# },
|
|
3707
3884
|
# encryption: {
|
|
3708
3885
|
# encryption_type: "SERVER_SIDE_ENCRYPTION_S3", # accepts SERVER_SIDE_ENCRYPTION_S3, SERVER_SIDE_ENCRYPTION_KMS
|
|
3886
|
+
# kms_encryption_context: "__stringPatternAZaZ0902",
|
|
3709
3887
|
# kms_key_arn: "__stringPatternArnAwsUsGovCnKmsAZ26EastWestCentralNorthSouthEastWest1912D12KeyAFAF098AFAF094AFAF094AFAF094AFAF0912",
|
|
3710
3888
|
# },
|
|
3711
3889
|
# },
|
|
@@ -3721,13 +3899,22 @@ module Aws::MediaConvert
|
|
|
3721
3899
|
# },
|
|
3722
3900
|
# fragment_length: 1,
|
|
3723
3901
|
# hbbtv_compliance: "HBBTV_1_5", # accepts HBBTV_1_5, NONE
|
|
3724
|
-
# image_based_trick_play: "NONE", # accepts NONE, THUMBNAIL, THUMBNAIL_AND_FULLFRAME
|
|
3902
|
+
# image_based_trick_play: "NONE", # accepts NONE, THUMBNAIL, THUMBNAIL_AND_FULLFRAME, ADVANCED
|
|
3903
|
+
# image_based_trick_play_settings: {
|
|
3904
|
+
# interval_cadence: "FOLLOW_IFRAME", # accepts FOLLOW_IFRAME, FOLLOW_CUSTOM
|
|
3905
|
+
# thumbnail_height: 1,
|
|
3906
|
+
# thumbnail_interval: 1.0,
|
|
3907
|
+
# thumbnail_width: 1,
|
|
3908
|
+
# tile_height: 1,
|
|
3909
|
+
# tile_width: 1,
|
|
3910
|
+
# },
|
|
3725
3911
|
# min_buffer_time: 1,
|
|
3726
3912
|
# min_final_segment_length: 1.0,
|
|
3727
3913
|
# mpd_profile: "MAIN_PROFILE", # accepts MAIN_PROFILE, ON_DEMAND_PROFILE
|
|
3728
3914
|
# pts_offset_handling_for_b_frames: "ZERO_BASED", # accepts ZERO_BASED, MATCH_INITIAL_PTS
|
|
3729
3915
|
# segment_control: "SINGLE_FILE", # accepts SINGLE_FILE, SEGMENTED_FILES
|
|
3730
3916
|
# segment_length: 1,
|
|
3917
|
+
# segment_length_control: "EXACT", # accepts EXACT, GOP_MULTIPLE
|
|
3731
3918
|
# write_segment_timeline_in_representation: "ENABLED", # accepts ENABLED, DISABLED
|
|
3732
3919
|
# },
|
|
3733
3920
|
# file_group_settings: {
|
|
@@ -3739,6 +3926,7 @@ module Aws::MediaConvert
|
|
|
3739
3926
|
# },
|
|
3740
3927
|
# encryption: {
|
|
3741
3928
|
# encryption_type: "SERVER_SIDE_ENCRYPTION_S3", # accepts SERVER_SIDE_ENCRYPTION_S3, SERVER_SIDE_ENCRYPTION_KMS
|
|
3929
|
+
# kms_encryption_context: "__stringPatternAZaZ0902",
|
|
3742
3930
|
# kms_key_arn: "__stringPatternArnAwsUsGovCnKmsAZ26EastWestCentralNorthSouthEastWest1912D12KeyAFAF098AFAF094AFAF094AFAF094AFAF0912",
|
|
3743
3931
|
# },
|
|
3744
3932
|
# },
|
|
@@ -3773,6 +3961,7 @@ module Aws::MediaConvert
|
|
|
3773
3961
|
# },
|
|
3774
3962
|
# encryption: {
|
|
3775
3963
|
# encryption_type: "SERVER_SIDE_ENCRYPTION_S3", # accepts SERVER_SIDE_ENCRYPTION_S3, SERVER_SIDE_ENCRYPTION_KMS
|
|
3964
|
+
# kms_encryption_context: "__stringPatternAZaZ0902",
|
|
3776
3965
|
# kms_key_arn: "__stringPatternArnAwsUsGovCnKmsAZ26EastWestCentralNorthSouthEastWest1912D12KeyAFAF098AFAF094AFAF094AFAF094AFAF0912",
|
|
3777
3966
|
# },
|
|
3778
3967
|
# },
|
|
@@ -3797,7 +3986,15 @@ module Aws::MediaConvert
|
|
|
3797
3986
|
# },
|
|
3798
3987
|
# type: "SPEKE", # accepts SPEKE, STATIC_KEY
|
|
3799
3988
|
# },
|
|
3800
|
-
# image_based_trick_play: "NONE", # accepts NONE, THUMBNAIL, THUMBNAIL_AND_FULLFRAME
|
|
3989
|
+
# image_based_trick_play: "NONE", # accepts NONE, THUMBNAIL, THUMBNAIL_AND_FULLFRAME, ADVANCED
|
|
3990
|
+
# image_based_trick_play_settings: {
|
|
3991
|
+
# interval_cadence: "FOLLOW_IFRAME", # accepts FOLLOW_IFRAME, FOLLOW_CUSTOM
|
|
3992
|
+
# thumbnail_height: 1,
|
|
3993
|
+
# thumbnail_interval: 1.0,
|
|
3994
|
+
# thumbnail_width: 1,
|
|
3995
|
+
# tile_height: 1,
|
|
3996
|
+
# tile_width: 1,
|
|
3997
|
+
# },
|
|
3801
3998
|
# manifest_compression: "GZIP", # accepts GZIP, NONE
|
|
3802
3999
|
# manifest_duration_format: "FLOATING_POINT", # accepts FLOATING_POINT, INTEGER
|
|
3803
4000
|
# min_final_segment_length: 1.0,
|
|
@@ -3807,6 +4004,7 @@ module Aws::MediaConvert
|
|
|
3807
4004
|
# program_date_time_period: 1,
|
|
3808
4005
|
# segment_control: "SINGLE_FILE", # accepts SINGLE_FILE, SEGMENTED_FILES
|
|
3809
4006
|
# segment_length: 1,
|
|
4007
|
+
# segment_length_control: "EXACT", # accepts EXACT, GOP_MULTIPLE
|
|
3810
4008
|
# segments_per_subdirectory: 1,
|
|
3811
4009
|
# stream_inf_resolution: "INCLUDE", # accepts INCLUDE, EXCLUDE
|
|
3812
4010
|
# target_duration_compatibility_mode: "LEGACY", # accepts LEGACY, SPEC_COMPLIANT
|
|
@@ -3830,6 +4028,7 @@ module Aws::MediaConvert
|
|
|
3830
4028
|
# },
|
|
3831
4029
|
# encryption: {
|
|
3832
4030
|
# encryption_type: "SERVER_SIDE_ENCRYPTION_S3", # accepts SERVER_SIDE_ENCRYPTION_S3, SERVER_SIDE_ENCRYPTION_KMS
|
|
4031
|
+
# kms_encryption_context: "__stringPatternAZaZ0902",
|
|
3833
4032
|
# kms_key_arn: "__stringPatternArnAwsUsGovCnKmsAZ26EastWestCentralNorthSouthEastWest1912D12KeyAFAF098AFAF094AFAF094AFAF094AFAF0912",
|
|
3834
4033
|
# },
|
|
3835
4034
|
# },
|
|
@@ -3843,6 +4042,7 @@ module Aws::MediaConvert
|
|
|
3843
4042
|
# },
|
|
3844
4043
|
# },
|
|
3845
4044
|
# fragment_length: 1,
|
|
4045
|
+
# fragment_length_control: "EXACT", # accepts EXACT, GOP_MULTIPLE
|
|
3846
4046
|
# manifest_encoding: "UTF8", # accepts UTF8, UTF16
|
|
3847
4047
|
# },
|
|
3848
4048
|
# type: "HLS_GROUP_SETTINGS", # accepts HLS_GROUP_SETTINGS, DASH_ISO_GROUP_SETTINGS, FILE_GROUP_SETTINGS, MS_SMOOTH_GROUP_SETTINGS, CMAF_GROUP_SETTINGS
|
|
@@ -3990,46 +4190,54 @@ module Aws::MediaConvert
|
|
|
3990
4190
|
# custom_language_code: "__stringPatternAZaZ23AZaZ",
|
|
3991
4191
|
# destination_settings: {
|
|
3992
4192
|
# burnin_destination_settings: {
|
|
3993
|
-
# alignment: "CENTERED", # accepts CENTERED, LEFT
|
|
3994
|
-
#
|
|
4193
|
+
# alignment: "CENTERED", # accepts CENTERED, LEFT, AUTO
|
|
4194
|
+
# apply_font_color: "WHITE_TEXT_ONLY", # accepts WHITE_TEXT_ONLY, ALL_TEXT
|
|
4195
|
+
# background_color: "NONE", # accepts NONE, BLACK, WHITE, AUTO
|
|
3995
4196
|
# background_opacity: 1,
|
|
3996
|
-
#
|
|
4197
|
+
# fallback_font: "BEST_MATCH", # accepts BEST_MATCH, MONOSPACED_SANSSERIF, MONOSPACED_SERIF, PROPORTIONAL_SANSSERIF, PROPORTIONAL_SERIF
|
|
4198
|
+
# font_color: "WHITE", # accepts WHITE, BLACK, YELLOW, RED, GREEN, BLUE, HEX, AUTO
|
|
3997
4199
|
# font_opacity: 1,
|
|
3998
4200
|
# font_resolution: 1,
|
|
3999
4201
|
# font_script: "AUTOMATIC", # accepts AUTOMATIC, HANS, HANT
|
|
4000
4202
|
# font_size: 1,
|
|
4001
|
-
#
|
|
4203
|
+
# hex_font_color: "__stringMin6Max8Pattern09aFAF609aFAF2",
|
|
4204
|
+
# outline_color: "BLACK", # accepts BLACK, WHITE, YELLOW, RED, GREEN, BLUE, AUTO
|
|
4002
4205
|
# outline_size: 1,
|
|
4003
|
-
# shadow_color: "NONE", # accepts NONE, BLACK, WHITE
|
|
4206
|
+
# shadow_color: "NONE", # accepts NONE, BLACK, WHITE, AUTO
|
|
4004
4207
|
# shadow_opacity: 1,
|
|
4005
4208
|
# shadow_x_offset: 1,
|
|
4006
4209
|
# shadow_y_offset: 1,
|
|
4007
|
-
#
|
|
4210
|
+
# style_passthrough: "ENABLED", # accepts ENABLED, DISABLED
|
|
4211
|
+
# teletext_spacing: "FIXED_GRID", # accepts FIXED_GRID, PROPORTIONAL, AUTO
|
|
4008
4212
|
# x_position: 1,
|
|
4009
4213
|
# y_position: 1,
|
|
4010
4214
|
# },
|
|
4011
4215
|
# destination_type: "BURN_IN", # accepts BURN_IN, DVB_SUB, EMBEDDED, EMBEDDED_PLUS_SCTE20, IMSC, SCTE20_PLUS_EMBEDDED, SCC, SRT, SMI, TELETEXT, TTML, WEBVTT
|
|
4012
4216
|
# dvb_sub_destination_settings: {
|
|
4013
|
-
# alignment: "CENTERED", # accepts CENTERED, LEFT
|
|
4014
|
-
#
|
|
4217
|
+
# alignment: "CENTERED", # accepts CENTERED, LEFT, AUTO
|
|
4218
|
+
# apply_font_color: "WHITE_TEXT_ONLY", # accepts WHITE_TEXT_ONLY, ALL_TEXT
|
|
4219
|
+
# background_color: "NONE", # accepts NONE, BLACK, WHITE, AUTO
|
|
4015
4220
|
# background_opacity: 1,
|
|
4016
4221
|
# dds_handling: "NONE", # accepts NONE, SPECIFIED, NO_DISPLAY_WINDOW
|
|
4017
4222
|
# dds_x_coordinate: 1,
|
|
4018
4223
|
# dds_y_coordinate: 1,
|
|
4019
|
-
#
|
|
4224
|
+
# fallback_font: "BEST_MATCH", # accepts BEST_MATCH, MONOSPACED_SANSSERIF, MONOSPACED_SERIF, PROPORTIONAL_SANSSERIF, PROPORTIONAL_SERIF
|
|
4225
|
+
# font_color: "WHITE", # accepts WHITE, BLACK, YELLOW, RED, GREEN, BLUE, HEX, AUTO
|
|
4020
4226
|
# font_opacity: 1,
|
|
4021
4227
|
# font_resolution: 1,
|
|
4022
4228
|
# font_script: "AUTOMATIC", # accepts AUTOMATIC, HANS, HANT
|
|
4023
4229
|
# font_size: 1,
|
|
4024
4230
|
# height: 1,
|
|
4025
|
-
#
|
|
4231
|
+
# hex_font_color: "__stringMin6Max8Pattern09aFAF609aFAF2",
|
|
4232
|
+
# outline_color: "BLACK", # accepts BLACK, WHITE, YELLOW, RED, GREEN, BLUE, AUTO
|
|
4026
4233
|
# outline_size: 1,
|
|
4027
|
-
# shadow_color: "NONE", # accepts NONE, BLACK, WHITE
|
|
4234
|
+
# shadow_color: "NONE", # accepts NONE, BLACK, WHITE, AUTO
|
|
4028
4235
|
# shadow_opacity: 1,
|
|
4029
4236
|
# shadow_x_offset: 1,
|
|
4030
4237
|
# shadow_y_offset: 1,
|
|
4238
|
+
# style_passthrough: "ENABLED", # accepts ENABLED, DISABLED
|
|
4031
4239
|
# subtitling_type: "HEARING_IMPAIRED", # accepts HEARING_IMPAIRED, STANDARD
|
|
4032
|
-
# teletext_spacing: "FIXED_GRID", # accepts FIXED_GRID, PROPORTIONAL
|
|
4240
|
+
# teletext_spacing: "FIXED_GRID", # accepts FIXED_GRID, PROPORTIONAL, AUTO
|
|
4033
4241
|
# width: 1,
|
|
4034
4242
|
# x_position: 1,
|
|
4035
4243
|
# y_position: 1,
|
|
@@ -4084,6 +4292,7 @@ module Aws::MediaConvert
|
|
|
4084
4292
|
# audio_pids: [1],
|
|
4085
4293
|
# bitrate: 1,
|
|
4086
4294
|
# buffer_model: "MULTIPLEX", # accepts MULTIPLEX, NONE
|
|
4295
|
+
# data_pts_control: "AUTO", # accepts AUTO, ALIGN_TO_VIDEO
|
|
4087
4296
|
# dvb_nit_settings: {
|
|
4088
4297
|
# network_id: 1,
|
|
4089
4298
|
# network_name: "__stringMin1Max256",
|
|
@@ -4133,6 +4342,7 @@ module Aws::MediaConvert
|
|
|
4133
4342
|
# audio_duration: "DEFAULT_CODEC_DURATION", # accepts DEFAULT_CODEC_DURATION, MATCH_VIDEO_DURATION
|
|
4134
4343
|
# audio_frames_per_pes: 1,
|
|
4135
4344
|
# audio_pids: [1],
|
|
4345
|
+
# data_pts_control: "AUTO", # accepts AUTO, ALIGN_TO_VIDEO
|
|
4136
4346
|
# max_pcr_interval: 1,
|
|
4137
4347
|
# nielsen_id_3: "INSERT", # accepts INSERT, NONE
|
|
4138
4348
|
# pat_interval: 1,
|
|
@@ -4243,7 +4453,7 @@ module Aws::MediaConvert
|
|
|
4243
4453
|
# codec_profile: "BASELINE", # accepts BASELINE, HIGH, HIGH_10BIT, HIGH_422, HIGH_422_10BIT, MAIN
|
|
4244
4454
|
# dynamic_sub_gop: "ADAPTIVE", # accepts ADAPTIVE, STATIC
|
|
4245
4455
|
# entropy_encoding: "CABAC", # accepts CABAC, CAVLC
|
|
4246
|
-
# field_encoding: "PAFF", # accepts PAFF, FORCE_FIELD
|
|
4456
|
+
# field_encoding: "PAFF", # accepts PAFF, FORCE_FIELD, MBAFF
|
|
4247
4457
|
# flicker_adaptive_quantization: "DISABLED", # accepts DISABLED, ENABLED
|
|
4248
4458
|
# framerate_control: "INITIALIZE_FROM_SOURCE", # accepts INITIALIZE_FROM_SOURCE, SPECIFIED
|
|
4249
4459
|
# framerate_conversion_algorithm: "DUPLICATE_DROP", # accepts DUPLICATE_DROP, INTERPOLATE, FRAMEFORMER
|
|
@@ -4993,6 +5203,7 @@ module Aws::MediaConvert
|
|
|
4993
5203
|
# },
|
|
4994
5204
|
# encryption: {
|
|
4995
5205
|
# encryption_type: "SERVER_SIDE_ENCRYPTION_S3", # accepts SERVER_SIDE_ENCRYPTION_S3, SERVER_SIDE_ENCRYPTION_KMS
|
|
5206
|
+
# kms_encryption_context: "__stringPatternAZaZ0902",
|
|
4996
5207
|
# kms_key_arn: "__stringPatternArnAwsUsGovCnKmsAZ26EastWestCentralNorthSouthEastWest1912D12KeyAFAF098AFAF094AFAF094AFAF094AFAF0912",
|
|
4997
5208
|
# },
|
|
4998
5209
|
# },
|
|
@@ -5017,7 +5228,15 @@ module Aws::MediaConvert
|
|
|
5017
5228
|
# type: "SPEKE", # accepts SPEKE, STATIC_KEY
|
|
5018
5229
|
# },
|
|
5019
5230
|
# fragment_length: 1,
|
|
5020
|
-
# image_based_trick_play: "NONE", # accepts NONE, THUMBNAIL, THUMBNAIL_AND_FULLFRAME
|
|
5231
|
+
# image_based_trick_play: "NONE", # accepts NONE, THUMBNAIL, THUMBNAIL_AND_FULLFRAME, ADVANCED
|
|
5232
|
+
# image_based_trick_play_settings: {
|
|
5233
|
+
# interval_cadence: "FOLLOW_IFRAME", # accepts FOLLOW_IFRAME, FOLLOW_CUSTOM
|
|
5234
|
+
# thumbnail_height: 1,
|
|
5235
|
+
# thumbnail_interval: 1.0,
|
|
5236
|
+
# thumbnail_width: 1,
|
|
5237
|
+
# tile_height: 1,
|
|
5238
|
+
# tile_width: 1,
|
|
5239
|
+
# },
|
|
5021
5240
|
# manifest_compression: "GZIP", # accepts GZIP, NONE
|
|
5022
5241
|
# manifest_duration_format: "FLOATING_POINT", # accepts FLOATING_POINT, INTEGER
|
|
5023
5242
|
# min_buffer_time: 1,
|
|
@@ -5026,6 +5245,7 @@ module Aws::MediaConvert
|
|
|
5026
5245
|
# pts_offset_handling_for_b_frames: "ZERO_BASED", # accepts ZERO_BASED, MATCH_INITIAL_PTS
|
|
5027
5246
|
# segment_control: "SINGLE_FILE", # accepts SINGLE_FILE, SEGMENTED_FILES
|
|
5028
5247
|
# segment_length: 1,
|
|
5248
|
+
# segment_length_control: "EXACT", # accepts EXACT, GOP_MULTIPLE
|
|
5029
5249
|
# stream_inf_resolution: "INCLUDE", # accepts INCLUDE, EXCLUDE
|
|
5030
5250
|
# target_duration_compatibility_mode: "LEGACY", # accepts LEGACY, SPEC_COMPLIANT
|
|
5031
5251
|
# write_dash_manifest: "DISABLED", # accepts DISABLED, ENABLED
|
|
@@ -5049,6 +5269,7 @@ module Aws::MediaConvert
|
|
|
5049
5269
|
# },
|
|
5050
5270
|
# encryption: {
|
|
5051
5271
|
# encryption_type: "SERVER_SIDE_ENCRYPTION_S3", # accepts SERVER_SIDE_ENCRYPTION_S3, SERVER_SIDE_ENCRYPTION_KMS
|
|
5272
|
+
# kms_encryption_context: "__stringPatternAZaZ0902",
|
|
5052
5273
|
# kms_key_arn: "__stringPatternArnAwsUsGovCnKmsAZ26EastWestCentralNorthSouthEastWest1912D12KeyAFAF098AFAF094AFAF094AFAF094AFAF0912",
|
|
5053
5274
|
# },
|
|
5054
5275
|
# },
|
|
@@ -5064,13 +5285,22 @@ module Aws::MediaConvert
|
|
|
5064
5285
|
# },
|
|
5065
5286
|
# fragment_length: 1,
|
|
5066
5287
|
# hbbtv_compliance: "HBBTV_1_5", # accepts HBBTV_1_5, NONE
|
|
5067
|
-
# image_based_trick_play: "NONE", # accepts NONE, THUMBNAIL, THUMBNAIL_AND_FULLFRAME
|
|
5288
|
+
# image_based_trick_play: "NONE", # accepts NONE, THUMBNAIL, THUMBNAIL_AND_FULLFRAME, ADVANCED
|
|
5289
|
+
# image_based_trick_play_settings: {
|
|
5290
|
+
# interval_cadence: "FOLLOW_IFRAME", # accepts FOLLOW_IFRAME, FOLLOW_CUSTOM
|
|
5291
|
+
# thumbnail_height: 1,
|
|
5292
|
+
# thumbnail_interval: 1.0,
|
|
5293
|
+
# thumbnail_width: 1,
|
|
5294
|
+
# tile_height: 1,
|
|
5295
|
+
# tile_width: 1,
|
|
5296
|
+
# },
|
|
5068
5297
|
# min_buffer_time: 1,
|
|
5069
5298
|
# min_final_segment_length: 1.0,
|
|
5070
5299
|
# mpd_profile: "MAIN_PROFILE", # accepts MAIN_PROFILE, ON_DEMAND_PROFILE
|
|
5071
5300
|
# pts_offset_handling_for_b_frames: "ZERO_BASED", # accepts ZERO_BASED, MATCH_INITIAL_PTS
|
|
5072
5301
|
# segment_control: "SINGLE_FILE", # accepts SINGLE_FILE, SEGMENTED_FILES
|
|
5073
5302
|
# segment_length: 1,
|
|
5303
|
+
# segment_length_control: "EXACT", # accepts EXACT, GOP_MULTIPLE
|
|
5074
5304
|
# write_segment_timeline_in_representation: "ENABLED", # accepts ENABLED, DISABLED
|
|
5075
5305
|
# },
|
|
5076
5306
|
# file_group_settings: {
|
|
@@ -5082,6 +5312,7 @@ module Aws::MediaConvert
|
|
|
5082
5312
|
# },
|
|
5083
5313
|
# encryption: {
|
|
5084
5314
|
# encryption_type: "SERVER_SIDE_ENCRYPTION_S3", # accepts SERVER_SIDE_ENCRYPTION_S3, SERVER_SIDE_ENCRYPTION_KMS
|
|
5315
|
+
# kms_encryption_context: "__stringPatternAZaZ0902",
|
|
5085
5316
|
# kms_key_arn: "__stringPatternArnAwsUsGovCnKmsAZ26EastWestCentralNorthSouthEastWest1912D12KeyAFAF098AFAF094AFAF094AFAF094AFAF0912",
|
|
5086
5317
|
# },
|
|
5087
5318
|
# },
|
|
@@ -5116,6 +5347,7 @@ module Aws::MediaConvert
|
|
|
5116
5347
|
# },
|
|
5117
5348
|
# encryption: {
|
|
5118
5349
|
# encryption_type: "SERVER_SIDE_ENCRYPTION_S3", # accepts SERVER_SIDE_ENCRYPTION_S3, SERVER_SIDE_ENCRYPTION_KMS
|
|
5350
|
+
# kms_encryption_context: "__stringPatternAZaZ0902",
|
|
5119
5351
|
# kms_key_arn: "__stringPatternArnAwsUsGovCnKmsAZ26EastWestCentralNorthSouthEastWest1912D12KeyAFAF098AFAF094AFAF094AFAF094AFAF0912",
|
|
5120
5352
|
# },
|
|
5121
5353
|
# },
|
|
@@ -5140,7 +5372,15 @@ module Aws::MediaConvert
|
|
|
5140
5372
|
# },
|
|
5141
5373
|
# type: "SPEKE", # accepts SPEKE, STATIC_KEY
|
|
5142
5374
|
# },
|
|
5143
|
-
# image_based_trick_play: "NONE", # accepts NONE, THUMBNAIL, THUMBNAIL_AND_FULLFRAME
|
|
5375
|
+
# image_based_trick_play: "NONE", # accepts NONE, THUMBNAIL, THUMBNAIL_AND_FULLFRAME, ADVANCED
|
|
5376
|
+
# image_based_trick_play_settings: {
|
|
5377
|
+
# interval_cadence: "FOLLOW_IFRAME", # accepts FOLLOW_IFRAME, FOLLOW_CUSTOM
|
|
5378
|
+
# thumbnail_height: 1,
|
|
5379
|
+
# thumbnail_interval: 1.0,
|
|
5380
|
+
# thumbnail_width: 1,
|
|
5381
|
+
# tile_height: 1,
|
|
5382
|
+
# tile_width: 1,
|
|
5383
|
+
# },
|
|
5144
5384
|
# manifest_compression: "GZIP", # accepts GZIP, NONE
|
|
5145
5385
|
# manifest_duration_format: "FLOATING_POINT", # accepts FLOATING_POINT, INTEGER
|
|
5146
5386
|
# min_final_segment_length: 1.0,
|
|
@@ -5150,6 +5390,7 @@ module Aws::MediaConvert
|
|
|
5150
5390
|
# program_date_time_period: 1,
|
|
5151
5391
|
# segment_control: "SINGLE_FILE", # accepts SINGLE_FILE, SEGMENTED_FILES
|
|
5152
5392
|
# segment_length: 1,
|
|
5393
|
+
# segment_length_control: "EXACT", # accepts EXACT, GOP_MULTIPLE
|
|
5153
5394
|
# segments_per_subdirectory: 1,
|
|
5154
5395
|
# stream_inf_resolution: "INCLUDE", # accepts INCLUDE, EXCLUDE
|
|
5155
5396
|
# target_duration_compatibility_mode: "LEGACY", # accepts LEGACY, SPEC_COMPLIANT
|
|
@@ -5173,6 +5414,7 @@ module Aws::MediaConvert
|
|
|
5173
5414
|
# },
|
|
5174
5415
|
# encryption: {
|
|
5175
5416
|
# encryption_type: "SERVER_SIDE_ENCRYPTION_S3", # accepts SERVER_SIDE_ENCRYPTION_S3, SERVER_SIDE_ENCRYPTION_KMS
|
|
5417
|
+
# kms_encryption_context: "__stringPatternAZaZ0902",
|
|
5176
5418
|
# kms_key_arn: "__stringPatternArnAwsUsGovCnKmsAZ26EastWestCentralNorthSouthEastWest1912D12KeyAFAF098AFAF094AFAF094AFAF094AFAF0912",
|
|
5177
5419
|
# },
|
|
5178
5420
|
# },
|
|
@@ -5186,6 +5428,7 @@ module Aws::MediaConvert
|
|
|
5186
5428
|
# },
|
|
5187
5429
|
# },
|
|
5188
5430
|
# fragment_length: 1,
|
|
5431
|
+
# fragment_length_control: "EXACT", # accepts EXACT, GOP_MULTIPLE
|
|
5189
5432
|
# manifest_encoding: "UTF8", # accepts UTF8, UTF16
|
|
5190
5433
|
# },
|
|
5191
5434
|
# type: "HLS_GROUP_SETTINGS", # accepts HLS_GROUP_SETTINGS, DASH_ISO_GROUP_SETTINGS, FILE_GROUP_SETTINGS, MS_SMOOTH_GROUP_SETTINGS, CMAF_GROUP_SETTINGS
|
|
@@ -5333,46 +5576,54 @@ module Aws::MediaConvert
|
|
|
5333
5576
|
# custom_language_code: "__stringPatternAZaZ23AZaZ",
|
|
5334
5577
|
# destination_settings: {
|
|
5335
5578
|
# burnin_destination_settings: {
|
|
5336
|
-
# alignment: "CENTERED", # accepts CENTERED, LEFT
|
|
5337
|
-
#
|
|
5579
|
+
# alignment: "CENTERED", # accepts CENTERED, LEFT, AUTO
|
|
5580
|
+
# apply_font_color: "WHITE_TEXT_ONLY", # accepts WHITE_TEXT_ONLY, ALL_TEXT
|
|
5581
|
+
# background_color: "NONE", # accepts NONE, BLACK, WHITE, AUTO
|
|
5338
5582
|
# background_opacity: 1,
|
|
5339
|
-
#
|
|
5583
|
+
# fallback_font: "BEST_MATCH", # accepts BEST_MATCH, MONOSPACED_SANSSERIF, MONOSPACED_SERIF, PROPORTIONAL_SANSSERIF, PROPORTIONAL_SERIF
|
|
5584
|
+
# font_color: "WHITE", # accepts WHITE, BLACK, YELLOW, RED, GREEN, BLUE, HEX, AUTO
|
|
5340
5585
|
# font_opacity: 1,
|
|
5341
5586
|
# font_resolution: 1,
|
|
5342
5587
|
# font_script: "AUTOMATIC", # accepts AUTOMATIC, HANS, HANT
|
|
5343
5588
|
# font_size: 1,
|
|
5344
|
-
#
|
|
5589
|
+
# hex_font_color: "__stringMin6Max8Pattern09aFAF609aFAF2",
|
|
5590
|
+
# outline_color: "BLACK", # accepts BLACK, WHITE, YELLOW, RED, GREEN, BLUE, AUTO
|
|
5345
5591
|
# outline_size: 1,
|
|
5346
|
-
# shadow_color: "NONE", # accepts NONE, BLACK, WHITE
|
|
5592
|
+
# shadow_color: "NONE", # accepts NONE, BLACK, WHITE, AUTO
|
|
5347
5593
|
# shadow_opacity: 1,
|
|
5348
5594
|
# shadow_x_offset: 1,
|
|
5349
5595
|
# shadow_y_offset: 1,
|
|
5350
|
-
#
|
|
5596
|
+
# style_passthrough: "ENABLED", # accepts ENABLED, DISABLED
|
|
5597
|
+
# teletext_spacing: "FIXED_GRID", # accepts FIXED_GRID, PROPORTIONAL, AUTO
|
|
5351
5598
|
# x_position: 1,
|
|
5352
5599
|
# y_position: 1,
|
|
5353
5600
|
# },
|
|
5354
5601
|
# destination_type: "BURN_IN", # accepts BURN_IN, DVB_SUB, EMBEDDED, EMBEDDED_PLUS_SCTE20, IMSC, SCTE20_PLUS_EMBEDDED, SCC, SRT, SMI, TELETEXT, TTML, WEBVTT
|
|
5355
5602
|
# dvb_sub_destination_settings: {
|
|
5356
|
-
# alignment: "CENTERED", # accepts CENTERED, LEFT
|
|
5357
|
-
#
|
|
5603
|
+
# alignment: "CENTERED", # accepts CENTERED, LEFT, AUTO
|
|
5604
|
+
# apply_font_color: "WHITE_TEXT_ONLY", # accepts WHITE_TEXT_ONLY, ALL_TEXT
|
|
5605
|
+
# background_color: "NONE", # accepts NONE, BLACK, WHITE, AUTO
|
|
5358
5606
|
# background_opacity: 1,
|
|
5359
5607
|
# dds_handling: "NONE", # accepts NONE, SPECIFIED, NO_DISPLAY_WINDOW
|
|
5360
5608
|
# dds_x_coordinate: 1,
|
|
5361
5609
|
# dds_y_coordinate: 1,
|
|
5362
|
-
#
|
|
5610
|
+
# fallback_font: "BEST_MATCH", # accepts BEST_MATCH, MONOSPACED_SANSSERIF, MONOSPACED_SERIF, PROPORTIONAL_SANSSERIF, PROPORTIONAL_SERIF
|
|
5611
|
+
# font_color: "WHITE", # accepts WHITE, BLACK, YELLOW, RED, GREEN, BLUE, HEX, AUTO
|
|
5363
5612
|
# font_opacity: 1,
|
|
5364
5613
|
# font_resolution: 1,
|
|
5365
5614
|
# font_script: "AUTOMATIC", # accepts AUTOMATIC, HANS, HANT
|
|
5366
5615
|
# font_size: 1,
|
|
5367
5616
|
# height: 1,
|
|
5368
|
-
#
|
|
5617
|
+
# hex_font_color: "__stringMin6Max8Pattern09aFAF609aFAF2",
|
|
5618
|
+
# outline_color: "BLACK", # accepts BLACK, WHITE, YELLOW, RED, GREEN, BLUE, AUTO
|
|
5369
5619
|
# outline_size: 1,
|
|
5370
|
-
# shadow_color: "NONE", # accepts NONE, BLACK, WHITE
|
|
5620
|
+
# shadow_color: "NONE", # accepts NONE, BLACK, WHITE, AUTO
|
|
5371
5621
|
# shadow_opacity: 1,
|
|
5372
5622
|
# shadow_x_offset: 1,
|
|
5373
5623
|
# shadow_y_offset: 1,
|
|
5624
|
+
# style_passthrough: "ENABLED", # accepts ENABLED, DISABLED
|
|
5374
5625
|
# subtitling_type: "HEARING_IMPAIRED", # accepts HEARING_IMPAIRED, STANDARD
|
|
5375
|
-
# teletext_spacing: "FIXED_GRID", # accepts FIXED_GRID, PROPORTIONAL
|
|
5626
|
+
# teletext_spacing: "FIXED_GRID", # accepts FIXED_GRID, PROPORTIONAL, AUTO
|
|
5376
5627
|
# width: 1,
|
|
5377
5628
|
# x_position: 1,
|
|
5378
5629
|
# y_position: 1,
|
|
@@ -5427,6 +5678,7 @@ module Aws::MediaConvert
|
|
|
5427
5678
|
# audio_pids: [1],
|
|
5428
5679
|
# bitrate: 1,
|
|
5429
5680
|
# buffer_model: "MULTIPLEX", # accepts MULTIPLEX, NONE
|
|
5681
|
+
# data_pts_control: "AUTO", # accepts AUTO, ALIGN_TO_VIDEO
|
|
5430
5682
|
# dvb_nit_settings: {
|
|
5431
5683
|
# network_id: 1,
|
|
5432
5684
|
# network_name: "__stringMin1Max256",
|
|
@@ -5476,6 +5728,7 @@ module Aws::MediaConvert
|
|
|
5476
5728
|
# audio_duration: "DEFAULT_CODEC_DURATION", # accepts DEFAULT_CODEC_DURATION, MATCH_VIDEO_DURATION
|
|
5477
5729
|
# audio_frames_per_pes: 1,
|
|
5478
5730
|
# audio_pids: [1],
|
|
5731
|
+
# data_pts_control: "AUTO", # accepts AUTO, ALIGN_TO_VIDEO
|
|
5479
5732
|
# max_pcr_interval: 1,
|
|
5480
5733
|
# nielsen_id_3: "INSERT", # accepts INSERT, NONE
|
|
5481
5734
|
# pat_interval: 1,
|
|
@@ -5586,7 +5839,7 @@ module Aws::MediaConvert
|
|
|
5586
5839
|
# codec_profile: "BASELINE", # accepts BASELINE, HIGH, HIGH_10BIT, HIGH_422, HIGH_422_10BIT, MAIN
|
|
5587
5840
|
# dynamic_sub_gop: "ADAPTIVE", # accepts ADAPTIVE, STATIC
|
|
5588
5841
|
# entropy_encoding: "CABAC", # accepts CABAC, CAVLC
|
|
5589
|
-
# field_encoding: "PAFF", # accepts PAFF, FORCE_FIELD
|
|
5842
|
+
# field_encoding: "PAFF", # accepts PAFF, FORCE_FIELD, MBAFF
|
|
5590
5843
|
# flicker_adaptive_quantization: "DISABLED", # accepts DISABLED, ENABLED
|
|
5591
5844
|
# framerate_control: "INITIALIZE_FROM_SOURCE", # accepts INITIALIZE_FROM_SOURCE, SPECIFIED
|
|
5592
5845
|
# framerate_conversion_algorithm: "DUPLICATE_DROP", # accepts DUPLICATE_DROP, INTERPOLATE, FRAMEFORMER
|
|
@@ -6182,46 +6435,54 @@ module Aws::MediaConvert
|
|
|
6182
6435
|
# custom_language_code: "__stringPatternAZaZ23AZaZ",
|
|
6183
6436
|
# destination_settings: {
|
|
6184
6437
|
# burnin_destination_settings: {
|
|
6185
|
-
# alignment: "CENTERED", # accepts CENTERED, LEFT
|
|
6186
|
-
#
|
|
6438
|
+
# alignment: "CENTERED", # accepts CENTERED, LEFT, AUTO
|
|
6439
|
+
# apply_font_color: "WHITE_TEXT_ONLY", # accepts WHITE_TEXT_ONLY, ALL_TEXT
|
|
6440
|
+
# background_color: "NONE", # accepts NONE, BLACK, WHITE, AUTO
|
|
6187
6441
|
# background_opacity: 1,
|
|
6188
|
-
#
|
|
6442
|
+
# fallback_font: "BEST_MATCH", # accepts BEST_MATCH, MONOSPACED_SANSSERIF, MONOSPACED_SERIF, PROPORTIONAL_SANSSERIF, PROPORTIONAL_SERIF
|
|
6443
|
+
# font_color: "WHITE", # accepts WHITE, BLACK, YELLOW, RED, GREEN, BLUE, HEX, AUTO
|
|
6189
6444
|
# font_opacity: 1,
|
|
6190
6445
|
# font_resolution: 1,
|
|
6191
6446
|
# font_script: "AUTOMATIC", # accepts AUTOMATIC, HANS, HANT
|
|
6192
6447
|
# font_size: 1,
|
|
6193
|
-
#
|
|
6448
|
+
# hex_font_color: "__stringMin6Max8Pattern09aFAF609aFAF2",
|
|
6449
|
+
# outline_color: "BLACK", # accepts BLACK, WHITE, YELLOW, RED, GREEN, BLUE, AUTO
|
|
6194
6450
|
# outline_size: 1,
|
|
6195
|
-
# shadow_color: "NONE", # accepts NONE, BLACK, WHITE
|
|
6451
|
+
# shadow_color: "NONE", # accepts NONE, BLACK, WHITE, AUTO
|
|
6196
6452
|
# shadow_opacity: 1,
|
|
6197
6453
|
# shadow_x_offset: 1,
|
|
6198
6454
|
# shadow_y_offset: 1,
|
|
6199
|
-
#
|
|
6455
|
+
# style_passthrough: "ENABLED", # accepts ENABLED, DISABLED
|
|
6456
|
+
# teletext_spacing: "FIXED_GRID", # accepts FIXED_GRID, PROPORTIONAL, AUTO
|
|
6200
6457
|
# x_position: 1,
|
|
6201
6458
|
# y_position: 1,
|
|
6202
6459
|
# },
|
|
6203
6460
|
# destination_type: "BURN_IN", # accepts BURN_IN, DVB_SUB, EMBEDDED, EMBEDDED_PLUS_SCTE20, IMSC, SCTE20_PLUS_EMBEDDED, SCC, SRT, SMI, TELETEXT, TTML, WEBVTT
|
|
6204
6461
|
# dvb_sub_destination_settings: {
|
|
6205
|
-
# alignment: "CENTERED", # accepts CENTERED, LEFT
|
|
6206
|
-
#
|
|
6462
|
+
# alignment: "CENTERED", # accepts CENTERED, LEFT, AUTO
|
|
6463
|
+
# apply_font_color: "WHITE_TEXT_ONLY", # accepts WHITE_TEXT_ONLY, ALL_TEXT
|
|
6464
|
+
# background_color: "NONE", # accepts NONE, BLACK, WHITE, AUTO
|
|
6207
6465
|
# background_opacity: 1,
|
|
6208
6466
|
# dds_handling: "NONE", # accepts NONE, SPECIFIED, NO_DISPLAY_WINDOW
|
|
6209
6467
|
# dds_x_coordinate: 1,
|
|
6210
6468
|
# dds_y_coordinate: 1,
|
|
6211
|
-
#
|
|
6469
|
+
# fallback_font: "BEST_MATCH", # accepts BEST_MATCH, MONOSPACED_SANSSERIF, MONOSPACED_SERIF, PROPORTIONAL_SANSSERIF, PROPORTIONAL_SERIF
|
|
6470
|
+
# font_color: "WHITE", # accepts WHITE, BLACK, YELLOW, RED, GREEN, BLUE, HEX, AUTO
|
|
6212
6471
|
# font_opacity: 1,
|
|
6213
6472
|
# font_resolution: 1,
|
|
6214
6473
|
# font_script: "AUTOMATIC", # accepts AUTOMATIC, HANS, HANT
|
|
6215
6474
|
# font_size: 1,
|
|
6216
6475
|
# height: 1,
|
|
6217
|
-
#
|
|
6476
|
+
# hex_font_color: "__stringMin6Max8Pattern09aFAF609aFAF2",
|
|
6477
|
+
# outline_color: "BLACK", # accepts BLACK, WHITE, YELLOW, RED, GREEN, BLUE, AUTO
|
|
6218
6478
|
# outline_size: 1,
|
|
6219
|
-
# shadow_color: "NONE", # accepts NONE, BLACK, WHITE
|
|
6479
|
+
# shadow_color: "NONE", # accepts NONE, BLACK, WHITE, AUTO
|
|
6220
6480
|
# shadow_opacity: 1,
|
|
6221
6481
|
# shadow_x_offset: 1,
|
|
6222
6482
|
# shadow_y_offset: 1,
|
|
6483
|
+
# style_passthrough: "ENABLED", # accepts ENABLED, DISABLED
|
|
6223
6484
|
# subtitling_type: "HEARING_IMPAIRED", # accepts HEARING_IMPAIRED, STANDARD
|
|
6224
|
-
# teletext_spacing: "FIXED_GRID", # accepts FIXED_GRID, PROPORTIONAL
|
|
6485
|
+
# teletext_spacing: "FIXED_GRID", # accepts FIXED_GRID, PROPORTIONAL, AUTO
|
|
6225
6486
|
# width: 1,
|
|
6226
6487
|
# x_position: 1,
|
|
6227
6488
|
# y_position: 1,
|
|
@@ -6276,6 +6537,7 @@ module Aws::MediaConvert
|
|
|
6276
6537
|
# audio_pids: [1],
|
|
6277
6538
|
# bitrate: 1,
|
|
6278
6539
|
# buffer_model: "MULTIPLEX", # accepts MULTIPLEX, NONE
|
|
6540
|
+
# data_pts_control: "AUTO", # accepts AUTO, ALIGN_TO_VIDEO
|
|
6279
6541
|
# dvb_nit_settings: {
|
|
6280
6542
|
# network_id: 1,
|
|
6281
6543
|
# network_name: "__stringMin1Max256",
|
|
@@ -6325,6 +6587,7 @@ module Aws::MediaConvert
|
|
|
6325
6587
|
# audio_duration: "DEFAULT_CODEC_DURATION", # accepts DEFAULT_CODEC_DURATION, MATCH_VIDEO_DURATION
|
|
6326
6588
|
# audio_frames_per_pes: 1,
|
|
6327
6589
|
# audio_pids: [1],
|
|
6590
|
+
# data_pts_control: "AUTO", # accepts AUTO, ALIGN_TO_VIDEO
|
|
6328
6591
|
# max_pcr_interval: 1,
|
|
6329
6592
|
# nielsen_id_3: "INSERT", # accepts INSERT, NONE
|
|
6330
6593
|
# pat_interval: 1,
|
|
@@ -6421,7 +6684,7 @@ module Aws::MediaConvert
|
|
|
6421
6684
|
# codec_profile: "BASELINE", # accepts BASELINE, HIGH, HIGH_10BIT, HIGH_422, HIGH_422_10BIT, MAIN
|
|
6422
6685
|
# dynamic_sub_gop: "ADAPTIVE", # accepts ADAPTIVE, STATIC
|
|
6423
6686
|
# entropy_encoding: "CABAC", # accepts CABAC, CAVLC
|
|
6424
|
-
# field_encoding: "PAFF", # accepts PAFF, FORCE_FIELD
|
|
6687
|
+
# field_encoding: "PAFF", # accepts PAFF, FORCE_FIELD, MBAFF
|
|
6425
6688
|
# flicker_adaptive_quantization: "DISABLED", # accepts DISABLED, ENABLED
|
|
6426
6689
|
# framerate_control: "INITIALIZE_FROM_SOURCE", # accepts INITIALIZE_FROM_SOURCE, SPECIFIED
|
|
6427
6690
|
# framerate_conversion_algorithm: "DUPLICATE_DROP", # accepts DUPLICATE_DROP, INTERPOLATE, FRAMEFORMER
|
|
@@ -6997,6 +7260,7 @@ module Aws::MediaConvert
|
|
|
6997
7260
|
# },
|
|
6998
7261
|
# encryption: {
|
|
6999
7262
|
# encryption_type: "SERVER_SIDE_ENCRYPTION_S3", # accepts SERVER_SIDE_ENCRYPTION_S3, SERVER_SIDE_ENCRYPTION_KMS
|
|
7263
|
+
# kms_encryption_context: "__stringPatternAZaZ0902",
|
|
7000
7264
|
# kms_key_arn: "__stringPatternArnAwsUsGovCnKmsAZ26EastWestCentralNorthSouthEastWest1912D12KeyAFAF098AFAF094AFAF094AFAF094AFAF0912",
|
|
7001
7265
|
# },
|
|
7002
7266
|
# },
|
|
@@ -7012,13 +7276,22 @@ module Aws::MediaConvert
|
|
|
7012
7276
|
# },
|
|
7013
7277
|
# fragment_length: 1,
|
|
7014
7278
|
# hbbtv_compliance: "HBBTV_1_5", # accepts HBBTV_1_5, NONE
|
|
7015
|
-
# image_based_trick_play: "NONE", # accepts NONE, THUMBNAIL, THUMBNAIL_AND_FULLFRAME
|
|
7279
|
+
# image_based_trick_play: "NONE", # accepts NONE, THUMBNAIL, THUMBNAIL_AND_FULLFRAME, ADVANCED
|
|
7280
|
+
# image_based_trick_play_settings: {
|
|
7281
|
+
# interval_cadence: "FOLLOW_IFRAME", # accepts FOLLOW_IFRAME, FOLLOW_CUSTOM
|
|
7282
|
+
# thumbnail_height: 1,
|
|
7283
|
+
# thumbnail_interval: 1.0,
|
|
7284
|
+
# thumbnail_width: 1,
|
|
7285
|
+
# tile_height: 1,
|
|
7286
|
+
# tile_width: 1,
|
|
7287
|
+
# },
|
|
7016
7288
|
# min_buffer_time: 1,
|
|
7017
7289
|
# min_final_segment_length: 1.0,
|
|
7018
7290
|
# mpd_profile: "MAIN_PROFILE", # accepts MAIN_PROFILE, ON_DEMAND_PROFILE
|
|
7019
7291
|
# pts_offset_handling_for_b_frames: "ZERO_BASED", # accepts ZERO_BASED, MATCH_INITIAL_PTS
|
|
7020
7292
|
# segment_control: "SINGLE_FILE", # accepts SINGLE_FILE, SEGMENTED_FILES
|
|
7021
7293
|
# segment_length: 1,
|
|
7294
|
+
# segment_length_control: "EXACT", # accepts EXACT, GOP_MULTIPLE
|
|
7022
7295
|
# write_segment_timeline_in_representation: "ENABLED", # accepts ENABLED, DISABLED
|
|
7023
7296
|
# }
|
|
7024
7297
|
#
|
|
@@ -7094,6 +7367,11 @@ module Aws::MediaConvert
|
|
|
7094
7367
|
# https://developer.roku.com/docs/developer-program/media-playback/trick-mode/hls-and-dash.md
|
|
7095
7368
|
# @return [String]
|
|
7096
7369
|
#
|
|
7370
|
+
# @!attribute [rw] image_based_trick_play_settings
|
|
7371
|
+
# Tile and thumbnail settings applicable when imageBasedTrickPlay is
|
|
7372
|
+
# ADVANCED
|
|
7373
|
+
# @return [Types::DashIsoImageBasedTrickPlaySettings]
|
|
7374
|
+
#
|
|
7097
7375
|
# @!attribute [rw] min_buffer_time
|
|
7098
7376
|
# Minimum time of initially buffered media that is needed to ensure
|
|
7099
7377
|
# smooth playout.
|
|
@@ -7147,14 +7425,24 @@ module Aws::MediaConvert
|
|
|
7147
7425
|
# @return [String]
|
|
7148
7426
|
#
|
|
7149
7427
|
# @!attribute [rw] segment_length
|
|
7150
|
-
#
|
|
7151
|
-
#
|
|
7152
|
-
#
|
|
7153
|
-
#
|
|
7154
|
-
#
|
|
7155
|
-
#
|
|
7428
|
+
# Specify the length, in whole seconds, of each segment. When you
|
|
7429
|
+
# don't specify a value, MediaConvert defaults to 30. Related
|
|
7430
|
+
# settings: Use Segment length control (SegmentLengthControl) to
|
|
7431
|
+
# specify whether the encoder enforces this value strictly. Use
|
|
7432
|
+
# Segment control (DashIsoSegmentControl) to specify whether
|
|
7433
|
+
# MediaConvert creates separate segment files or one content file that
|
|
7434
|
+
# has metadata to mark the segment boundaries.
|
|
7156
7435
|
# @return [Integer]
|
|
7157
7436
|
#
|
|
7437
|
+
# @!attribute [rw] segment_length_control
|
|
7438
|
+
# Specify how you want MediaConvert to determine the segment length.
|
|
7439
|
+
# Choose Exact (EXACT) to have the encoder use the exact length that
|
|
7440
|
+
# you specify with the setting Segment length (SegmentLength). This
|
|
7441
|
+
# might result in extra I-frames. Choose Multiple of GOP
|
|
7442
|
+
# (GOP\_MULTIPLE) to have the encoder round up the segment lengths to
|
|
7443
|
+
# match the next GOP boundary.
|
|
7444
|
+
# @return [String]
|
|
7445
|
+
#
|
|
7158
7446
|
# @!attribute [rw] write_segment_timeline_in_representation
|
|
7159
7447
|
# If you get an HTTP error in the 400 range when you play back your
|
|
7160
7448
|
# DASH output, enable this setting and run your transcoding job again.
|
|
@@ -7178,17 +7466,86 @@ module Aws::MediaConvert
|
|
|
7178
7466
|
:fragment_length,
|
|
7179
7467
|
:hbbtv_compliance,
|
|
7180
7468
|
:image_based_trick_play,
|
|
7469
|
+
:image_based_trick_play_settings,
|
|
7181
7470
|
:min_buffer_time,
|
|
7182
7471
|
:min_final_segment_length,
|
|
7183
7472
|
:mpd_profile,
|
|
7184
7473
|
:pts_offset_handling_for_b_frames,
|
|
7185
7474
|
:segment_control,
|
|
7186
7475
|
:segment_length,
|
|
7476
|
+
:segment_length_control,
|
|
7187
7477
|
:write_segment_timeline_in_representation)
|
|
7188
7478
|
SENSITIVE = []
|
|
7189
7479
|
include Aws::Structure
|
|
7190
7480
|
end
|
|
7191
7481
|
|
|
7482
|
+
# Tile and thumbnail settings applicable when imageBasedTrickPlay is
|
|
7483
|
+
# ADVANCED
|
|
7484
|
+
#
|
|
7485
|
+
# @note When making an API call, you may pass DashIsoImageBasedTrickPlaySettings
|
|
7486
|
+
# data as a hash:
|
|
7487
|
+
#
|
|
7488
|
+
# {
|
|
7489
|
+
# interval_cadence: "FOLLOW_IFRAME", # accepts FOLLOW_IFRAME, FOLLOW_CUSTOM
|
|
7490
|
+
# thumbnail_height: 1,
|
|
7491
|
+
# thumbnail_interval: 1.0,
|
|
7492
|
+
# thumbnail_width: 1,
|
|
7493
|
+
# tile_height: 1,
|
|
7494
|
+
# tile_width: 1,
|
|
7495
|
+
# }
|
|
7496
|
+
#
|
|
7497
|
+
# @!attribute [rw] interval_cadence
|
|
7498
|
+
# The cadence MediaConvert follows for generating thumbnails. If set
|
|
7499
|
+
# to FOLLOW\_IFRAME, MediaConvert generates thumbnails for each IDR
|
|
7500
|
+
# frame in the output (matching the GOP cadence). If set to
|
|
7501
|
+
# FOLLOW\_CUSTOM, MediaConvert generates thumbnails according to the
|
|
7502
|
+
# interval you specify in thumbnailInterval.
|
|
7503
|
+
# @return [String]
|
|
7504
|
+
#
|
|
7505
|
+
# @!attribute [rw] thumbnail_height
|
|
7506
|
+
# Height of each thumbnail within each tile image, in pixels. Leave
|
|
7507
|
+
# blank to maintain aspect ratio with thumbnail width. If following
|
|
7508
|
+
# the aspect ratio would lead to a total tile height greater than
|
|
7509
|
+
# 4096, then the job will be rejected. Must be divisible by 2.
|
|
7510
|
+
# @return [Integer]
|
|
7511
|
+
#
|
|
7512
|
+
# @!attribute [rw] thumbnail_interval
|
|
7513
|
+
# Enter the interval, in seconds, that MediaConvert uses to generate
|
|
7514
|
+
# thumbnails. If the interval you enter doesn't align with the output
|
|
7515
|
+
# frame rate, MediaConvert automatically rounds the interval to align
|
|
7516
|
+
# with the output frame rate. For example, if the output frame rate is
|
|
7517
|
+
# 29.97 frames per second and you enter 5, MediaConvert uses a 150
|
|
7518
|
+
# frame interval to generate thumbnails.
|
|
7519
|
+
# @return [Float]
|
|
7520
|
+
#
|
|
7521
|
+
# @!attribute [rw] thumbnail_width
|
|
7522
|
+
# Width of each thumbnail within each tile image, in pixels. Default
|
|
7523
|
+
# is 312. Must be divisible by 8.
|
|
7524
|
+
# @return [Integer]
|
|
7525
|
+
#
|
|
7526
|
+
# @!attribute [rw] tile_height
|
|
7527
|
+
# Number of thumbnails in each column of a tile image. Set a value
|
|
7528
|
+
# between 2 and 2048. Must be divisible by 2.
|
|
7529
|
+
# @return [Integer]
|
|
7530
|
+
#
|
|
7531
|
+
# @!attribute [rw] tile_width
|
|
7532
|
+
# Number of thumbnails in each row of a tile image. Set a value
|
|
7533
|
+
# between 1 and 512.
|
|
7534
|
+
# @return [Integer]
|
|
7535
|
+
#
|
|
7536
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconvert-2017-08-29/DashIsoImageBasedTrickPlaySettings AWS API Documentation
|
|
7537
|
+
#
|
|
7538
|
+
class DashIsoImageBasedTrickPlaySettings < Struct.new(
|
|
7539
|
+
:interval_cadence,
|
|
7540
|
+
:thumbnail_height,
|
|
7541
|
+
:thumbnail_interval,
|
|
7542
|
+
:thumbnail_width,
|
|
7543
|
+
:tile_height,
|
|
7544
|
+
:tile_width)
|
|
7545
|
+
SENSITIVE = []
|
|
7546
|
+
include Aws::Structure
|
|
7547
|
+
end
|
|
7548
|
+
|
|
7192
7549
|
# Settings for deinterlacer
|
|
7193
7550
|
#
|
|
7194
7551
|
# @note When making an API call, you may pass Deinterlacer
|
|
@@ -7268,6 +7625,20 @@ module Aws::MediaConvert
|
|
|
7268
7625
|
#
|
|
7269
7626
|
class DeleteJobTemplateResponse < Aws::EmptyStructure; end
|
|
7270
7627
|
|
|
7628
|
+
# Send a request to permanently delete a policy that you created.
|
|
7629
|
+
#
|
|
7630
|
+
# @api private
|
|
7631
|
+
#
|
|
7632
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconvert-2017-08-29/DeletePolicyRequest AWS API Documentation
|
|
7633
|
+
#
|
|
7634
|
+
class DeletePolicyRequest < Aws::EmptyStructure; end
|
|
7635
|
+
|
|
7636
|
+
# Successful DELETE policy requests will return an OK message.
|
|
7637
|
+
#
|
|
7638
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconvert-2017-08-29/DeletePolicyResponse AWS API Documentation
|
|
7639
|
+
#
|
|
7640
|
+
class DeletePolicyResponse < Aws::EmptyStructure; end
|
|
7641
|
+
|
|
7271
7642
|
# Delete a preset by sending a request with the preset name
|
|
7272
7643
|
#
|
|
7273
7644
|
# @note When making an API call, you may pass DeletePresetRequest
|
|
@@ -7399,6 +7770,7 @@ module Aws::MediaConvert
|
|
|
7399
7770
|
# },
|
|
7400
7771
|
# encryption: {
|
|
7401
7772
|
# encryption_type: "SERVER_SIDE_ENCRYPTION_S3", # accepts SERVER_SIDE_ENCRYPTION_S3, SERVER_SIDE_ENCRYPTION_KMS
|
|
7773
|
+
# kms_encryption_context: "__stringPatternAZaZ0902",
|
|
7402
7774
|
# kms_key_arn: "__stringPatternArnAwsUsGovCnKmsAZ26EastWestCentralNorthSouthEastWest1912D12KeyAFAF098AFAF094AFAF094AFAF094AFAF0912",
|
|
7403
7775
|
# },
|
|
7404
7776
|
# },
|
|
@@ -7624,26 +7996,30 @@ module Aws::MediaConvert
|
|
|
7624
7996
|
# data as a hash:
|
|
7625
7997
|
#
|
|
7626
7998
|
# {
|
|
7627
|
-
# alignment: "CENTERED", # accepts CENTERED, LEFT
|
|
7628
|
-
#
|
|
7999
|
+
# alignment: "CENTERED", # accepts CENTERED, LEFT, AUTO
|
|
8000
|
+
# apply_font_color: "WHITE_TEXT_ONLY", # accepts WHITE_TEXT_ONLY, ALL_TEXT
|
|
8001
|
+
# background_color: "NONE", # accepts NONE, BLACK, WHITE, AUTO
|
|
7629
8002
|
# background_opacity: 1,
|
|
7630
8003
|
# dds_handling: "NONE", # accepts NONE, SPECIFIED, NO_DISPLAY_WINDOW
|
|
7631
8004
|
# dds_x_coordinate: 1,
|
|
7632
8005
|
# dds_y_coordinate: 1,
|
|
7633
|
-
#
|
|
8006
|
+
# fallback_font: "BEST_MATCH", # accepts BEST_MATCH, MONOSPACED_SANSSERIF, MONOSPACED_SERIF, PROPORTIONAL_SANSSERIF, PROPORTIONAL_SERIF
|
|
8007
|
+
# font_color: "WHITE", # accepts WHITE, BLACK, YELLOW, RED, GREEN, BLUE, HEX, AUTO
|
|
7634
8008
|
# font_opacity: 1,
|
|
7635
8009
|
# font_resolution: 1,
|
|
7636
8010
|
# font_script: "AUTOMATIC", # accepts AUTOMATIC, HANS, HANT
|
|
7637
8011
|
# font_size: 1,
|
|
7638
8012
|
# height: 1,
|
|
7639
|
-
#
|
|
8013
|
+
# hex_font_color: "__stringMin6Max8Pattern09aFAF609aFAF2",
|
|
8014
|
+
# outline_color: "BLACK", # accepts BLACK, WHITE, YELLOW, RED, GREEN, BLUE, AUTO
|
|
7640
8015
|
# outline_size: 1,
|
|
7641
|
-
# shadow_color: "NONE", # accepts NONE, BLACK, WHITE
|
|
8016
|
+
# shadow_color: "NONE", # accepts NONE, BLACK, WHITE, AUTO
|
|
7642
8017
|
# shadow_opacity: 1,
|
|
7643
8018
|
# shadow_x_offset: 1,
|
|
7644
8019
|
# shadow_y_offset: 1,
|
|
8020
|
+
# style_passthrough: "ENABLED", # accepts ENABLED, DISABLED
|
|
7645
8021
|
# subtitling_type: "HEARING_IMPAIRED", # accepts HEARING_IMPAIRED, STANDARD
|
|
7646
|
-
# teletext_spacing: "FIXED_GRID", # accepts FIXED_GRID, PROPORTIONAL
|
|
8022
|
+
# teletext_spacing: "FIXED_GRID", # accepts FIXED_GRID, PROPORTIONAL, AUTO
|
|
7647
8023
|
# width: 1,
|
|
7648
8024
|
# x_position: 1,
|
|
7649
8025
|
# y_position: 1,
|
|
@@ -7662,6 +8038,18 @@ module Aws::MediaConvert
|
|
|
7662
8038
|
# settings must match.
|
|
7663
8039
|
# @return [String]
|
|
7664
8040
|
#
|
|
8041
|
+
# @!attribute [rw] apply_font_color
|
|
8042
|
+
# Ignore this setting unless your input captions are STL, any type of
|
|
8043
|
+
# 608, teletext, or TTML, and your output captions are DVB-SUB.
|
|
8044
|
+
# Specify how the service applies the color specified in the setting
|
|
8045
|
+
# Font color (DvbSubtitleFontColor). By default, this color is white.
|
|
8046
|
+
# When you choose WHITE\_TEXT\_ONLY, the service uses the specified
|
|
8047
|
+
# font color only for text that is white in the input. When you choose
|
|
8048
|
+
# ALL\_TEXT, the service uses the specified font color for all output
|
|
8049
|
+
# captions text. If you leave both settings at their default value,
|
|
8050
|
+
# your output font color is the same as your input font color.
|
|
8051
|
+
# @return [String]
|
|
8052
|
+
#
|
|
7665
8053
|
# @!attribute [rw] background_color
|
|
7666
8054
|
# Specifies the color of the rectangle behind the captions. All
|
|
7667
8055
|
# burn-in and DVB-Sub font settings must match.
|
|
@@ -7721,6 +8109,18 @@ module Aws::MediaConvert
|
|
|
7721
8109
|
# must match.
|
|
7722
8110
|
# @return [Integer]
|
|
7723
8111
|
#
|
|
8112
|
+
# @!attribute [rw] fallback_font
|
|
8113
|
+
# Specify the font that you want the service to use for your burn in
|
|
8114
|
+
# captions when your input captions specify a font that MediaConvert
|
|
8115
|
+
# doesn't support. When you keep the default value, Best match
|
|
8116
|
+
# (BEST\_MATCH), MediaConvert uses a supported font that most closely
|
|
8117
|
+
# matches the font that your input captions specify. When there are
|
|
8118
|
+
# multiple unsupported fonts in your input captions, MediaConvert
|
|
8119
|
+
# matches each font with the supported font that matches best. When
|
|
8120
|
+
# you explicitly choose a replacement font, MediaConvert uses that
|
|
8121
|
+
# font to replace all unsupported fonts from your input.
|
|
8122
|
+
# @return [String]
|
|
8123
|
+
#
|
|
7724
8124
|
# @!attribute [rw] font_color
|
|
7725
8125
|
# Specifies the color of the DVB-SUB captions. This option is not
|
|
7726
8126
|
# valid for source captions that are STL, 608/embedded or teletext.
|
|
@@ -7759,6 +8159,15 @@ module Aws::MediaConvert
|
|
|
7759
8159
|
# than None (NONE). All burn-in and DVB-Sub font settings must match.
|
|
7760
8160
|
# @return [Integer]
|
|
7761
8161
|
#
|
|
8162
|
+
# @!attribute [rw] hex_font_color
|
|
8163
|
+
# Ignore this setting unless your DvbSubtitleFontColor setting is HEX.
|
|
8164
|
+
# Format is six or eight hexidecimal digits, representing the red,
|
|
8165
|
+
# green, and blue components, with the two extra digits used for an
|
|
8166
|
+
# optional alpha value. For example a value of 1122AABB is a red value
|
|
8167
|
+
# of 0x11, a green value of 0x22, a blue value of 0xAA, and an alpha
|
|
8168
|
+
# value of 0xBB.
|
|
8169
|
+
# @return [String]
|
|
8170
|
+
#
|
|
7762
8171
|
# @!attribute [rw] outline_color
|
|
7763
8172
|
# Specifies font outline color. This option is not valid for source
|
|
7764
8173
|
# captions that are either 608/embedded or teletext. These source
|
|
@@ -7798,6 +8207,16 @@ module Aws::MediaConvert
|
|
|
7798
8207
|
# above the text. All burn-in and DVB-Sub font settings must match.
|
|
7799
8208
|
# @return [Integer]
|
|
7800
8209
|
#
|
|
8210
|
+
# @!attribute [rw] style_passthrough
|
|
8211
|
+
# Choose which set of style and position values the service applies to
|
|
8212
|
+
# your output captions. When you choose ENABLED, the service uses the
|
|
8213
|
+
# input style and position information from your input. When you
|
|
8214
|
+
# choose DISABLED, the service uses any style values that you specify
|
|
8215
|
+
# in your output settings. If you don't specify values, the service
|
|
8216
|
+
# uses default style and position values. When you choose DISABLED,
|
|
8217
|
+
# the service ignores all style and position values from your input.
|
|
8218
|
+
# @return [String]
|
|
8219
|
+
#
|
|
7801
8220
|
# @!attribute [rw] subtitling_type
|
|
7802
8221
|
# Specify whether your DVB subtitles are standard or for hearing
|
|
7803
8222
|
# impaired. Choose hearing impaired if your subtitles include audio
|
|
@@ -7847,23 +8266,27 @@ module Aws::MediaConvert
|
|
|
7847
8266
|
#
|
|
7848
8267
|
class DvbSubDestinationSettings < Struct.new(
|
|
7849
8268
|
:alignment,
|
|
8269
|
+
:apply_font_color,
|
|
7850
8270
|
:background_color,
|
|
7851
8271
|
:background_opacity,
|
|
7852
8272
|
:dds_handling,
|
|
7853
8273
|
:dds_x_coordinate,
|
|
7854
8274
|
:dds_y_coordinate,
|
|
8275
|
+
:fallback_font,
|
|
7855
8276
|
:font_color,
|
|
7856
8277
|
:font_opacity,
|
|
7857
8278
|
:font_resolution,
|
|
7858
8279
|
:font_script,
|
|
7859
8280
|
:font_size,
|
|
7860
8281
|
:height,
|
|
8282
|
+
:hex_font_color,
|
|
7861
8283
|
:outline_color,
|
|
7862
8284
|
:outline_size,
|
|
7863
8285
|
:shadow_color,
|
|
7864
8286
|
:shadow_opacity,
|
|
7865
8287
|
:shadow_x_offset,
|
|
7866
8288
|
:shadow_y_offset,
|
|
8289
|
+
:style_passthrough,
|
|
7867
8290
|
:subtitling_type,
|
|
7868
8291
|
:teletext_spacing,
|
|
7869
8292
|
:width,
|
|
@@ -8576,8 +8999,11 @@ module Aws::MediaConvert
|
|
|
8576
8999
|
include Aws::Structure
|
|
8577
9000
|
end
|
|
8578
9001
|
|
|
8579
|
-
#
|
|
8580
|
-
#
|
|
9002
|
+
# If your source content has EIA-608 Line 21 Data Services, enable this
|
|
9003
|
+
# feature to specify what MediaConvert does with the Extended Data
|
|
9004
|
+
# Services (XDS) packets. You can choose to pass through XDS packets, or
|
|
9005
|
+
# remove them from the output. For more information about XDS, see
|
|
9006
|
+
# EIA-608 Line Data Services, section 9.5.1.5 05h Content Advisory.
|
|
8581
9007
|
#
|
|
8582
9008
|
# @note When making an API call, you may pass ExtendedDataServices
|
|
8583
9009
|
# data as a hash:
|
|
@@ -8649,6 +9075,7 @@ module Aws::MediaConvert
|
|
|
8649
9075
|
# },
|
|
8650
9076
|
# encryption: {
|
|
8651
9077
|
# encryption_type: "SERVER_SIDE_ENCRYPTION_S3", # accepts SERVER_SIDE_ENCRYPTION_S3, SERVER_SIDE_ENCRYPTION_KMS
|
|
9078
|
+
# kms_encryption_context: "__stringPatternAZaZ0902",
|
|
8652
9079
|
# kms_key_arn: "__stringPatternArnAwsUsGovCnKmsAZ26EastWestCentralNorthSouthEastWest1912D12KeyAFAF098AFAF094AFAF094AFAF094AFAF0912",
|
|
8653
9080
|
# },
|
|
8654
9081
|
# },
|
|
@@ -8873,6 +9300,31 @@ module Aws::MediaConvert
|
|
|
8873
9300
|
include Aws::Structure
|
|
8874
9301
|
end
|
|
8875
9302
|
|
|
9303
|
+
# Send a request to retrieve the JSON for your policy.
|
|
9304
|
+
#
|
|
9305
|
+
# @api private
|
|
9306
|
+
#
|
|
9307
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconvert-2017-08-29/GetPolicyRequest AWS API Documentation
|
|
9308
|
+
#
|
|
9309
|
+
class GetPolicyRequest < Aws::EmptyStructure; end
|
|
9310
|
+
|
|
9311
|
+
# Successful GET policy requests will return the JSON for your policy.
|
|
9312
|
+
#
|
|
9313
|
+
# @!attribute [rw] policy
|
|
9314
|
+
# A policy configures behavior that you allow or disallow for your
|
|
9315
|
+
# account. For information about MediaConvert policies, see the user
|
|
9316
|
+
# guide at
|
|
9317
|
+
# http://docs.aws.amazon.com/mediaconvert/latest/ug/what-is.html
|
|
9318
|
+
# @return [Types::Policy]
|
|
9319
|
+
#
|
|
9320
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconvert-2017-08-29/GetPolicyResponse AWS API Documentation
|
|
9321
|
+
#
|
|
9322
|
+
class GetPolicyResponse < Struct.new(
|
|
9323
|
+
:policy)
|
|
9324
|
+
SENSITIVE = []
|
|
9325
|
+
include Aws::Structure
|
|
9326
|
+
end
|
|
9327
|
+
|
|
8876
9328
|
# Query a preset by sending a request with the preset name.
|
|
8877
9329
|
#
|
|
8878
9330
|
# @note When making an API call, you may pass GetPresetRequest
|
|
@@ -9026,7 +9478,7 @@ module Aws::MediaConvert
|
|
|
9026
9478
|
# codec_profile: "BASELINE", # accepts BASELINE, HIGH, HIGH_10BIT, HIGH_422, HIGH_422_10BIT, MAIN
|
|
9027
9479
|
# dynamic_sub_gop: "ADAPTIVE", # accepts ADAPTIVE, STATIC
|
|
9028
9480
|
# entropy_encoding: "CABAC", # accepts CABAC, CAVLC
|
|
9029
|
-
# field_encoding: "PAFF", # accepts PAFF, FORCE_FIELD
|
|
9481
|
+
# field_encoding: "PAFF", # accepts PAFF, FORCE_FIELD, MBAFF
|
|
9030
9482
|
# flicker_adaptive_quantization: "DISABLED", # accepts DISABLED, ENABLED
|
|
9031
9483
|
# framerate_control: "INITIALIZE_FROM_SOURCE", # accepts INITIALIZE_FROM_SOURCE, SPECIFIED
|
|
9032
9484
|
# framerate_conversion_algorithm: "DUPLICATE_DROP", # accepts DUPLICATE_DROP, INTERPOLATE, FRAMEFORMER
|
|
@@ -9114,9 +9566,12 @@ module Aws::MediaConvert
|
|
|
9114
9566
|
# @return [String]
|
|
9115
9567
|
#
|
|
9116
9568
|
# @!attribute [rw] field_encoding
|
|
9117
|
-
#
|
|
9118
|
-
#
|
|
9119
|
-
#
|
|
9569
|
+
# The video encoding method for your MPEG-4 AVC output. Keep the
|
|
9570
|
+
# default value, PAFF, to have MediaConvert use PAFF encoding for
|
|
9571
|
+
# interlaced outputs. Choose Force field (FORCE\_FIELD) to disable
|
|
9572
|
+
# PAFF encoding and create separate interlaced fields. Choose MBAFF to
|
|
9573
|
+
# disable PAFF and have MediaConvert use MBAFF encoding for interlaced
|
|
9574
|
+
# outputs.
|
|
9120
9575
|
# @return [String]
|
|
9121
9576
|
#
|
|
9122
9577
|
# @!attribute [rw] flicker_adaptive_quantization
|
|
@@ -9255,7 +9710,10 @@ module Aws::MediaConvert
|
|
|
9255
9710
|
# @return [Integer]
|
|
9256
9711
|
#
|
|
9257
9712
|
# @!attribute [rw] number_b_frames_between_reference_frames
|
|
9258
|
-
#
|
|
9713
|
+
# Specify the number of B-frames that MediaConvert puts between
|
|
9714
|
+
# reference frames in this output. Valid values are whole numbers from
|
|
9715
|
+
# 0 through 7. When you don't specify a value, MediaConvert defaults
|
|
9716
|
+
# to 2.
|
|
9259
9717
|
# @return [Integer]
|
|
9260
9718
|
#
|
|
9261
9719
|
# @!attribute [rw] number_reference_frames
|
|
@@ -9783,7 +10241,10 @@ module Aws::MediaConvert
|
|
|
9783
10241
|
# @return [Integer]
|
|
9784
10242
|
#
|
|
9785
10243
|
# @!attribute [rw] number_b_frames_between_reference_frames
|
|
9786
|
-
#
|
|
10244
|
+
# Specify the number of B-frames that MediaConvert puts between
|
|
10245
|
+
# reference frames in this output. Valid values are whole numbers from
|
|
10246
|
+
# 0 through 7. When you don't specify a value, MediaConvert defaults
|
|
10247
|
+
# to 2.
|
|
9787
10248
|
# @return [Integer]
|
|
9788
10249
|
#
|
|
9789
10250
|
# @!attribute [rw] number_reference_frames
|
|
@@ -10375,6 +10836,7 @@ module Aws::MediaConvert
|
|
|
10375
10836
|
# },
|
|
10376
10837
|
# encryption: {
|
|
10377
10838
|
# encryption_type: "SERVER_SIDE_ENCRYPTION_S3", # accepts SERVER_SIDE_ENCRYPTION_S3, SERVER_SIDE_ENCRYPTION_KMS
|
|
10839
|
+
# kms_encryption_context: "__stringPatternAZaZ0902",
|
|
10378
10840
|
# kms_key_arn: "__stringPatternArnAwsUsGovCnKmsAZ26EastWestCentralNorthSouthEastWest1912D12KeyAFAF098AFAF094AFAF094AFAF094AFAF0912",
|
|
10379
10841
|
# },
|
|
10380
10842
|
# },
|
|
@@ -10399,7 +10861,15 @@ module Aws::MediaConvert
|
|
|
10399
10861
|
# },
|
|
10400
10862
|
# type: "SPEKE", # accepts SPEKE, STATIC_KEY
|
|
10401
10863
|
# },
|
|
10402
|
-
# image_based_trick_play: "NONE", # accepts NONE, THUMBNAIL, THUMBNAIL_AND_FULLFRAME
|
|
10864
|
+
# image_based_trick_play: "NONE", # accepts NONE, THUMBNAIL, THUMBNAIL_AND_FULLFRAME, ADVANCED
|
|
10865
|
+
# image_based_trick_play_settings: {
|
|
10866
|
+
# interval_cadence: "FOLLOW_IFRAME", # accepts FOLLOW_IFRAME, FOLLOW_CUSTOM
|
|
10867
|
+
# thumbnail_height: 1,
|
|
10868
|
+
# thumbnail_interval: 1.0,
|
|
10869
|
+
# thumbnail_width: 1,
|
|
10870
|
+
# tile_height: 1,
|
|
10871
|
+
# tile_width: 1,
|
|
10872
|
+
# },
|
|
10403
10873
|
# manifest_compression: "GZIP", # accepts GZIP, NONE
|
|
10404
10874
|
# manifest_duration_format: "FLOATING_POINT", # accepts FLOATING_POINT, INTEGER
|
|
10405
10875
|
# min_final_segment_length: 1.0,
|
|
@@ -10409,6 +10879,7 @@ module Aws::MediaConvert
|
|
|
10409
10879
|
# program_date_time_period: 1,
|
|
10410
10880
|
# segment_control: "SINGLE_FILE", # accepts SINGLE_FILE, SEGMENTED_FILES
|
|
10411
10881
|
# segment_length: 1,
|
|
10882
|
+
# segment_length_control: "EXACT", # accepts EXACT, GOP_MULTIPLE
|
|
10412
10883
|
# segments_per_subdirectory: 1,
|
|
10413
10884
|
# stream_inf_resolution: "INCLUDE", # accepts INCLUDE, EXCLUDE
|
|
10414
10885
|
# target_duration_compatibility_mode: "LEGACY", # accepts LEGACY, SPEC_COMPLIANT
|
|
@@ -10509,6 +10980,11 @@ module Aws::MediaConvert
|
|
|
10509
10980
|
# https://developer.roku.com/docs/developer-program/media-playback/trick-mode/hls-and-dash.md
|
|
10510
10981
|
# @return [String]
|
|
10511
10982
|
#
|
|
10983
|
+
# @!attribute [rw] image_based_trick_play_settings
|
|
10984
|
+
# Tile and thumbnail settings applicable when imageBasedTrickPlay is
|
|
10985
|
+
# ADVANCED
|
|
10986
|
+
# @return [Types::HlsImageBasedTrickPlaySettings]
|
|
10987
|
+
#
|
|
10512
10988
|
# @!attribute [rw] manifest_compression
|
|
10513
10989
|
# When set to GZIP, compresses HLS playlist.
|
|
10514
10990
|
# @return [String]
|
|
@@ -10564,11 +11040,24 @@ module Aws::MediaConvert
|
|
|
10564
11040
|
# @return [String]
|
|
10565
11041
|
#
|
|
10566
11042
|
# @!attribute [rw] segment_length
|
|
10567
|
-
#
|
|
10568
|
-
#
|
|
10569
|
-
#
|
|
11043
|
+
# Specify the length, in whole seconds, of each segment. When you
|
|
11044
|
+
# don't specify a value, MediaConvert defaults to 10. Related
|
|
11045
|
+
# settings: Use Segment length control (SegmentLengthControl) to
|
|
11046
|
+
# specify whether the encoder enforces this value strictly. Use
|
|
11047
|
+
# Segment control (HlsSegmentControl) to specify whether MediaConvert
|
|
11048
|
+
# creates separate segment files or one content file that has metadata
|
|
11049
|
+
# to mark the segment boundaries.
|
|
10570
11050
|
# @return [Integer]
|
|
10571
11051
|
#
|
|
11052
|
+
# @!attribute [rw] segment_length_control
|
|
11053
|
+
# Specify how you want MediaConvert to determine the segment length.
|
|
11054
|
+
# Choose Exact (EXACT) to have the encoder use the exact length that
|
|
11055
|
+
# you specify with the setting Segment length (SegmentLength). This
|
|
11056
|
+
# might result in extra I-frames. Choose Multiple of GOP
|
|
11057
|
+
# (GOP\_MULTIPLE) to have the encoder round up the segment lengths to
|
|
11058
|
+
# match the next GOP boundary.
|
|
11059
|
+
# @return [String]
|
|
11060
|
+
#
|
|
10572
11061
|
# @!attribute [rw] segments_per_subdirectory
|
|
10573
11062
|
# Number of segments to write to a subdirectory before starting a new
|
|
10574
11063
|
# one. directoryStructure must be SINGLE\_DIRECTORY for this setting
|
|
@@ -10622,6 +11111,7 @@ module Aws::MediaConvert
|
|
|
10622
11111
|
:directory_structure,
|
|
10623
11112
|
:encryption,
|
|
10624
11113
|
:image_based_trick_play,
|
|
11114
|
+
:image_based_trick_play_settings,
|
|
10625
11115
|
:manifest_compression,
|
|
10626
11116
|
:manifest_duration_format,
|
|
10627
11117
|
:min_final_segment_length,
|
|
@@ -10631,6 +11121,7 @@ module Aws::MediaConvert
|
|
|
10631
11121
|
:program_date_time_period,
|
|
10632
11122
|
:segment_control,
|
|
10633
11123
|
:segment_length,
|
|
11124
|
+
:segment_length_control,
|
|
10634
11125
|
:segments_per_subdirectory,
|
|
10635
11126
|
:stream_inf_resolution,
|
|
10636
11127
|
:target_duration_compatibility_mode,
|
|
@@ -10641,6 +11132,73 @@ module Aws::MediaConvert
|
|
|
10641
11132
|
include Aws::Structure
|
|
10642
11133
|
end
|
|
10643
11134
|
|
|
11135
|
+
# Tile and thumbnail settings applicable when imageBasedTrickPlay is
|
|
11136
|
+
# ADVANCED
|
|
11137
|
+
#
|
|
11138
|
+
# @note When making an API call, you may pass HlsImageBasedTrickPlaySettings
|
|
11139
|
+
# data as a hash:
|
|
11140
|
+
#
|
|
11141
|
+
# {
|
|
11142
|
+
# interval_cadence: "FOLLOW_IFRAME", # accepts FOLLOW_IFRAME, FOLLOW_CUSTOM
|
|
11143
|
+
# thumbnail_height: 1,
|
|
11144
|
+
# thumbnail_interval: 1.0,
|
|
11145
|
+
# thumbnail_width: 1,
|
|
11146
|
+
# tile_height: 1,
|
|
11147
|
+
# tile_width: 1,
|
|
11148
|
+
# }
|
|
11149
|
+
#
|
|
11150
|
+
# @!attribute [rw] interval_cadence
|
|
11151
|
+
# The cadence MediaConvert follows for generating thumbnails. If set
|
|
11152
|
+
# to FOLLOW\_IFRAME, MediaConvert generates thumbnails for each IDR
|
|
11153
|
+
# frame in the output (matching the GOP cadence). If set to
|
|
11154
|
+
# FOLLOW\_CUSTOM, MediaConvert generates thumbnails according to the
|
|
11155
|
+
# interval you specify in thumbnailInterval.
|
|
11156
|
+
# @return [String]
|
|
11157
|
+
#
|
|
11158
|
+
# @!attribute [rw] thumbnail_height
|
|
11159
|
+
# Height of each thumbnail within each tile image, in pixels. Leave
|
|
11160
|
+
# blank to maintain aspect ratio with thumbnail width. If following
|
|
11161
|
+
# the aspect ratio would lead to a total tile height greater than
|
|
11162
|
+
# 4096, then the job will be rejected. Must be divisible by 2.
|
|
11163
|
+
# @return [Integer]
|
|
11164
|
+
#
|
|
11165
|
+
# @!attribute [rw] thumbnail_interval
|
|
11166
|
+
# Enter the interval, in seconds, that MediaConvert uses to generate
|
|
11167
|
+
# thumbnails. If the interval you enter doesn't align with the output
|
|
11168
|
+
# frame rate, MediaConvert automatically rounds the interval to align
|
|
11169
|
+
# with the output frame rate. For example, if the output frame rate is
|
|
11170
|
+
# 29.97 frames per second and you enter 5, MediaConvert uses a 150
|
|
11171
|
+
# frame interval to generate thumbnails.
|
|
11172
|
+
# @return [Float]
|
|
11173
|
+
#
|
|
11174
|
+
# @!attribute [rw] thumbnail_width
|
|
11175
|
+
# Width of each thumbnail within each tile image, in pixels. Default
|
|
11176
|
+
# is 312. Must be divisible by 8.
|
|
11177
|
+
# @return [Integer]
|
|
11178
|
+
#
|
|
11179
|
+
# @!attribute [rw] tile_height
|
|
11180
|
+
# Number of thumbnails in each column of a tile image. Set a value
|
|
11181
|
+
# between 2 and 2048. Must be divisible by 2.
|
|
11182
|
+
# @return [Integer]
|
|
11183
|
+
#
|
|
11184
|
+
# @!attribute [rw] tile_width
|
|
11185
|
+
# Number of thumbnails in each row of a tile image. Set a value
|
|
11186
|
+
# between 1 and 512.
|
|
11187
|
+
# @return [Integer]
|
|
11188
|
+
#
|
|
11189
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconvert-2017-08-29/HlsImageBasedTrickPlaySettings AWS API Documentation
|
|
11190
|
+
#
|
|
11191
|
+
class HlsImageBasedTrickPlaySettings < Struct.new(
|
|
11192
|
+
:interval_cadence,
|
|
11193
|
+
:thumbnail_height,
|
|
11194
|
+
:thumbnail_interval,
|
|
11195
|
+
:thumbnail_width,
|
|
11196
|
+
:tile_height,
|
|
11197
|
+
:tile_width)
|
|
11198
|
+
SENSITIVE = []
|
|
11199
|
+
include Aws::Structure
|
|
11200
|
+
end
|
|
11201
|
+
|
|
10644
11202
|
# Settings specific to audio sources in an HLS alternate rendition
|
|
10645
11203
|
# group. Specify the properties (renditionGroupId, renditionName or
|
|
10646
11204
|
# renditionLanguageCode) to identify the unique audio track among the
|
|
@@ -12278,6 +12836,7 @@ module Aws::MediaConvert
|
|
|
12278
12836
|
# },
|
|
12279
12837
|
# encryption: {
|
|
12280
12838
|
# encryption_type: "SERVER_SIDE_ENCRYPTION_S3", # accepts SERVER_SIDE_ENCRYPTION_S3, SERVER_SIDE_ENCRYPTION_KMS
|
|
12839
|
+
# kms_encryption_context: "__stringPatternAZaZ0902",
|
|
12281
12840
|
# kms_key_arn: "__stringPatternArnAwsUsGovCnKmsAZ26EastWestCentralNorthSouthEastWest1912D12KeyAFAF098AFAF094AFAF094AFAF094AFAF0912",
|
|
12282
12841
|
# },
|
|
12283
12842
|
# },
|
|
@@ -12302,7 +12861,15 @@ module Aws::MediaConvert
|
|
|
12302
12861
|
# type: "SPEKE", # accepts SPEKE, STATIC_KEY
|
|
12303
12862
|
# },
|
|
12304
12863
|
# fragment_length: 1,
|
|
12305
|
-
# image_based_trick_play: "NONE", # accepts NONE, THUMBNAIL, THUMBNAIL_AND_FULLFRAME
|
|
12864
|
+
# image_based_trick_play: "NONE", # accepts NONE, THUMBNAIL, THUMBNAIL_AND_FULLFRAME, ADVANCED
|
|
12865
|
+
# image_based_trick_play_settings: {
|
|
12866
|
+
# interval_cadence: "FOLLOW_IFRAME", # accepts FOLLOW_IFRAME, FOLLOW_CUSTOM
|
|
12867
|
+
# thumbnail_height: 1,
|
|
12868
|
+
# thumbnail_interval: 1.0,
|
|
12869
|
+
# thumbnail_width: 1,
|
|
12870
|
+
# tile_height: 1,
|
|
12871
|
+
# tile_width: 1,
|
|
12872
|
+
# },
|
|
12306
12873
|
# manifest_compression: "GZIP", # accepts GZIP, NONE
|
|
12307
12874
|
# manifest_duration_format: "FLOATING_POINT", # accepts FLOATING_POINT, INTEGER
|
|
12308
12875
|
# min_buffer_time: 1,
|
|
@@ -12311,6 +12878,7 @@ module Aws::MediaConvert
|
|
|
12311
12878
|
# pts_offset_handling_for_b_frames: "ZERO_BASED", # accepts ZERO_BASED, MATCH_INITIAL_PTS
|
|
12312
12879
|
# segment_control: "SINGLE_FILE", # accepts SINGLE_FILE, SEGMENTED_FILES
|
|
12313
12880
|
# segment_length: 1,
|
|
12881
|
+
# segment_length_control: "EXACT", # accepts EXACT, GOP_MULTIPLE
|
|
12314
12882
|
# stream_inf_resolution: "INCLUDE", # accepts INCLUDE, EXCLUDE
|
|
12315
12883
|
# target_duration_compatibility_mode: "LEGACY", # accepts LEGACY, SPEC_COMPLIANT
|
|
12316
12884
|
# write_dash_manifest: "DISABLED", # accepts DISABLED, ENABLED
|
|
@@ -12334,6 +12902,7 @@ module Aws::MediaConvert
|
|
|
12334
12902
|
# },
|
|
12335
12903
|
# encryption: {
|
|
12336
12904
|
# encryption_type: "SERVER_SIDE_ENCRYPTION_S3", # accepts SERVER_SIDE_ENCRYPTION_S3, SERVER_SIDE_ENCRYPTION_KMS
|
|
12905
|
+
# kms_encryption_context: "__stringPatternAZaZ0902",
|
|
12337
12906
|
# kms_key_arn: "__stringPatternArnAwsUsGovCnKmsAZ26EastWestCentralNorthSouthEastWest1912D12KeyAFAF098AFAF094AFAF094AFAF094AFAF0912",
|
|
12338
12907
|
# },
|
|
12339
12908
|
# },
|
|
@@ -12349,13 +12918,22 @@ module Aws::MediaConvert
|
|
|
12349
12918
|
# },
|
|
12350
12919
|
# fragment_length: 1,
|
|
12351
12920
|
# hbbtv_compliance: "HBBTV_1_5", # accepts HBBTV_1_5, NONE
|
|
12352
|
-
# image_based_trick_play: "NONE", # accepts NONE, THUMBNAIL, THUMBNAIL_AND_FULLFRAME
|
|
12921
|
+
# image_based_trick_play: "NONE", # accepts NONE, THUMBNAIL, THUMBNAIL_AND_FULLFRAME, ADVANCED
|
|
12922
|
+
# image_based_trick_play_settings: {
|
|
12923
|
+
# interval_cadence: "FOLLOW_IFRAME", # accepts FOLLOW_IFRAME, FOLLOW_CUSTOM
|
|
12924
|
+
# thumbnail_height: 1,
|
|
12925
|
+
# thumbnail_interval: 1.0,
|
|
12926
|
+
# thumbnail_width: 1,
|
|
12927
|
+
# tile_height: 1,
|
|
12928
|
+
# tile_width: 1,
|
|
12929
|
+
# },
|
|
12353
12930
|
# min_buffer_time: 1,
|
|
12354
12931
|
# min_final_segment_length: 1.0,
|
|
12355
12932
|
# mpd_profile: "MAIN_PROFILE", # accepts MAIN_PROFILE, ON_DEMAND_PROFILE
|
|
12356
12933
|
# pts_offset_handling_for_b_frames: "ZERO_BASED", # accepts ZERO_BASED, MATCH_INITIAL_PTS
|
|
12357
12934
|
# segment_control: "SINGLE_FILE", # accepts SINGLE_FILE, SEGMENTED_FILES
|
|
12358
12935
|
# segment_length: 1,
|
|
12936
|
+
# segment_length_control: "EXACT", # accepts EXACT, GOP_MULTIPLE
|
|
12359
12937
|
# write_segment_timeline_in_representation: "ENABLED", # accepts ENABLED, DISABLED
|
|
12360
12938
|
# },
|
|
12361
12939
|
# file_group_settings: {
|
|
@@ -12367,6 +12945,7 @@ module Aws::MediaConvert
|
|
|
12367
12945
|
# },
|
|
12368
12946
|
# encryption: {
|
|
12369
12947
|
# encryption_type: "SERVER_SIDE_ENCRYPTION_S3", # accepts SERVER_SIDE_ENCRYPTION_S3, SERVER_SIDE_ENCRYPTION_KMS
|
|
12948
|
+
# kms_encryption_context: "__stringPatternAZaZ0902",
|
|
12370
12949
|
# kms_key_arn: "__stringPatternArnAwsUsGovCnKmsAZ26EastWestCentralNorthSouthEastWest1912D12KeyAFAF098AFAF094AFAF094AFAF094AFAF0912",
|
|
12371
12950
|
# },
|
|
12372
12951
|
# },
|
|
@@ -12401,6 +12980,7 @@ module Aws::MediaConvert
|
|
|
12401
12980
|
# },
|
|
12402
12981
|
# encryption: {
|
|
12403
12982
|
# encryption_type: "SERVER_SIDE_ENCRYPTION_S3", # accepts SERVER_SIDE_ENCRYPTION_S3, SERVER_SIDE_ENCRYPTION_KMS
|
|
12983
|
+
# kms_encryption_context: "__stringPatternAZaZ0902",
|
|
12404
12984
|
# kms_key_arn: "__stringPatternArnAwsUsGovCnKmsAZ26EastWestCentralNorthSouthEastWest1912D12KeyAFAF098AFAF094AFAF094AFAF094AFAF0912",
|
|
12405
12985
|
# },
|
|
12406
12986
|
# },
|
|
@@ -12425,7 +13005,15 @@ module Aws::MediaConvert
|
|
|
12425
13005
|
# },
|
|
12426
13006
|
# type: "SPEKE", # accepts SPEKE, STATIC_KEY
|
|
12427
13007
|
# },
|
|
12428
|
-
# image_based_trick_play: "NONE", # accepts NONE, THUMBNAIL, THUMBNAIL_AND_FULLFRAME
|
|
13008
|
+
# image_based_trick_play: "NONE", # accepts NONE, THUMBNAIL, THUMBNAIL_AND_FULLFRAME, ADVANCED
|
|
13009
|
+
# image_based_trick_play_settings: {
|
|
13010
|
+
# interval_cadence: "FOLLOW_IFRAME", # accepts FOLLOW_IFRAME, FOLLOW_CUSTOM
|
|
13011
|
+
# thumbnail_height: 1,
|
|
13012
|
+
# thumbnail_interval: 1.0,
|
|
13013
|
+
# thumbnail_width: 1,
|
|
13014
|
+
# tile_height: 1,
|
|
13015
|
+
# tile_width: 1,
|
|
13016
|
+
# },
|
|
12429
13017
|
# manifest_compression: "GZIP", # accepts GZIP, NONE
|
|
12430
13018
|
# manifest_duration_format: "FLOATING_POINT", # accepts FLOATING_POINT, INTEGER
|
|
12431
13019
|
# min_final_segment_length: 1.0,
|
|
@@ -12435,6 +13023,7 @@ module Aws::MediaConvert
|
|
|
12435
13023
|
# program_date_time_period: 1,
|
|
12436
13024
|
# segment_control: "SINGLE_FILE", # accepts SINGLE_FILE, SEGMENTED_FILES
|
|
12437
13025
|
# segment_length: 1,
|
|
13026
|
+
# segment_length_control: "EXACT", # accepts EXACT, GOP_MULTIPLE
|
|
12438
13027
|
# segments_per_subdirectory: 1,
|
|
12439
13028
|
# stream_inf_resolution: "INCLUDE", # accepts INCLUDE, EXCLUDE
|
|
12440
13029
|
# target_duration_compatibility_mode: "LEGACY", # accepts LEGACY, SPEC_COMPLIANT
|
|
@@ -12458,6 +13047,7 @@ module Aws::MediaConvert
|
|
|
12458
13047
|
# },
|
|
12459
13048
|
# encryption: {
|
|
12460
13049
|
# encryption_type: "SERVER_SIDE_ENCRYPTION_S3", # accepts SERVER_SIDE_ENCRYPTION_S3, SERVER_SIDE_ENCRYPTION_KMS
|
|
13050
|
+
# kms_encryption_context: "__stringPatternAZaZ0902",
|
|
12461
13051
|
# kms_key_arn: "__stringPatternArnAwsUsGovCnKmsAZ26EastWestCentralNorthSouthEastWest1912D12KeyAFAF098AFAF094AFAF094AFAF094AFAF0912",
|
|
12462
13052
|
# },
|
|
12463
13053
|
# },
|
|
@@ -12471,6 +13061,7 @@ module Aws::MediaConvert
|
|
|
12471
13061
|
# },
|
|
12472
13062
|
# },
|
|
12473
13063
|
# fragment_length: 1,
|
|
13064
|
+
# fragment_length_control: "EXACT", # accepts EXACT, GOP_MULTIPLE
|
|
12474
13065
|
# manifest_encoding: "UTF8", # accepts UTF8, UTF16
|
|
12475
13066
|
# },
|
|
12476
13067
|
# type: "HLS_GROUP_SETTINGS", # accepts HLS_GROUP_SETTINGS, DASH_ISO_GROUP_SETTINGS, FILE_GROUP_SETTINGS, MS_SMOOTH_GROUP_SETTINGS, CMAF_GROUP_SETTINGS
|
|
@@ -12618,46 +13209,54 @@ module Aws::MediaConvert
|
|
|
12618
13209
|
# custom_language_code: "__stringPatternAZaZ23AZaZ",
|
|
12619
13210
|
# destination_settings: {
|
|
12620
13211
|
# burnin_destination_settings: {
|
|
12621
|
-
# alignment: "CENTERED", # accepts CENTERED, LEFT
|
|
12622
|
-
#
|
|
13212
|
+
# alignment: "CENTERED", # accepts CENTERED, LEFT, AUTO
|
|
13213
|
+
# apply_font_color: "WHITE_TEXT_ONLY", # accepts WHITE_TEXT_ONLY, ALL_TEXT
|
|
13214
|
+
# background_color: "NONE", # accepts NONE, BLACK, WHITE, AUTO
|
|
12623
13215
|
# background_opacity: 1,
|
|
12624
|
-
#
|
|
13216
|
+
# fallback_font: "BEST_MATCH", # accepts BEST_MATCH, MONOSPACED_SANSSERIF, MONOSPACED_SERIF, PROPORTIONAL_SANSSERIF, PROPORTIONAL_SERIF
|
|
13217
|
+
# font_color: "WHITE", # accepts WHITE, BLACK, YELLOW, RED, GREEN, BLUE, HEX, AUTO
|
|
12625
13218
|
# font_opacity: 1,
|
|
12626
13219
|
# font_resolution: 1,
|
|
12627
13220
|
# font_script: "AUTOMATIC", # accepts AUTOMATIC, HANS, HANT
|
|
12628
13221
|
# font_size: 1,
|
|
12629
|
-
#
|
|
13222
|
+
# hex_font_color: "__stringMin6Max8Pattern09aFAF609aFAF2",
|
|
13223
|
+
# outline_color: "BLACK", # accepts BLACK, WHITE, YELLOW, RED, GREEN, BLUE, AUTO
|
|
12630
13224
|
# outline_size: 1,
|
|
12631
|
-
# shadow_color: "NONE", # accepts NONE, BLACK, WHITE
|
|
13225
|
+
# shadow_color: "NONE", # accepts NONE, BLACK, WHITE, AUTO
|
|
12632
13226
|
# shadow_opacity: 1,
|
|
12633
13227
|
# shadow_x_offset: 1,
|
|
12634
13228
|
# shadow_y_offset: 1,
|
|
12635
|
-
#
|
|
13229
|
+
# style_passthrough: "ENABLED", # accepts ENABLED, DISABLED
|
|
13230
|
+
# teletext_spacing: "FIXED_GRID", # accepts FIXED_GRID, PROPORTIONAL, AUTO
|
|
12636
13231
|
# x_position: 1,
|
|
12637
13232
|
# y_position: 1,
|
|
12638
13233
|
# },
|
|
12639
13234
|
# destination_type: "BURN_IN", # accepts BURN_IN, DVB_SUB, EMBEDDED, EMBEDDED_PLUS_SCTE20, IMSC, SCTE20_PLUS_EMBEDDED, SCC, SRT, SMI, TELETEXT, TTML, WEBVTT
|
|
12640
13235
|
# dvb_sub_destination_settings: {
|
|
12641
|
-
# alignment: "CENTERED", # accepts CENTERED, LEFT
|
|
12642
|
-
#
|
|
13236
|
+
# alignment: "CENTERED", # accepts CENTERED, LEFT, AUTO
|
|
13237
|
+
# apply_font_color: "WHITE_TEXT_ONLY", # accepts WHITE_TEXT_ONLY, ALL_TEXT
|
|
13238
|
+
# background_color: "NONE", # accepts NONE, BLACK, WHITE, AUTO
|
|
12643
13239
|
# background_opacity: 1,
|
|
12644
13240
|
# dds_handling: "NONE", # accepts NONE, SPECIFIED, NO_DISPLAY_WINDOW
|
|
12645
13241
|
# dds_x_coordinate: 1,
|
|
12646
13242
|
# dds_y_coordinate: 1,
|
|
12647
|
-
#
|
|
13243
|
+
# fallback_font: "BEST_MATCH", # accepts BEST_MATCH, MONOSPACED_SANSSERIF, MONOSPACED_SERIF, PROPORTIONAL_SANSSERIF, PROPORTIONAL_SERIF
|
|
13244
|
+
# font_color: "WHITE", # accepts WHITE, BLACK, YELLOW, RED, GREEN, BLUE, HEX, AUTO
|
|
12648
13245
|
# font_opacity: 1,
|
|
12649
13246
|
# font_resolution: 1,
|
|
12650
13247
|
# font_script: "AUTOMATIC", # accepts AUTOMATIC, HANS, HANT
|
|
12651
13248
|
# font_size: 1,
|
|
12652
13249
|
# height: 1,
|
|
12653
|
-
#
|
|
13250
|
+
# hex_font_color: "__stringMin6Max8Pattern09aFAF609aFAF2",
|
|
13251
|
+
# outline_color: "BLACK", # accepts BLACK, WHITE, YELLOW, RED, GREEN, BLUE, AUTO
|
|
12654
13252
|
# outline_size: 1,
|
|
12655
|
-
# shadow_color: "NONE", # accepts NONE, BLACK, WHITE
|
|
13253
|
+
# shadow_color: "NONE", # accepts NONE, BLACK, WHITE, AUTO
|
|
12656
13254
|
# shadow_opacity: 1,
|
|
12657
13255
|
# shadow_x_offset: 1,
|
|
12658
13256
|
# shadow_y_offset: 1,
|
|
13257
|
+
# style_passthrough: "ENABLED", # accepts ENABLED, DISABLED
|
|
12659
13258
|
# subtitling_type: "HEARING_IMPAIRED", # accepts HEARING_IMPAIRED, STANDARD
|
|
12660
|
-
# teletext_spacing: "FIXED_GRID", # accepts FIXED_GRID, PROPORTIONAL
|
|
13259
|
+
# teletext_spacing: "FIXED_GRID", # accepts FIXED_GRID, PROPORTIONAL, AUTO
|
|
12661
13260
|
# width: 1,
|
|
12662
13261
|
# x_position: 1,
|
|
12663
13262
|
# y_position: 1,
|
|
@@ -12712,6 +13311,7 @@ module Aws::MediaConvert
|
|
|
12712
13311
|
# audio_pids: [1],
|
|
12713
13312
|
# bitrate: 1,
|
|
12714
13313
|
# buffer_model: "MULTIPLEX", # accepts MULTIPLEX, NONE
|
|
13314
|
+
# data_pts_control: "AUTO", # accepts AUTO, ALIGN_TO_VIDEO
|
|
12715
13315
|
# dvb_nit_settings: {
|
|
12716
13316
|
# network_id: 1,
|
|
12717
13317
|
# network_name: "__stringMin1Max256",
|
|
@@ -12761,6 +13361,7 @@ module Aws::MediaConvert
|
|
|
12761
13361
|
# audio_duration: "DEFAULT_CODEC_DURATION", # accepts DEFAULT_CODEC_DURATION, MATCH_VIDEO_DURATION
|
|
12762
13362
|
# audio_frames_per_pes: 1,
|
|
12763
13363
|
# audio_pids: [1],
|
|
13364
|
+
# data_pts_control: "AUTO", # accepts AUTO, ALIGN_TO_VIDEO
|
|
12764
13365
|
# max_pcr_interval: 1,
|
|
12765
13366
|
# nielsen_id_3: "INSERT", # accepts INSERT, NONE
|
|
12766
13367
|
# pat_interval: 1,
|
|
@@ -12871,7 +13472,7 @@ module Aws::MediaConvert
|
|
|
12871
13472
|
# codec_profile: "BASELINE", # accepts BASELINE, HIGH, HIGH_10BIT, HIGH_422, HIGH_422_10BIT, MAIN
|
|
12872
13473
|
# dynamic_sub_gop: "ADAPTIVE", # accepts ADAPTIVE, STATIC
|
|
12873
13474
|
# entropy_encoding: "CABAC", # accepts CABAC, CAVLC
|
|
12874
|
-
# field_encoding: "PAFF", # accepts PAFF, FORCE_FIELD
|
|
13475
|
+
# field_encoding: "PAFF", # accepts PAFF, FORCE_FIELD, MBAFF
|
|
12875
13476
|
# flicker_adaptive_quantization: "DISABLED", # accepts DISABLED, ENABLED
|
|
12876
13477
|
# framerate_control: "INITIALIZE_FROM_SOURCE", # accepts INITIALIZE_FROM_SOURCE, SPECIFIED
|
|
12877
13478
|
# framerate_conversion_algorithm: "DUPLICATE_DROP", # accepts DUPLICATE_DROP, INTERPOLATE, FRAMEFORMER
|
|
@@ -13236,8 +13837,12 @@ module Aws::MediaConvert
|
|
|
13236
13837
|
# @return [Types::EsamSettings]
|
|
13237
13838
|
#
|
|
13238
13839
|
# @!attribute [rw] extended_data_services
|
|
13239
|
-
#
|
|
13240
|
-
#
|
|
13840
|
+
# If your source content has EIA-608 Line 21 Data Services, enable
|
|
13841
|
+
# this feature to specify what MediaConvert does with the Extended
|
|
13842
|
+
# Data Services (XDS) packets. You can choose to pass through XDS
|
|
13843
|
+
# packets, or remove them from the output. For more information about
|
|
13844
|
+
# XDS, see EIA-608 Line Data Services, section 9.5.1.5 05h Content
|
|
13845
|
+
# Advisory.
|
|
13241
13846
|
# @return [Types::ExtendedDataServices]
|
|
13242
13847
|
#
|
|
13243
13848
|
# @!attribute [rw] inputs
|
|
@@ -13667,6 +14272,7 @@ module Aws::MediaConvert
|
|
|
13667
14272
|
# },
|
|
13668
14273
|
# encryption: {
|
|
13669
14274
|
# encryption_type: "SERVER_SIDE_ENCRYPTION_S3", # accepts SERVER_SIDE_ENCRYPTION_S3, SERVER_SIDE_ENCRYPTION_KMS
|
|
14275
|
+
# kms_encryption_context: "__stringPatternAZaZ0902",
|
|
13670
14276
|
# kms_key_arn: "__stringPatternArnAwsUsGovCnKmsAZ26EastWestCentralNorthSouthEastWest1912D12KeyAFAF098AFAF094AFAF094AFAF094AFAF0912",
|
|
13671
14277
|
# },
|
|
13672
14278
|
# },
|
|
@@ -13691,7 +14297,15 @@ module Aws::MediaConvert
|
|
|
13691
14297
|
# type: "SPEKE", # accepts SPEKE, STATIC_KEY
|
|
13692
14298
|
# },
|
|
13693
14299
|
# fragment_length: 1,
|
|
13694
|
-
# image_based_trick_play: "NONE", # accepts NONE, THUMBNAIL, THUMBNAIL_AND_FULLFRAME
|
|
14300
|
+
# image_based_trick_play: "NONE", # accepts NONE, THUMBNAIL, THUMBNAIL_AND_FULLFRAME, ADVANCED
|
|
14301
|
+
# image_based_trick_play_settings: {
|
|
14302
|
+
# interval_cadence: "FOLLOW_IFRAME", # accepts FOLLOW_IFRAME, FOLLOW_CUSTOM
|
|
14303
|
+
# thumbnail_height: 1,
|
|
14304
|
+
# thumbnail_interval: 1.0,
|
|
14305
|
+
# thumbnail_width: 1,
|
|
14306
|
+
# tile_height: 1,
|
|
14307
|
+
# tile_width: 1,
|
|
14308
|
+
# },
|
|
13695
14309
|
# manifest_compression: "GZIP", # accepts GZIP, NONE
|
|
13696
14310
|
# manifest_duration_format: "FLOATING_POINT", # accepts FLOATING_POINT, INTEGER
|
|
13697
14311
|
# min_buffer_time: 1,
|
|
@@ -13700,6 +14314,7 @@ module Aws::MediaConvert
|
|
|
13700
14314
|
# pts_offset_handling_for_b_frames: "ZERO_BASED", # accepts ZERO_BASED, MATCH_INITIAL_PTS
|
|
13701
14315
|
# segment_control: "SINGLE_FILE", # accepts SINGLE_FILE, SEGMENTED_FILES
|
|
13702
14316
|
# segment_length: 1,
|
|
14317
|
+
# segment_length_control: "EXACT", # accepts EXACT, GOP_MULTIPLE
|
|
13703
14318
|
# stream_inf_resolution: "INCLUDE", # accepts INCLUDE, EXCLUDE
|
|
13704
14319
|
# target_duration_compatibility_mode: "LEGACY", # accepts LEGACY, SPEC_COMPLIANT
|
|
13705
14320
|
# write_dash_manifest: "DISABLED", # accepts DISABLED, ENABLED
|
|
@@ -13723,6 +14338,7 @@ module Aws::MediaConvert
|
|
|
13723
14338
|
# },
|
|
13724
14339
|
# encryption: {
|
|
13725
14340
|
# encryption_type: "SERVER_SIDE_ENCRYPTION_S3", # accepts SERVER_SIDE_ENCRYPTION_S3, SERVER_SIDE_ENCRYPTION_KMS
|
|
14341
|
+
# kms_encryption_context: "__stringPatternAZaZ0902",
|
|
13726
14342
|
# kms_key_arn: "__stringPatternArnAwsUsGovCnKmsAZ26EastWestCentralNorthSouthEastWest1912D12KeyAFAF098AFAF094AFAF094AFAF094AFAF0912",
|
|
13727
14343
|
# },
|
|
13728
14344
|
# },
|
|
@@ -13738,13 +14354,22 @@ module Aws::MediaConvert
|
|
|
13738
14354
|
# },
|
|
13739
14355
|
# fragment_length: 1,
|
|
13740
14356
|
# hbbtv_compliance: "HBBTV_1_5", # accepts HBBTV_1_5, NONE
|
|
13741
|
-
# image_based_trick_play: "NONE", # accepts NONE, THUMBNAIL, THUMBNAIL_AND_FULLFRAME
|
|
14357
|
+
# image_based_trick_play: "NONE", # accepts NONE, THUMBNAIL, THUMBNAIL_AND_FULLFRAME, ADVANCED
|
|
14358
|
+
# image_based_trick_play_settings: {
|
|
14359
|
+
# interval_cadence: "FOLLOW_IFRAME", # accepts FOLLOW_IFRAME, FOLLOW_CUSTOM
|
|
14360
|
+
# thumbnail_height: 1,
|
|
14361
|
+
# thumbnail_interval: 1.0,
|
|
14362
|
+
# thumbnail_width: 1,
|
|
14363
|
+
# tile_height: 1,
|
|
14364
|
+
# tile_width: 1,
|
|
14365
|
+
# },
|
|
13742
14366
|
# min_buffer_time: 1,
|
|
13743
14367
|
# min_final_segment_length: 1.0,
|
|
13744
14368
|
# mpd_profile: "MAIN_PROFILE", # accepts MAIN_PROFILE, ON_DEMAND_PROFILE
|
|
13745
14369
|
# pts_offset_handling_for_b_frames: "ZERO_BASED", # accepts ZERO_BASED, MATCH_INITIAL_PTS
|
|
13746
14370
|
# segment_control: "SINGLE_FILE", # accepts SINGLE_FILE, SEGMENTED_FILES
|
|
13747
14371
|
# segment_length: 1,
|
|
14372
|
+
# segment_length_control: "EXACT", # accepts EXACT, GOP_MULTIPLE
|
|
13748
14373
|
# write_segment_timeline_in_representation: "ENABLED", # accepts ENABLED, DISABLED
|
|
13749
14374
|
# },
|
|
13750
14375
|
# file_group_settings: {
|
|
@@ -13756,6 +14381,7 @@ module Aws::MediaConvert
|
|
|
13756
14381
|
# },
|
|
13757
14382
|
# encryption: {
|
|
13758
14383
|
# encryption_type: "SERVER_SIDE_ENCRYPTION_S3", # accepts SERVER_SIDE_ENCRYPTION_S3, SERVER_SIDE_ENCRYPTION_KMS
|
|
14384
|
+
# kms_encryption_context: "__stringPatternAZaZ0902",
|
|
13759
14385
|
# kms_key_arn: "__stringPatternArnAwsUsGovCnKmsAZ26EastWestCentralNorthSouthEastWest1912D12KeyAFAF098AFAF094AFAF094AFAF094AFAF0912",
|
|
13760
14386
|
# },
|
|
13761
14387
|
# },
|
|
@@ -13790,6 +14416,7 @@ module Aws::MediaConvert
|
|
|
13790
14416
|
# },
|
|
13791
14417
|
# encryption: {
|
|
13792
14418
|
# encryption_type: "SERVER_SIDE_ENCRYPTION_S3", # accepts SERVER_SIDE_ENCRYPTION_S3, SERVER_SIDE_ENCRYPTION_KMS
|
|
14419
|
+
# kms_encryption_context: "__stringPatternAZaZ0902",
|
|
13793
14420
|
# kms_key_arn: "__stringPatternArnAwsUsGovCnKmsAZ26EastWestCentralNorthSouthEastWest1912D12KeyAFAF098AFAF094AFAF094AFAF094AFAF0912",
|
|
13794
14421
|
# },
|
|
13795
14422
|
# },
|
|
@@ -13814,7 +14441,15 @@ module Aws::MediaConvert
|
|
|
13814
14441
|
# },
|
|
13815
14442
|
# type: "SPEKE", # accepts SPEKE, STATIC_KEY
|
|
13816
14443
|
# },
|
|
13817
|
-
# image_based_trick_play: "NONE", # accepts NONE, THUMBNAIL, THUMBNAIL_AND_FULLFRAME
|
|
14444
|
+
# image_based_trick_play: "NONE", # accepts NONE, THUMBNAIL, THUMBNAIL_AND_FULLFRAME, ADVANCED
|
|
14445
|
+
# image_based_trick_play_settings: {
|
|
14446
|
+
# interval_cadence: "FOLLOW_IFRAME", # accepts FOLLOW_IFRAME, FOLLOW_CUSTOM
|
|
14447
|
+
# thumbnail_height: 1,
|
|
14448
|
+
# thumbnail_interval: 1.0,
|
|
14449
|
+
# thumbnail_width: 1,
|
|
14450
|
+
# tile_height: 1,
|
|
14451
|
+
# tile_width: 1,
|
|
14452
|
+
# },
|
|
13818
14453
|
# manifest_compression: "GZIP", # accepts GZIP, NONE
|
|
13819
14454
|
# manifest_duration_format: "FLOATING_POINT", # accepts FLOATING_POINT, INTEGER
|
|
13820
14455
|
# min_final_segment_length: 1.0,
|
|
@@ -13824,6 +14459,7 @@ module Aws::MediaConvert
|
|
|
13824
14459
|
# program_date_time_period: 1,
|
|
13825
14460
|
# segment_control: "SINGLE_FILE", # accepts SINGLE_FILE, SEGMENTED_FILES
|
|
13826
14461
|
# segment_length: 1,
|
|
14462
|
+
# segment_length_control: "EXACT", # accepts EXACT, GOP_MULTIPLE
|
|
13827
14463
|
# segments_per_subdirectory: 1,
|
|
13828
14464
|
# stream_inf_resolution: "INCLUDE", # accepts INCLUDE, EXCLUDE
|
|
13829
14465
|
# target_duration_compatibility_mode: "LEGACY", # accepts LEGACY, SPEC_COMPLIANT
|
|
@@ -13847,6 +14483,7 @@ module Aws::MediaConvert
|
|
|
13847
14483
|
# },
|
|
13848
14484
|
# encryption: {
|
|
13849
14485
|
# encryption_type: "SERVER_SIDE_ENCRYPTION_S3", # accepts SERVER_SIDE_ENCRYPTION_S3, SERVER_SIDE_ENCRYPTION_KMS
|
|
14486
|
+
# kms_encryption_context: "__stringPatternAZaZ0902",
|
|
13850
14487
|
# kms_key_arn: "__stringPatternArnAwsUsGovCnKmsAZ26EastWestCentralNorthSouthEastWest1912D12KeyAFAF098AFAF094AFAF094AFAF094AFAF0912",
|
|
13851
14488
|
# },
|
|
13852
14489
|
# },
|
|
@@ -13860,6 +14497,7 @@ module Aws::MediaConvert
|
|
|
13860
14497
|
# },
|
|
13861
14498
|
# },
|
|
13862
14499
|
# fragment_length: 1,
|
|
14500
|
+
# fragment_length_control: "EXACT", # accepts EXACT, GOP_MULTIPLE
|
|
13863
14501
|
# manifest_encoding: "UTF8", # accepts UTF8, UTF16
|
|
13864
14502
|
# },
|
|
13865
14503
|
# type: "HLS_GROUP_SETTINGS", # accepts HLS_GROUP_SETTINGS, DASH_ISO_GROUP_SETTINGS, FILE_GROUP_SETTINGS, MS_SMOOTH_GROUP_SETTINGS, CMAF_GROUP_SETTINGS
|
|
@@ -14007,46 +14645,54 @@ module Aws::MediaConvert
|
|
|
14007
14645
|
# custom_language_code: "__stringPatternAZaZ23AZaZ",
|
|
14008
14646
|
# destination_settings: {
|
|
14009
14647
|
# burnin_destination_settings: {
|
|
14010
|
-
# alignment: "CENTERED", # accepts CENTERED, LEFT
|
|
14011
|
-
#
|
|
14648
|
+
# alignment: "CENTERED", # accepts CENTERED, LEFT, AUTO
|
|
14649
|
+
# apply_font_color: "WHITE_TEXT_ONLY", # accepts WHITE_TEXT_ONLY, ALL_TEXT
|
|
14650
|
+
# background_color: "NONE", # accepts NONE, BLACK, WHITE, AUTO
|
|
14012
14651
|
# background_opacity: 1,
|
|
14013
|
-
#
|
|
14652
|
+
# fallback_font: "BEST_MATCH", # accepts BEST_MATCH, MONOSPACED_SANSSERIF, MONOSPACED_SERIF, PROPORTIONAL_SANSSERIF, PROPORTIONAL_SERIF
|
|
14653
|
+
# font_color: "WHITE", # accepts WHITE, BLACK, YELLOW, RED, GREEN, BLUE, HEX, AUTO
|
|
14014
14654
|
# font_opacity: 1,
|
|
14015
14655
|
# font_resolution: 1,
|
|
14016
14656
|
# font_script: "AUTOMATIC", # accepts AUTOMATIC, HANS, HANT
|
|
14017
14657
|
# font_size: 1,
|
|
14018
|
-
#
|
|
14658
|
+
# hex_font_color: "__stringMin6Max8Pattern09aFAF609aFAF2",
|
|
14659
|
+
# outline_color: "BLACK", # accepts BLACK, WHITE, YELLOW, RED, GREEN, BLUE, AUTO
|
|
14019
14660
|
# outline_size: 1,
|
|
14020
|
-
# shadow_color: "NONE", # accepts NONE, BLACK, WHITE
|
|
14661
|
+
# shadow_color: "NONE", # accepts NONE, BLACK, WHITE, AUTO
|
|
14021
14662
|
# shadow_opacity: 1,
|
|
14022
14663
|
# shadow_x_offset: 1,
|
|
14023
14664
|
# shadow_y_offset: 1,
|
|
14024
|
-
#
|
|
14665
|
+
# style_passthrough: "ENABLED", # accepts ENABLED, DISABLED
|
|
14666
|
+
# teletext_spacing: "FIXED_GRID", # accepts FIXED_GRID, PROPORTIONAL, AUTO
|
|
14025
14667
|
# x_position: 1,
|
|
14026
14668
|
# y_position: 1,
|
|
14027
14669
|
# },
|
|
14028
14670
|
# destination_type: "BURN_IN", # accepts BURN_IN, DVB_SUB, EMBEDDED, EMBEDDED_PLUS_SCTE20, IMSC, SCTE20_PLUS_EMBEDDED, SCC, SRT, SMI, TELETEXT, TTML, WEBVTT
|
|
14029
14671
|
# dvb_sub_destination_settings: {
|
|
14030
|
-
# alignment: "CENTERED", # accepts CENTERED, LEFT
|
|
14031
|
-
#
|
|
14672
|
+
# alignment: "CENTERED", # accepts CENTERED, LEFT, AUTO
|
|
14673
|
+
# apply_font_color: "WHITE_TEXT_ONLY", # accepts WHITE_TEXT_ONLY, ALL_TEXT
|
|
14674
|
+
# background_color: "NONE", # accepts NONE, BLACK, WHITE, AUTO
|
|
14032
14675
|
# background_opacity: 1,
|
|
14033
14676
|
# dds_handling: "NONE", # accepts NONE, SPECIFIED, NO_DISPLAY_WINDOW
|
|
14034
14677
|
# dds_x_coordinate: 1,
|
|
14035
14678
|
# dds_y_coordinate: 1,
|
|
14036
|
-
#
|
|
14679
|
+
# fallback_font: "BEST_MATCH", # accepts BEST_MATCH, MONOSPACED_SANSSERIF, MONOSPACED_SERIF, PROPORTIONAL_SANSSERIF, PROPORTIONAL_SERIF
|
|
14680
|
+
# font_color: "WHITE", # accepts WHITE, BLACK, YELLOW, RED, GREEN, BLUE, HEX, AUTO
|
|
14037
14681
|
# font_opacity: 1,
|
|
14038
14682
|
# font_resolution: 1,
|
|
14039
14683
|
# font_script: "AUTOMATIC", # accepts AUTOMATIC, HANS, HANT
|
|
14040
14684
|
# font_size: 1,
|
|
14041
14685
|
# height: 1,
|
|
14042
|
-
#
|
|
14686
|
+
# hex_font_color: "__stringMin6Max8Pattern09aFAF609aFAF2",
|
|
14687
|
+
# outline_color: "BLACK", # accepts BLACK, WHITE, YELLOW, RED, GREEN, BLUE, AUTO
|
|
14043
14688
|
# outline_size: 1,
|
|
14044
|
-
# shadow_color: "NONE", # accepts NONE, BLACK, WHITE
|
|
14689
|
+
# shadow_color: "NONE", # accepts NONE, BLACK, WHITE, AUTO
|
|
14045
14690
|
# shadow_opacity: 1,
|
|
14046
14691
|
# shadow_x_offset: 1,
|
|
14047
14692
|
# shadow_y_offset: 1,
|
|
14693
|
+
# style_passthrough: "ENABLED", # accepts ENABLED, DISABLED
|
|
14048
14694
|
# subtitling_type: "HEARING_IMPAIRED", # accepts HEARING_IMPAIRED, STANDARD
|
|
14049
|
-
# teletext_spacing: "FIXED_GRID", # accepts FIXED_GRID, PROPORTIONAL
|
|
14695
|
+
# teletext_spacing: "FIXED_GRID", # accepts FIXED_GRID, PROPORTIONAL, AUTO
|
|
14050
14696
|
# width: 1,
|
|
14051
14697
|
# x_position: 1,
|
|
14052
14698
|
# y_position: 1,
|
|
@@ -14101,6 +14747,7 @@ module Aws::MediaConvert
|
|
|
14101
14747
|
# audio_pids: [1],
|
|
14102
14748
|
# bitrate: 1,
|
|
14103
14749
|
# buffer_model: "MULTIPLEX", # accepts MULTIPLEX, NONE
|
|
14750
|
+
# data_pts_control: "AUTO", # accepts AUTO, ALIGN_TO_VIDEO
|
|
14104
14751
|
# dvb_nit_settings: {
|
|
14105
14752
|
# network_id: 1,
|
|
14106
14753
|
# network_name: "__stringMin1Max256",
|
|
@@ -14150,6 +14797,7 @@ module Aws::MediaConvert
|
|
|
14150
14797
|
# audio_duration: "DEFAULT_CODEC_DURATION", # accepts DEFAULT_CODEC_DURATION, MATCH_VIDEO_DURATION
|
|
14151
14798
|
# audio_frames_per_pes: 1,
|
|
14152
14799
|
# audio_pids: [1],
|
|
14800
|
+
# data_pts_control: "AUTO", # accepts AUTO, ALIGN_TO_VIDEO
|
|
14153
14801
|
# max_pcr_interval: 1,
|
|
14154
14802
|
# nielsen_id_3: "INSERT", # accepts INSERT, NONE
|
|
14155
14803
|
# pat_interval: 1,
|
|
@@ -14260,7 +14908,7 @@ module Aws::MediaConvert
|
|
|
14260
14908
|
# codec_profile: "BASELINE", # accepts BASELINE, HIGH, HIGH_10BIT, HIGH_422, HIGH_422_10BIT, MAIN
|
|
14261
14909
|
# dynamic_sub_gop: "ADAPTIVE", # accepts ADAPTIVE, STATIC
|
|
14262
14910
|
# entropy_encoding: "CABAC", # accepts CABAC, CAVLC
|
|
14263
|
-
# field_encoding: "PAFF", # accepts PAFF, FORCE_FIELD
|
|
14911
|
+
# field_encoding: "PAFF", # accepts PAFF, FORCE_FIELD, MBAFF
|
|
14264
14912
|
# flicker_adaptive_quantization: "DISABLED", # accepts DISABLED, ENABLED
|
|
14265
14913
|
# framerate_control: "INITIALIZE_FROM_SOURCE", # accepts INITIALIZE_FROM_SOURCE, SPECIFIED
|
|
14266
14914
|
# framerate_conversion_algorithm: "DUPLICATE_DROP", # accepts DUPLICATE_DROP, INTERPOLATE, FRAMEFORMER
|
|
@@ -14625,8 +15273,12 @@ module Aws::MediaConvert
|
|
|
14625
15273
|
# @return [Types::EsamSettings]
|
|
14626
15274
|
#
|
|
14627
15275
|
# @!attribute [rw] extended_data_services
|
|
14628
|
-
#
|
|
14629
|
-
#
|
|
15276
|
+
# If your source content has EIA-608 Line 21 Data Services, enable
|
|
15277
|
+
# this feature to specify what MediaConvert does with the Extended
|
|
15278
|
+
# Data Services (XDS) packets. You can choose to pass through XDS
|
|
15279
|
+
# packets, or remove them from the output. For more information about
|
|
15280
|
+
# XDS, see EIA-608 Line Data Services, section 9.5.1.5 05h Content
|
|
15281
|
+
# Advisory.
|
|
14630
15282
|
# @return [Types::ExtendedDataServices]
|
|
14631
15283
|
#
|
|
14632
15284
|
# @!attribute [rw] inputs
|
|
@@ -15229,6 +15881,7 @@ module Aws::MediaConvert
|
|
|
15229
15881
|
# audio_pids: [1],
|
|
15230
15882
|
# bitrate: 1,
|
|
15231
15883
|
# buffer_model: "MULTIPLEX", # accepts MULTIPLEX, NONE
|
|
15884
|
+
# data_pts_control: "AUTO", # accepts AUTO, ALIGN_TO_VIDEO
|
|
15232
15885
|
# dvb_nit_settings: {
|
|
15233
15886
|
# network_id: 1,
|
|
15234
15887
|
# network_name: "__stringMin1Max256",
|
|
@@ -15323,6 +15976,14 @@ module Aws::MediaConvert
|
|
|
15323
15976
|
# play back the stream without interruptions.
|
|
15324
15977
|
# @return [String]
|
|
15325
15978
|
#
|
|
15979
|
+
# @!attribute [rw] data_pts_control
|
|
15980
|
+
# If you select ALIGN\_TO\_VIDEO, MediaConvert writes captions and
|
|
15981
|
+
# data packets with Presentation Timestamp (PTS) values greater than
|
|
15982
|
+
# or equal to the first video packet PTS (MediaConvert drops captions
|
|
15983
|
+
# and data packets with lesser PTS values). Keep the default value
|
|
15984
|
+
# (AUTO) to allow all PTS values.
|
|
15985
|
+
# @return [String]
|
|
15986
|
+
#
|
|
15326
15987
|
# @!attribute [rw] dvb_nit_settings
|
|
15327
15988
|
# Use these settings to insert a DVB Network Information Table (NIT)
|
|
15328
15989
|
# in the transport stream of this output. When you work directly in
|
|
@@ -15544,6 +16205,7 @@ module Aws::MediaConvert
|
|
|
15544
16205
|
:audio_pids,
|
|
15545
16206
|
:bitrate,
|
|
15546
16207
|
:buffer_model,
|
|
16208
|
+
:data_pts_control,
|
|
15547
16209
|
:dvb_nit_settings,
|
|
15548
16210
|
:dvb_sdt_settings,
|
|
15549
16211
|
:dvb_sub_pids,
|
|
@@ -15589,6 +16251,7 @@ module Aws::MediaConvert
|
|
|
15589
16251
|
# audio_duration: "DEFAULT_CODEC_DURATION", # accepts DEFAULT_CODEC_DURATION, MATCH_VIDEO_DURATION
|
|
15590
16252
|
# audio_frames_per_pes: 1,
|
|
15591
16253
|
# audio_pids: [1],
|
|
16254
|
+
# data_pts_control: "AUTO", # accepts AUTO, ALIGN_TO_VIDEO
|
|
15592
16255
|
# max_pcr_interval: 1,
|
|
15593
16256
|
# nielsen_id_3: "INSERT", # accepts INSERT, NONE
|
|
15594
16257
|
# pat_interval: 1,
|
|
@@ -15635,6 +16298,14 @@ module Aws::MediaConvert
|
|
|
15635
16298
|
# in ranges and/or by comma separation.
|
|
15636
16299
|
# @return [Array<Integer>]
|
|
15637
16300
|
#
|
|
16301
|
+
# @!attribute [rw] data_pts_control
|
|
16302
|
+
# If you select ALIGN\_TO\_VIDEO, MediaConvert writes captions and
|
|
16303
|
+
# data packets with Presentation Timestamp (PTS) values greater than
|
|
16304
|
+
# or equal to the first video packet PTS (MediaConvert drops captions
|
|
16305
|
+
# and data packets with lesser PTS values). Keep the default value
|
|
16306
|
+
# (AUTO) to allow all PTS values.
|
|
16307
|
+
# @return [String]
|
|
16308
|
+
#
|
|
15638
16309
|
# @!attribute [rw] max_pcr_interval
|
|
15639
16310
|
# Specify the maximum time, in milliseconds, between Program Clock
|
|
15640
16311
|
# References (PCRs) inserted into the transport stream.
|
|
@@ -15726,6 +16397,7 @@ module Aws::MediaConvert
|
|
|
15726
16397
|
:audio_duration,
|
|
15727
16398
|
:audio_frames_per_pes,
|
|
15728
16399
|
:audio_pids,
|
|
16400
|
+
:data_pts_control,
|
|
15729
16401
|
:max_pcr_interval,
|
|
15730
16402
|
:nielsen_id_3,
|
|
15731
16403
|
:pat_interval,
|
|
@@ -16340,14 +17012,16 @@ module Aws::MediaConvert
|
|
|
16340
17012
|
# @return [Integer]
|
|
16341
17013
|
#
|
|
16342
17014
|
# @!attribute [rw] gop_size
|
|
16343
|
-
#
|
|
16344
|
-
#
|
|
17015
|
+
# Specify the interval between keyframes, in seconds or frames, for
|
|
17016
|
+
# this output. Default: 12 Related settings: When you specify the GOP
|
|
17017
|
+
# size in seconds, set GOP mode control (GopSizeUnits) to Specified,
|
|
17018
|
+
# seconds (SECONDS). The default value for GOP mode control
|
|
17019
|
+
# (GopSizeUnits) is Frames (FRAMES).
|
|
16345
17020
|
# @return [Float]
|
|
16346
17021
|
#
|
|
16347
17022
|
# @!attribute [rw] gop_size_units
|
|
16348
|
-
#
|
|
16349
|
-
#
|
|
16350
|
-
# frame count at run time.
|
|
17023
|
+
# Specify the units for GOP size (GopSize). If you don't specify a
|
|
17024
|
+
# value here, by default the encoder measures GOP size in frames.
|
|
16351
17025
|
# @return [String]
|
|
16352
17026
|
#
|
|
16353
17027
|
# @!attribute [rw] hrd_buffer_initial_fill_percentage
|
|
@@ -16401,7 +17075,10 @@ module Aws::MediaConvert
|
|
|
16401
17075
|
# @return [Integer]
|
|
16402
17076
|
#
|
|
16403
17077
|
# @!attribute [rw] number_b_frames_between_reference_frames
|
|
16404
|
-
#
|
|
17078
|
+
# Specify the number of B-frames that MediaConvert puts between
|
|
17079
|
+
# reference frames in this output. Valid values are whole numbers from
|
|
17080
|
+
# 0 through 7. When you don't specify a value, MediaConvert defaults
|
|
17081
|
+
# to 2.
|
|
16405
17082
|
# @return [Integer]
|
|
16406
17083
|
#
|
|
16407
17084
|
# @!attribute [rw] par_control
|
|
@@ -16683,6 +17360,7 @@ module Aws::MediaConvert
|
|
|
16683
17360
|
# },
|
|
16684
17361
|
# encryption: {
|
|
16685
17362
|
# encryption_type: "SERVER_SIDE_ENCRYPTION_S3", # accepts SERVER_SIDE_ENCRYPTION_S3, SERVER_SIDE_ENCRYPTION_KMS
|
|
17363
|
+
# kms_encryption_context: "__stringPatternAZaZ0902",
|
|
16686
17364
|
# kms_key_arn: "__stringPatternArnAwsUsGovCnKmsAZ26EastWestCentralNorthSouthEastWest1912D12KeyAFAF098AFAF094AFAF094AFAF094AFAF0912",
|
|
16687
17365
|
# },
|
|
16688
17366
|
# },
|
|
@@ -16696,6 +17374,7 @@ module Aws::MediaConvert
|
|
|
16696
17374
|
# },
|
|
16697
17375
|
# },
|
|
16698
17376
|
# fragment_length: 1,
|
|
17377
|
+
# fragment_length_control: "EXACT", # accepts EXACT, GOP_MULTIPLE
|
|
16699
17378
|
# manifest_encoding: "UTF8", # accepts UTF8, UTF16
|
|
16700
17379
|
# }
|
|
16701
17380
|
#
|
|
@@ -16732,11 +17411,23 @@ module Aws::MediaConvert
|
|
|
16732
17411
|
# @return [Types::MsSmoothEncryptionSettings]
|
|
16733
17412
|
#
|
|
16734
17413
|
# @!attribute [rw] fragment_length
|
|
16735
|
-
#
|
|
16736
|
-
#
|
|
16737
|
-
#
|
|
17414
|
+
# Specify how you want MediaConvert to determine the fragment length.
|
|
17415
|
+
# Choose Exact (EXACT) to have the encoder use the exact length that
|
|
17416
|
+
# you specify with the setting Fragment length (FragmentLength). This
|
|
17417
|
+
# might result in extra I-frames. Choose Multiple of GOP
|
|
17418
|
+
# (GOP\_MULTIPLE) to have the encoder round up the segment lengths to
|
|
17419
|
+
# match the next GOP boundary.
|
|
16738
17420
|
# @return [Integer]
|
|
16739
17421
|
#
|
|
17422
|
+
# @!attribute [rw] fragment_length_control
|
|
17423
|
+
# Specify how you want MediaConvert to determine the fragment length.
|
|
17424
|
+
# Choose Exact (EXACT) to have the encoder use the exact length that
|
|
17425
|
+
# you specify with the setting Fragment length (FragmentLength). This
|
|
17426
|
+
# might result in extra I-frames. Choose Multiple of GOP
|
|
17427
|
+
# (GOP\_MULTIPLE) to have the encoder round up the segment lengths to
|
|
17428
|
+
# match the next GOP boundary.
|
|
17429
|
+
# @return [String]
|
|
17430
|
+
#
|
|
16740
17431
|
# @!attribute [rw] manifest_encoding
|
|
16741
17432
|
# Use Manifest encoding (MsSmoothManifestEncoding) to specify the
|
|
16742
17433
|
# encoding format for the server and client manifest. Valid options
|
|
@@ -16752,6 +17443,7 @@ module Aws::MediaConvert
|
|
|
16752
17443
|
:destination_settings,
|
|
16753
17444
|
:encryption,
|
|
16754
17445
|
:fragment_length,
|
|
17446
|
+
:fragment_length_control,
|
|
16755
17447
|
:manifest_encoding)
|
|
16756
17448
|
SENSITIVE = []
|
|
16757
17449
|
include Aws::Structure
|
|
@@ -17452,46 +18144,54 @@ module Aws::MediaConvert
|
|
|
17452
18144
|
# custom_language_code: "__stringPatternAZaZ23AZaZ",
|
|
17453
18145
|
# destination_settings: {
|
|
17454
18146
|
# burnin_destination_settings: {
|
|
17455
|
-
# alignment: "CENTERED", # accepts CENTERED, LEFT
|
|
17456
|
-
#
|
|
18147
|
+
# alignment: "CENTERED", # accepts CENTERED, LEFT, AUTO
|
|
18148
|
+
# apply_font_color: "WHITE_TEXT_ONLY", # accepts WHITE_TEXT_ONLY, ALL_TEXT
|
|
18149
|
+
# background_color: "NONE", # accepts NONE, BLACK, WHITE, AUTO
|
|
17457
18150
|
# background_opacity: 1,
|
|
17458
|
-
#
|
|
18151
|
+
# fallback_font: "BEST_MATCH", # accepts BEST_MATCH, MONOSPACED_SANSSERIF, MONOSPACED_SERIF, PROPORTIONAL_SANSSERIF, PROPORTIONAL_SERIF
|
|
18152
|
+
# font_color: "WHITE", # accepts WHITE, BLACK, YELLOW, RED, GREEN, BLUE, HEX, AUTO
|
|
17459
18153
|
# font_opacity: 1,
|
|
17460
18154
|
# font_resolution: 1,
|
|
17461
18155
|
# font_script: "AUTOMATIC", # accepts AUTOMATIC, HANS, HANT
|
|
17462
18156
|
# font_size: 1,
|
|
17463
|
-
#
|
|
18157
|
+
# hex_font_color: "__stringMin6Max8Pattern09aFAF609aFAF2",
|
|
18158
|
+
# outline_color: "BLACK", # accepts BLACK, WHITE, YELLOW, RED, GREEN, BLUE, AUTO
|
|
17464
18159
|
# outline_size: 1,
|
|
17465
|
-
# shadow_color: "NONE", # accepts NONE, BLACK, WHITE
|
|
18160
|
+
# shadow_color: "NONE", # accepts NONE, BLACK, WHITE, AUTO
|
|
17466
18161
|
# shadow_opacity: 1,
|
|
17467
18162
|
# shadow_x_offset: 1,
|
|
17468
18163
|
# shadow_y_offset: 1,
|
|
17469
|
-
#
|
|
18164
|
+
# style_passthrough: "ENABLED", # accepts ENABLED, DISABLED
|
|
18165
|
+
# teletext_spacing: "FIXED_GRID", # accepts FIXED_GRID, PROPORTIONAL, AUTO
|
|
17470
18166
|
# x_position: 1,
|
|
17471
18167
|
# y_position: 1,
|
|
17472
18168
|
# },
|
|
17473
18169
|
# destination_type: "BURN_IN", # accepts BURN_IN, DVB_SUB, EMBEDDED, EMBEDDED_PLUS_SCTE20, IMSC, SCTE20_PLUS_EMBEDDED, SCC, SRT, SMI, TELETEXT, TTML, WEBVTT
|
|
17474
18170
|
# dvb_sub_destination_settings: {
|
|
17475
|
-
# alignment: "CENTERED", # accepts CENTERED, LEFT
|
|
17476
|
-
#
|
|
18171
|
+
# alignment: "CENTERED", # accepts CENTERED, LEFT, AUTO
|
|
18172
|
+
# apply_font_color: "WHITE_TEXT_ONLY", # accepts WHITE_TEXT_ONLY, ALL_TEXT
|
|
18173
|
+
# background_color: "NONE", # accepts NONE, BLACK, WHITE, AUTO
|
|
17477
18174
|
# background_opacity: 1,
|
|
17478
18175
|
# dds_handling: "NONE", # accepts NONE, SPECIFIED, NO_DISPLAY_WINDOW
|
|
17479
18176
|
# dds_x_coordinate: 1,
|
|
17480
18177
|
# dds_y_coordinate: 1,
|
|
17481
|
-
#
|
|
18178
|
+
# fallback_font: "BEST_MATCH", # accepts BEST_MATCH, MONOSPACED_SANSSERIF, MONOSPACED_SERIF, PROPORTIONAL_SANSSERIF, PROPORTIONAL_SERIF
|
|
18179
|
+
# font_color: "WHITE", # accepts WHITE, BLACK, YELLOW, RED, GREEN, BLUE, HEX, AUTO
|
|
17482
18180
|
# font_opacity: 1,
|
|
17483
18181
|
# font_resolution: 1,
|
|
17484
18182
|
# font_script: "AUTOMATIC", # accepts AUTOMATIC, HANS, HANT
|
|
17485
18183
|
# font_size: 1,
|
|
17486
18184
|
# height: 1,
|
|
17487
|
-
#
|
|
18185
|
+
# hex_font_color: "__stringMin6Max8Pattern09aFAF609aFAF2",
|
|
18186
|
+
# outline_color: "BLACK", # accepts BLACK, WHITE, YELLOW, RED, GREEN, BLUE, AUTO
|
|
17488
18187
|
# outline_size: 1,
|
|
17489
|
-
# shadow_color: "NONE", # accepts NONE, BLACK, WHITE
|
|
18188
|
+
# shadow_color: "NONE", # accepts NONE, BLACK, WHITE, AUTO
|
|
17490
18189
|
# shadow_opacity: 1,
|
|
17491
18190
|
# shadow_x_offset: 1,
|
|
17492
18191
|
# shadow_y_offset: 1,
|
|
18192
|
+
# style_passthrough: "ENABLED", # accepts ENABLED, DISABLED
|
|
17493
18193
|
# subtitling_type: "HEARING_IMPAIRED", # accepts HEARING_IMPAIRED, STANDARD
|
|
17494
|
-
# teletext_spacing: "FIXED_GRID", # accepts FIXED_GRID, PROPORTIONAL
|
|
18194
|
+
# teletext_spacing: "FIXED_GRID", # accepts FIXED_GRID, PROPORTIONAL, AUTO
|
|
17495
18195
|
# width: 1,
|
|
17496
18196
|
# x_position: 1,
|
|
17497
18197
|
# y_position: 1,
|
|
@@ -17546,6 +18246,7 @@ module Aws::MediaConvert
|
|
|
17546
18246
|
# audio_pids: [1],
|
|
17547
18247
|
# bitrate: 1,
|
|
17548
18248
|
# buffer_model: "MULTIPLEX", # accepts MULTIPLEX, NONE
|
|
18249
|
+
# data_pts_control: "AUTO", # accepts AUTO, ALIGN_TO_VIDEO
|
|
17549
18250
|
# dvb_nit_settings: {
|
|
17550
18251
|
# network_id: 1,
|
|
17551
18252
|
# network_name: "__stringMin1Max256",
|
|
@@ -17595,6 +18296,7 @@ module Aws::MediaConvert
|
|
|
17595
18296
|
# audio_duration: "DEFAULT_CODEC_DURATION", # accepts DEFAULT_CODEC_DURATION, MATCH_VIDEO_DURATION
|
|
17596
18297
|
# audio_frames_per_pes: 1,
|
|
17597
18298
|
# audio_pids: [1],
|
|
18299
|
+
# data_pts_control: "AUTO", # accepts AUTO, ALIGN_TO_VIDEO
|
|
17598
18300
|
# max_pcr_interval: 1,
|
|
17599
18301
|
# nielsen_id_3: "INSERT", # accepts INSERT, NONE
|
|
17600
18302
|
# pat_interval: 1,
|
|
@@ -17705,7 +18407,7 @@ module Aws::MediaConvert
|
|
|
17705
18407
|
# codec_profile: "BASELINE", # accepts BASELINE, HIGH, HIGH_10BIT, HIGH_422, HIGH_422_10BIT, MAIN
|
|
17706
18408
|
# dynamic_sub_gop: "ADAPTIVE", # accepts ADAPTIVE, STATIC
|
|
17707
18409
|
# entropy_encoding: "CABAC", # accepts CABAC, CAVLC
|
|
17708
|
-
# field_encoding: "PAFF", # accepts PAFF, FORCE_FIELD
|
|
18410
|
+
# field_encoding: "PAFF", # accepts PAFF, FORCE_FIELD, MBAFF
|
|
17709
18411
|
# flicker_adaptive_quantization: "DISABLED", # accepts DISABLED, ENABLED
|
|
17710
18412
|
# framerate_control: "INITIALIZE_FROM_SOURCE", # accepts INITIALIZE_FROM_SOURCE, SPECIFIED
|
|
17711
18413
|
# framerate_conversion_algorithm: "DUPLICATE_DROP", # accepts DUPLICATE_DROP, INTERPOLATE, FRAMEFORMER
|
|
@@ -18190,6 +18892,7 @@ module Aws::MediaConvert
|
|
|
18190
18892
|
# },
|
|
18191
18893
|
# encryption: {
|
|
18192
18894
|
# encryption_type: "SERVER_SIDE_ENCRYPTION_S3", # accepts SERVER_SIDE_ENCRYPTION_S3, SERVER_SIDE_ENCRYPTION_KMS
|
|
18895
|
+
# kms_encryption_context: "__stringPatternAZaZ0902",
|
|
18193
18896
|
# kms_key_arn: "__stringPatternArnAwsUsGovCnKmsAZ26EastWestCentralNorthSouthEastWest1912D12KeyAFAF098AFAF094AFAF094AFAF094AFAF0912",
|
|
18194
18897
|
# },
|
|
18195
18898
|
# },
|
|
@@ -18214,7 +18917,15 @@ module Aws::MediaConvert
|
|
|
18214
18917
|
# type: "SPEKE", # accepts SPEKE, STATIC_KEY
|
|
18215
18918
|
# },
|
|
18216
18919
|
# fragment_length: 1,
|
|
18217
|
-
# image_based_trick_play: "NONE", # accepts NONE, THUMBNAIL, THUMBNAIL_AND_FULLFRAME
|
|
18920
|
+
# image_based_trick_play: "NONE", # accepts NONE, THUMBNAIL, THUMBNAIL_AND_FULLFRAME, ADVANCED
|
|
18921
|
+
# image_based_trick_play_settings: {
|
|
18922
|
+
# interval_cadence: "FOLLOW_IFRAME", # accepts FOLLOW_IFRAME, FOLLOW_CUSTOM
|
|
18923
|
+
# thumbnail_height: 1,
|
|
18924
|
+
# thumbnail_interval: 1.0,
|
|
18925
|
+
# thumbnail_width: 1,
|
|
18926
|
+
# tile_height: 1,
|
|
18927
|
+
# tile_width: 1,
|
|
18928
|
+
# },
|
|
18218
18929
|
# manifest_compression: "GZIP", # accepts GZIP, NONE
|
|
18219
18930
|
# manifest_duration_format: "FLOATING_POINT", # accepts FLOATING_POINT, INTEGER
|
|
18220
18931
|
# min_buffer_time: 1,
|
|
@@ -18223,6 +18934,7 @@ module Aws::MediaConvert
|
|
|
18223
18934
|
# pts_offset_handling_for_b_frames: "ZERO_BASED", # accepts ZERO_BASED, MATCH_INITIAL_PTS
|
|
18224
18935
|
# segment_control: "SINGLE_FILE", # accepts SINGLE_FILE, SEGMENTED_FILES
|
|
18225
18936
|
# segment_length: 1,
|
|
18937
|
+
# segment_length_control: "EXACT", # accepts EXACT, GOP_MULTIPLE
|
|
18226
18938
|
# stream_inf_resolution: "INCLUDE", # accepts INCLUDE, EXCLUDE
|
|
18227
18939
|
# target_duration_compatibility_mode: "LEGACY", # accepts LEGACY, SPEC_COMPLIANT
|
|
18228
18940
|
# write_dash_manifest: "DISABLED", # accepts DISABLED, ENABLED
|
|
@@ -18246,6 +18958,7 @@ module Aws::MediaConvert
|
|
|
18246
18958
|
# },
|
|
18247
18959
|
# encryption: {
|
|
18248
18960
|
# encryption_type: "SERVER_SIDE_ENCRYPTION_S3", # accepts SERVER_SIDE_ENCRYPTION_S3, SERVER_SIDE_ENCRYPTION_KMS
|
|
18961
|
+
# kms_encryption_context: "__stringPatternAZaZ0902",
|
|
18249
18962
|
# kms_key_arn: "__stringPatternArnAwsUsGovCnKmsAZ26EastWestCentralNorthSouthEastWest1912D12KeyAFAF098AFAF094AFAF094AFAF094AFAF0912",
|
|
18250
18963
|
# },
|
|
18251
18964
|
# },
|
|
@@ -18261,13 +18974,22 @@ module Aws::MediaConvert
|
|
|
18261
18974
|
# },
|
|
18262
18975
|
# fragment_length: 1,
|
|
18263
18976
|
# hbbtv_compliance: "HBBTV_1_5", # accepts HBBTV_1_5, NONE
|
|
18264
|
-
# image_based_trick_play: "NONE", # accepts NONE, THUMBNAIL, THUMBNAIL_AND_FULLFRAME
|
|
18977
|
+
# image_based_trick_play: "NONE", # accepts NONE, THUMBNAIL, THUMBNAIL_AND_FULLFRAME, ADVANCED
|
|
18978
|
+
# image_based_trick_play_settings: {
|
|
18979
|
+
# interval_cadence: "FOLLOW_IFRAME", # accepts FOLLOW_IFRAME, FOLLOW_CUSTOM
|
|
18980
|
+
# thumbnail_height: 1,
|
|
18981
|
+
# thumbnail_interval: 1.0,
|
|
18982
|
+
# thumbnail_width: 1,
|
|
18983
|
+
# tile_height: 1,
|
|
18984
|
+
# tile_width: 1,
|
|
18985
|
+
# },
|
|
18265
18986
|
# min_buffer_time: 1,
|
|
18266
18987
|
# min_final_segment_length: 1.0,
|
|
18267
18988
|
# mpd_profile: "MAIN_PROFILE", # accepts MAIN_PROFILE, ON_DEMAND_PROFILE
|
|
18268
18989
|
# pts_offset_handling_for_b_frames: "ZERO_BASED", # accepts ZERO_BASED, MATCH_INITIAL_PTS
|
|
18269
18990
|
# segment_control: "SINGLE_FILE", # accepts SINGLE_FILE, SEGMENTED_FILES
|
|
18270
18991
|
# segment_length: 1,
|
|
18992
|
+
# segment_length_control: "EXACT", # accepts EXACT, GOP_MULTIPLE
|
|
18271
18993
|
# write_segment_timeline_in_representation: "ENABLED", # accepts ENABLED, DISABLED
|
|
18272
18994
|
# },
|
|
18273
18995
|
# file_group_settings: {
|
|
@@ -18279,6 +19001,7 @@ module Aws::MediaConvert
|
|
|
18279
19001
|
# },
|
|
18280
19002
|
# encryption: {
|
|
18281
19003
|
# encryption_type: "SERVER_SIDE_ENCRYPTION_S3", # accepts SERVER_SIDE_ENCRYPTION_S3, SERVER_SIDE_ENCRYPTION_KMS
|
|
19004
|
+
# kms_encryption_context: "__stringPatternAZaZ0902",
|
|
18282
19005
|
# kms_key_arn: "__stringPatternArnAwsUsGovCnKmsAZ26EastWestCentralNorthSouthEastWest1912D12KeyAFAF098AFAF094AFAF094AFAF094AFAF0912",
|
|
18283
19006
|
# },
|
|
18284
19007
|
# },
|
|
@@ -18313,6 +19036,7 @@ module Aws::MediaConvert
|
|
|
18313
19036
|
# },
|
|
18314
19037
|
# encryption: {
|
|
18315
19038
|
# encryption_type: "SERVER_SIDE_ENCRYPTION_S3", # accepts SERVER_SIDE_ENCRYPTION_S3, SERVER_SIDE_ENCRYPTION_KMS
|
|
19039
|
+
# kms_encryption_context: "__stringPatternAZaZ0902",
|
|
18316
19040
|
# kms_key_arn: "__stringPatternArnAwsUsGovCnKmsAZ26EastWestCentralNorthSouthEastWest1912D12KeyAFAF098AFAF094AFAF094AFAF094AFAF0912",
|
|
18317
19041
|
# },
|
|
18318
19042
|
# },
|
|
@@ -18337,7 +19061,15 @@ module Aws::MediaConvert
|
|
|
18337
19061
|
# },
|
|
18338
19062
|
# type: "SPEKE", # accepts SPEKE, STATIC_KEY
|
|
18339
19063
|
# },
|
|
18340
|
-
# image_based_trick_play: "NONE", # accepts NONE, THUMBNAIL, THUMBNAIL_AND_FULLFRAME
|
|
19064
|
+
# image_based_trick_play: "NONE", # accepts NONE, THUMBNAIL, THUMBNAIL_AND_FULLFRAME, ADVANCED
|
|
19065
|
+
# image_based_trick_play_settings: {
|
|
19066
|
+
# interval_cadence: "FOLLOW_IFRAME", # accepts FOLLOW_IFRAME, FOLLOW_CUSTOM
|
|
19067
|
+
# thumbnail_height: 1,
|
|
19068
|
+
# thumbnail_interval: 1.0,
|
|
19069
|
+
# thumbnail_width: 1,
|
|
19070
|
+
# tile_height: 1,
|
|
19071
|
+
# tile_width: 1,
|
|
19072
|
+
# },
|
|
18341
19073
|
# manifest_compression: "GZIP", # accepts GZIP, NONE
|
|
18342
19074
|
# manifest_duration_format: "FLOATING_POINT", # accepts FLOATING_POINT, INTEGER
|
|
18343
19075
|
# min_final_segment_length: 1.0,
|
|
@@ -18347,6 +19079,7 @@ module Aws::MediaConvert
|
|
|
18347
19079
|
# program_date_time_period: 1,
|
|
18348
19080
|
# segment_control: "SINGLE_FILE", # accepts SINGLE_FILE, SEGMENTED_FILES
|
|
18349
19081
|
# segment_length: 1,
|
|
19082
|
+
# segment_length_control: "EXACT", # accepts EXACT, GOP_MULTIPLE
|
|
18350
19083
|
# segments_per_subdirectory: 1,
|
|
18351
19084
|
# stream_inf_resolution: "INCLUDE", # accepts INCLUDE, EXCLUDE
|
|
18352
19085
|
# target_duration_compatibility_mode: "LEGACY", # accepts LEGACY, SPEC_COMPLIANT
|
|
@@ -18370,6 +19103,7 @@ module Aws::MediaConvert
|
|
|
18370
19103
|
# },
|
|
18371
19104
|
# encryption: {
|
|
18372
19105
|
# encryption_type: "SERVER_SIDE_ENCRYPTION_S3", # accepts SERVER_SIDE_ENCRYPTION_S3, SERVER_SIDE_ENCRYPTION_KMS
|
|
19106
|
+
# kms_encryption_context: "__stringPatternAZaZ0902",
|
|
18373
19107
|
# kms_key_arn: "__stringPatternArnAwsUsGovCnKmsAZ26EastWestCentralNorthSouthEastWest1912D12KeyAFAF098AFAF094AFAF094AFAF094AFAF0912",
|
|
18374
19108
|
# },
|
|
18375
19109
|
# },
|
|
@@ -18383,6 +19117,7 @@ module Aws::MediaConvert
|
|
|
18383
19117
|
# },
|
|
18384
19118
|
# },
|
|
18385
19119
|
# fragment_length: 1,
|
|
19120
|
+
# fragment_length_control: "EXACT", # accepts EXACT, GOP_MULTIPLE
|
|
18386
19121
|
# manifest_encoding: "UTF8", # accepts UTF8, UTF16
|
|
18387
19122
|
# },
|
|
18388
19123
|
# type: "HLS_GROUP_SETTINGS", # accepts HLS_GROUP_SETTINGS, DASH_ISO_GROUP_SETTINGS, FILE_GROUP_SETTINGS, MS_SMOOTH_GROUP_SETTINGS, CMAF_GROUP_SETTINGS
|
|
@@ -18530,46 +19265,54 @@ module Aws::MediaConvert
|
|
|
18530
19265
|
# custom_language_code: "__stringPatternAZaZ23AZaZ",
|
|
18531
19266
|
# destination_settings: {
|
|
18532
19267
|
# burnin_destination_settings: {
|
|
18533
|
-
# alignment: "CENTERED", # accepts CENTERED, LEFT
|
|
18534
|
-
#
|
|
19268
|
+
# alignment: "CENTERED", # accepts CENTERED, LEFT, AUTO
|
|
19269
|
+
# apply_font_color: "WHITE_TEXT_ONLY", # accepts WHITE_TEXT_ONLY, ALL_TEXT
|
|
19270
|
+
# background_color: "NONE", # accepts NONE, BLACK, WHITE, AUTO
|
|
18535
19271
|
# background_opacity: 1,
|
|
18536
|
-
#
|
|
19272
|
+
# fallback_font: "BEST_MATCH", # accepts BEST_MATCH, MONOSPACED_SANSSERIF, MONOSPACED_SERIF, PROPORTIONAL_SANSSERIF, PROPORTIONAL_SERIF
|
|
19273
|
+
# font_color: "WHITE", # accepts WHITE, BLACK, YELLOW, RED, GREEN, BLUE, HEX, AUTO
|
|
18537
19274
|
# font_opacity: 1,
|
|
18538
19275
|
# font_resolution: 1,
|
|
18539
19276
|
# font_script: "AUTOMATIC", # accepts AUTOMATIC, HANS, HANT
|
|
18540
19277
|
# font_size: 1,
|
|
18541
|
-
#
|
|
19278
|
+
# hex_font_color: "__stringMin6Max8Pattern09aFAF609aFAF2",
|
|
19279
|
+
# outline_color: "BLACK", # accepts BLACK, WHITE, YELLOW, RED, GREEN, BLUE, AUTO
|
|
18542
19280
|
# outline_size: 1,
|
|
18543
|
-
# shadow_color: "NONE", # accepts NONE, BLACK, WHITE
|
|
19281
|
+
# shadow_color: "NONE", # accepts NONE, BLACK, WHITE, AUTO
|
|
18544
19282
|
# shadow_opacity: 1,
|
|
18545
19283
|
# shadow_x_offset: 1,
|
|
18546
19284
|
# shadow_y_offset: 1,
|
|
18547
|
-
#
|
|
19285
|
+
# style_passthrough: "ENABLED", # accepts ENABLED, DISABLED
|
|
19286
|
+
# teletext_spacing: "FIXED_GRID", # accepts FIXED_GRID, PROPORTIONAL, AUTO
|
|
18548
19287
|
# x_position: 1,
|
|
18549
19288
|
# y_position: 1,
|
|
18550
19289
|
# },
|
|
18551
19290
|
# destination_type: "BURN_IN", # accepts BURN_IN, DVB_SUB, EMBEDDED, EMBEDDED_PLUS_SCTE20, IMSC, SCTE20_PLUS_EMBEDDED, SCC, SRT, SMI, TELETEXT, TTML, WEBVTT
|
|
18552
19291
|
# dvb_sub_destination_settings: {
|
|
18553
|
-
# alignment: "CENTERED", # accepts CENTERED, LEFT
|
|
18554
|
-
#
|
|
19292
|
+
# alignment: "CENTERED", # accepts CENTERED, LEFT, AUTO
|
|
19293
|
+
# apply_font_color: "WHITE_TEXT_ONLY", # accepts WHITE_TEXT_ONLY, ALL_TEXT
|
|
19294
|
+
# background_color: "NONE", # accepts NONE, BLACK, WHITE, AUTO
|
|
18555
19295
|
# background_opacity: 1,
|
|
18556
19296
|
# dds_handling: "NONE", # accepts NONE, SPECIFIED, NO_DISPLAY_WINDOW
|
|
18557
19297
|
# dds_x_coordinate: 1,
|
|
18558
19298
|
# dds_y_coordinate: 1,
|
|
18559
|
-
#
|
|
19299
|
+
# fallback_font: "BEST_MATCH", # accepts BEST_MATCH, MONOSPACED_SANSSERIF, MONOSPACED_SERIF, PROPORTIONAL_SANSSERIF, PROPORTIONAL_SERIF
|
|
19300
|
+
# font_color: "WHITE", # accepts WHITE, BLACK, YELLOW, RED, GREEN, BLUE, HEX, AUTO
|
|
18560
19301
|
# font_opacity: 1,
|
|
18561
19302
|
# font_resolution: 1,
|
|
18562
19303
|
# font_script: "AUTOMATIC", # accepts AUTOMATIC, HANS, HANT
|
|
18563
19304
|
# font_size: 1,
|
|
18564
19305
|
# height: 1,
|
|
18565
|
-
#
|
|
19306
|
+
# hex_font_color: "__stringMin6Max8Pattern09aFAF609aFAF2",
|
|
19307
|
+
# outline_color: "BLACK", # accepts BLACK, WHITE, YELLOW, RED, GREEN, BLUE, AUTO
|
|
18566
19308
|
# outline_size: 1,
|
|
18567
|
-
# shadow_color: "NONE", # accepts NONE, BLACK, WHITE
|
|
19309
|
+
# shadow_color: "NONE", # accepts NONE, BLACK, WHITE, AUTO
|
|
18568
19310
|
# shadow_opacity: 1,
|
|
18569
19311
|
# shadow_x_offset: 1,
|
|
18570
19312
|
# shadow_y_offset: 1,
|
|
19313
|
+
# style_passthrough: "ENABLED", # accepts ENABLED, DISABLED
|
|
18571
19314
|
# subtitling_type: "HEARING_IMPAIRED", # accepts HEARING_IMPAIRED, STANDARD
|
|
18572
|
-
# teletext_spacing: "FIXED_GRID", # accepts FIXED_GRID, PROPORTIONAL
|
|
19315
|
+
# teletext_spacing: "FIXED_GRID", # accepts FIXED_GRID, PROPORTIONAL, AUTO
|
|
18573
19316
|
# width: 1,
|
|
18574
19317
|
# x_position: 1,
|
|
18575
19318
|
# y_position: 1,
|
|
@@ -18624,6 +19367,7 @@ module Aws::MediaConvert
|
|
|
18624
19367
|
# audio_pids: [1],
|
|
18625
19368
|
# bitrate: 1,
|
|
18626
19369
|
# buffer_model: "MULTIPLEX", # accepts MULTIPLEX, NONE
|
|
19370
|
+
# data_pts_control: "AUTO", # accepts AUTO, ALIGN_TO_VIDEO
|
|
18627
19371
|
# dvb_nit_settings: {
|
|
18628
19372
|
# network_id: 1,
|
|
18629
19373
|
# network_name: "__stringMin1Max256",
|
|
@@ -18673,6 +19417,7 @@ module Aws::MediaConvert
|
|
|
18673
19417
|
# audio_duration: "DEFAULT_CODEC_DURATION", # accepts DEFAULT_CODEC_DURATION, MATCH_VIDEO_DURATION
|
|
18674
19418
|
# audio_frames_per_pes: 1,
|
|
18675
19419
|
# audio_pids: [1],
|
|
19420
|
+
# data_pts_control: "AUTO", # accepts AUTO, ALIGN_TO_VIDEO
|
|
18676
19421
|
# max_pcr_interval: 1,
|
|
18677
19422
|
# nielsen_id_3: "INSERT", # accepts INSERT, NONE
|
|
18678
19423
|
# pat_interval: 1,
|
|
@@ -18783,7 +19528,7 @@ module Aws::MediaConvert
|
|
|
18783
19528
|
# codec_profile: "BASELINE", # accepts BASELINE, HIGH, HIGH_10BIT, HIGH_422, HIGH_422_10BIT, MAIN
|
|
18784
19529
|
# dynamic_sub_gop: "ADAPTIVE", # accepts ADAPTIVE, STATIC
|
|
18785
19530
|
# entropy_encoding: "CABAC", # accepts CABAC, CAVLC
|
|
18786
|
-
# field_encoding: "PAFF", # accepts PAFF, FORCE_FIELD
|
|
19531
|
+
# field_encoding: "PAFF", # accepts PAFF, FORCE_FIELD, MBAFF
|
|
18787
19532
|
# flicker_adaptive_quantization: "DISABLED", # accepts DISABLED, ENABLED
|
|
18788
19533
|
# framerate_control: "INITIALIZE_FROM_SOURCE", # accepts INITIALIZE_FROM_SOURCE, SPECIFIED
|
|
18789
19534
|
# framerate_conversion_algorithm: "DUPLICATE_DROP", # accepts DUPLICATE_DROP, INTERPOLATE, FRAMEFORMER
|
|
@@ -19193,6 +19938,7 @@ module Aws::MediaConvert
|
|
|
19193
19938
|
# },
|
|
19194
19939
|
# encryption: {
|
|
19195
19940
|
# encryption_type: "SERVER_SIDE_ENCRYPTION_S3", # accepts SERVER_SIDE_ENCRYPTION_S3, SERVER_SIDE_ENCRYPTION_KMS
|
|
19941
|
+
# kms_encryption_context: "__stringPatternAZaZ0902",
|
|
19196
19942
|
# kms_key_arn: "__stringPatternArnAwsUsGovCnKmsAZ26EastWestCentralNorthSouthEastWest1912D12KeyAFAF098AFAF094AFAF094AFAF094AFAF0912",
|
|
19197
19943
|
# },
|
|
19198
19944
|
# },
|
|
@@ -19217,7 +19963,15 @@ module Aws::MediaConvert
|
|
|
19217
19963
|
# type: "SPEKE", # accepts SPEKE, STATIC_KEY
|
|
19218
19964
|
# },
|
|
19219
19965
|
# fragment_length: 1,
|
|
19220
|
-
# image_based_trick_play: "NONE", # accepts NONE, THUMBNAIL, THUMBNAIL_AND_FULLFRAME
|
|
19966
|
+
# image_based_trick_play: "NONE", # accepts NONE, THUMBNAIL, THUMBNAIL_AND_FULLFRAME, ADVANCED
|
|
19967
|
+
# image_based_trick_play_settings: {
|
|
19968
|
+
# interval_cadence: "FOLLOW_IFRAME", # accepts FOLLOW_IFRAME, FOLLOW_CUSTOM
|
|
19969
|
+
# thumbnail_height: 1,
|
|
19970
|
+
# thumbnail_interval: 1.0,
|
|
19971
|
+
# thumbnail_width: 1,
|
|
19972
|
+
# tile_height: 1,
|
|
19973
|
+
# tile_width: 1,
|
|
19974
|
+
# },
|
|
19221
19975
|
# manifest_compression: "GZIP", # accepts GZIP, NONE
|
|
19222
19976
|
# manifest_duration_format: "FLOATING_POINT", # accepts FLOATING_POINT, INTEGER
|
|
19223
19977
|
# min_buffer_time: 1,
|
|
@@ -19226,6 +19980,7 @@ module Aws::MediaConvert
|
|
|
19226
19980
|
# pts_offset_handling_for_b_frames: "ZERO_BASED", # accepts ZERO_BASED, MATCH_INITIAL_PTS
|
|
19227
19981
|
# segment_control: "SINGLE_FILE", # accepts SINGLE_FILE, SEGMENTED_FILES
|
|
19228
19982
|
# segment_length: 1,
|
|
19983
|
+
# segment_length_control: "EXACT", # accepts EXACT, GOP_MULTIPLE
|
|
19229
19984
|
# stream_inf_resolution: "INCLUDE", # accepts INCLUDE, EXCLUDE
|
|
19230
19985
|
# target_duration_compatibility_mode: "LEGACY", # accepts LEGACY, SPEC_COMPLIANT
|
|
19231
19986
|
# write_dash_manifest: "DISABLED", # accepts DISABLED, ENABLED
|
|
@@ -19249,6 +20004,7 @@ module Aws::MediaConvert
|
|
|
19249
20004
|
# },
|
|
19250
20005
|
# encryption: {
|
|
19251
20006
|
# encryption_type: "SERVER_SIDE_ENCRYPTION_S3", # accepts SERVER_SIDE_ENCRYPTION_S3, SERVER_SIDE_ENCRYPTION_KMS
|
|
20007
|
+
# kms_encryption_context: "__stringPatternAZaZ0902",
|
|
19252
20008
|
# kms_key_arn: "__stringPatternArnAwsUsGovCnKmsAZ26EastWestCentralNorthSouthEastWest1912D12KeyAFAF098AFAF094AFAF094AFAF094AFAF0912",
|
|
19253
20009
|
# },
|
|
19254
20010
|
# },
|
|
@@ -19264,13 +20020,22 @@ module Aws::MediaConvert
|
|
|
19264
20020
|
# },
|
|
19265
20021
|
# fragment_length: 1,
|
|
19266
20022
|
# hbbtv_compliance: "HBBTV_1_5", # accepts HBBTV_1_5, NONE
|
|
19267
|
-
# image_based_trick_play: "NONE", # accepts NONE, THUMBNAIL, THUMBNAIL_AND_FULLFRAME
|
|
20023
|
+
# image_based_trick_play: "NONE", # accepts NONE, THUMBNAIL, THUMBNAIL_AND_FULLFRAME, ADVANCED
|
|
20024
|
+
# image_based_trick_play_settings: {
|
|
20025
|
+
# interval_cadence: "FOLLOW_IFRAME", # accepts FOLLOW_IFRAME, FOLLOW_CUSTOM
|
|
20026
|
+
# thumbnail_height: 1,
|
|
20027
|
+
# thumbnail_interval: 1.0,
|
|
20028
|
+
# thumbnail_width: 1,
|
|
20029
|
+
# tile_height: 1,
|
|
20030
|
+
# tile_width: 1,
|
|
20031
|
+
# },
|
|
19268
20032
|
# min_buffer_time: 1,
|
|
19269
20033
|
# min_final_segment_length: 1.0,
|
|
19270
20034
|
# mpd_profile: "MAIN_PROFILE", # accepts MAIN_PROFILE, ON_DEMAND_PROFILE
|
|
19271
20035
|
# pts_offset_handling_for_b_frames: "ZERO_BASED", # accepts ZERO_BASED, MATCH_INITIAL_PTS
|
|
19272
20036
|
# segment_control: "SINGLE_FILE", # accepts SINGLE_FILE, SEGMENTED_FILES
|
|
19273
20037
|
# segment_length: 1,
|
|
20038
|
+
# segment_length_control: "EXACT", # accepts EXACT, GOP_MULTIPLE
|
|
19274
20039
|
# write_segment_timeline_in_representation: "ENABLED", # accepts ENABLED, DISABLED
|
|
19275
20040
|
# },
|
|
19276
20041
|
# file_group_settings: {
|
|
@@ -19282,6 +20047,7 @@ module Aws::MediaConvert
|
|
|
19282
20047
|
# },
|
|
19283
20048
|
# encryption: {
|
|
19284
20049
|
# encryption_type: "SERVER_SIDE_ENCRYPTION_S3", # accepts SERVER_SIDE_ENCRYPTION_S3, SERVER_SIDE_ENCRYPTION_KMS
|
|
20050
|
+
# kms_encryption_context: "__stringPatternAZaZ0902",
|
|
19285
20051
|
# kms_key_arn: "__stringPatternArnAwsUsGovCnKmsAZ26EastWestCentralNorthSouthEastWest1912D12KeyAFAF098AFAF094AFAF094AFAF094AFAF0912",
|
|
19286
20052
|
# },
|
|
19287
20053
|
# },
|
|
@@ -19316,6 +20082,7 @@ module Aws::MediaConvert
|
|
|
19316
20082
|
# },
|
|
19317
20083
|
# encryption: {
|
|
19318
20084
|
# encryption_type: "SERVER_SIDE_ENCRYPTION_S3", # accepts SERVER_SIDE_ENCRYPTION_S3, SERVER_SIDE_ENCRYPTION_KMS
|
|
20085
|
+
# kms_encryption_context: "__stringPatternAZaZ0902",
|
|
19319
20086
|
# kms_key_arn: "__stringPatternArnAwsUsGovCnKmsAZ26EastWestCentralNorthSouthEastWest1912D12KeyAFAF098AFAF094AFAF094AFAF094AFAF0912",
|
|
19320
20087
|
# },
|
|
19321
20088
|
# },
|
|
@@ -19340,7 +20107,15 @@ module Aws::MediaConvert
|
|
|
19340
20107
|
# },
|
|
19341
20108
|
# type: "SPEKE", # accepts SPEKE, STATIC_KEY
|
|
19342
20109
|
# },
|
|
19343
|
-
# image_based_trick_play: "NONE", # accepts NONE, THUMBNAIL, THUMBNAIL_AND_FULLFRAME
|
|
20110
|
+
# image_based_trick_play: "NONE", # accepts NONE, THUMBNAIL, THUMBNAIL_AND_FULLFRAME, ADVANCED
|
|
20111
|
+
# image_based_trick_play_settings: {
|
|
20112
|
+
# interval_cadence: "FOLLOW_IFRAME", # accepts FOLLOW_IFRAME, FOLLOW_CUSTOM
|
|
20113
|
+
# thumbnail_height: 1,
|
|
20114
|
+
# thumbnail_interval: 1.0,
|
|
20115
|
+
# thumbnail_width: 1,
|
|
20116
|
+
# tile_height: 1,
|
|
20117
|
+
# tile_width: 1,
|
|
20118
|
+
# },
|
|
19344
20119
|
# manifest_compression: "GZIP", # accepts GZIP, NONE
|
|
19345
20120
|
# manifest_duration_format: "FLOATING_POINT", # accepts FLOATING_POINT, INTEGER
|
|
19346
20121
|
# min_final_segment_length: 1.0,
|
|
@@ -19350,6 +20125,7 @@ module Aws::MediaConvert
|
|
|
19350
20125
|
# program_date_time_period: 1,
|
|
19351
20126
|
# segment_control: "SINGLE_FILE", # accepts SINGLE_FILE, SEGMENTED_FILES
|
|
19352
20127
|
# segment_length: 1,
|
|
20128
|
+
# segment_length_control: "EXACT", # accepts EXACT, GOP_MULTIPLE
|
|
19353
20129
|
# segments_per_subdirectory: 1,
|
|
19354
20130
|
# stream_inf_resolution: "INCLUDE", # accepts INCLUDE, EXCLUDE
|
|
19355
20131
|
# target_duration_compatibility_mode: "LEGACY", # accepts LEGACY, SPEC_COMPLIANT
|
|
@@ -19373,6 +20149,7 @@ module Aws::MediaConvert
|
|
|
19373
20149
|
# },
|
|
19374
20150
|
# encryption: {
|
|
19375
20151
|
# encryption_type: "SERVER_SIDE_ENCRYPTION_S3", # accepts SERVER_SIDE_ENCRYPTION_S3, SERVER_SIDE_ENCRYPTION_KMS
|
|
20152
|
+
# kms_encryption_context: "__stringPatternAZaZ0902",
|
|
19376
20153
|
# kms_key_arn: "__stringPatternArnAwsUsGovCnKmsAZ26EastWestCentralNorthSouthEastWest1912D12KeyAFAF098AFAF094AFAF094AFAF094AFAF0912",
|
|
19377
20154
|
# },
|
|
19378
20155
|
# },
|
|
@@ -19386,6 +20163,7 @@ module Aws::MediaConvert
|
|
|
19386
20163
|
# },
|
|
19387
20164
|
# },
|
|
19388
20165
|
# fragment_length: 1,
|
|
20166
|
+
# fragment_length_control: "EXACT", # accepts EXACT, GOP_MULTIPLE
|
|
19389
20167
|
# manifest_encoding: "UTF8", # accepts UTF8, UTF16
|
|
19390
20168
|
# },
|
|
19391
20169
|
# type: "HLS_GROUP_SETTINGS", # accepts HLS_GROUP_SETTINGS, DASH_ISO_GROUP_SETTINGS, FILE_GROUP_SETTINGS, MS_SMOOTH_GROUP_SETTINGS, CMAF_GROUP_SETTINGS
|
|
@@ -19512,6 +20290,42 @@ module Aws::MediaConvert
|
|
|
19512
20290
|
include Aws::Structure
|
|
19513
20291
|
end
|
|
19514
20292
|
|
|
20293
|
+
# A policy configures behavior that you allow or disallow for your
|
|
20294
|
+
# account. For information about MediaConvert policies, see the user
|
|
20295
|
+
# guide at
|
|
20296
|
+
# http://docs.aws.amazon.com/mediaconvert/latest/ug/what-is.html
|
|
20297
|
+
#
|
|
20298
|
+
# @note When making an API call, you may pass Policy
|
|
20299
|
+
# data as a hash:
|
|
20300
|
+
#
|
|
20301
|
+
# {
|
|
20302
|
+
# http_inputs: "ALLOWED", # accepts ALLOWED, DISALLOWED
|
|
20303
|
+
# https_inputs: "ALLOWED", # accepts ALLOWED, DISALLOWED
|
|
20304
|
+
# s3_inputs: "ALLOWED", # accepts ALLOWED, DISALLOWED
|
|
20305
|
+
# }
|
|
20306
|
+
#
|
|
20307
|
+
# @!attribute [rw] http_inputs
|
|
20308
|
+
# Allow or disallow jobs that specify HTTP inputs.
|
|
20309
|
+
# @return [String]
|
|
20310
|
+
#
|
|
20311
|
+
# @!attribute [rw] https_inputs
|
|
20312
|
+
# Allow or disallow jobs that specify HTTPS inputs.
|
|
20313
|
+
# @return [String]
|
|
20314
|
+
#
|
|
20315
|
+
# @!attribute [rw] s3_inputs
|
|
20316
|
+
# Allow or disallow jobs that specify Amazon S3 inputs.
|
|
20317
|
+
# @return [String]
|
|
20318
|
+
#
|
|
20319
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconvert-2017-08-29/Policy AWS API Documentation
|
|
20320
|
+
#
|
|
20321
|
+
class Policy < Struct.new(
|
|
20322
|
+
:http_inputs,
|
|
20323
|
+
:https_inputs,
|
|
20324
|
+
:s3_inputs)
|
|
20325
|
+
SENSITIVE = []
|
|
20326
|
+
include Aws::Structure
|
|
20327
|
+
end
|
|
20328
|
+
|
|
19515
20329
|
# A preset is a collection of preconfigured media conversion settings
|
|
19516
20330
|
# that you want MediaConvert to apply to the output during the
|
|
19517
20331
|
# conversion process.
|
|
@@ -19711,46 +20525,54 @@ module Aws::MediaConvert
|
|
|
19711
20525
|
# custom_language_code: "__stringPatternAZaZ23AZaZ",
|
|
19712
20526
|
# destination_settings: {
|
|
19713
20527
|
# burnin_destination_settings: {
|
|
19714
|
-
# alignment: "CENTERED", # accepts CENTERED, LEFT
|
|
19715
|
-
#
|
|
20528
|
+
# alignment: "CENTERED", # accepts CENTERED, LEFT, AUTO
|
|
20529
|
+
# apply_font_color: "WHITE_TEXT_ONLY", # accepts WHITE_TEXT_ONLY, ALL_TEXT
|
|
20530
|
+
# background_color: "NONE", # accepts NONE, BLACK, WHITE, AUTO
|
|
19716
20531
|
# background_opacity: 1,
|
|
19717
|
-
#
|
|
20532
|
+
# fallback_font: "BEST_MATCH", # accepts BEST_MATCH, MONOSPACED_SANSSERIF, MONOSPACED_SERIF, PROPORTIONAL_SANSSERIF, PROPORTIONAL_SERIF
|
|
20533
|
+
# font_color: "WHITE", # accepts WHITE, BLACK, YELLOW, RED, GREEN, BLUE, HEX, AUTO
|
|
19718
20534
|
# font_opacity: 1,
|
|
19719
20535
|
# font_resolution: 1,
|
|
19720
20536
|
# font_script: "AUTOMATIC", # accepts AUTOMATIC, HANS, HANT
|
|
19721
20537
|
# font_size: 1,
|
|
19722
|
-
#
|
|
20538
|
+
# hex_font_color: "__stringMin6Max8Pattern09aFAF609aFAF2",
|
|
20539
|
+
# outline_color: "BLACK", # accepts BLACK, WHITE, YELLOW, RED, GREEN, BLUE, AUTO
|
|
19723
20540
|
# outline_size: 1,
|
|
19724
|
-
# shadow_color: "NONE", # accepts NONE, BLACK, WHITE
|
|
20541
|
+
# shadow_color: "NONE", # accepts NONE, BLACK, WHITE, AUTO
|
|
19725
20542
|
# shadow_opacity: 1,
|
|
19726
20543
|
# shadow_x_offset: 1,
|
|
19727
20544
|
# shadow_y_offset: 1,
|
|
19728
|
-
#
|
|
20545
|
+
# style_passthrough: "ENABLED", # accepts ENABLED, DISABLED
|
|
20546
|
+
# teletext_spacing: "FIXED_GRID", # accepts FIXED_GRID, PROPORTIONAL, AUTO
|
|
19729
20547
|
# x_position: 1,
|
|
19730
20548
|
# y_position: 1,
|
|
19731
20549
|
# },
|
|
19732
20550
|
# destination_type: "BURN_IN", # accepts BURN_IN, DVB_SUB, EMBEDDED, EMBEDDED_PLUS_SCTE20, IMSC, SCTE20_PLUS_EMBEDDED, SCC, SRT, SMI, TELETEXT, TTML, WEBVTT
|
|
19733
20551
|
# dvb_sub_destination_settings: {
|
|
19734
|
-
# alignment: "CENTERED", # accepts CENTERED, LEFT
|
|
19735
|
-
#
|
|
20552
|
+
# alignment: "CENTERED", # accepts CENTERED, LEFT, AUTO
|
|
20553
|
+
# apply_font_color: "WHITE_TEXT_ONLY", # accepts WHITE_TEXT_ONLY, ALL_TEXT
|
|
20554
|
+
# background_color: "NONE", # accepts NONE, BLACK, WHITE, AUTO
|
|
19736
20555
|
# background_opacity: 1,
|
|
19737
20556
|
# dds_handling: "NONE", # accepts NONE, SPECIFIED, NO_DISPLAY_WINDOW
|
|
19738
20557
|
# dds_x_coordinate: 1,
|
|
19739
20558
|
# dds_y_coordinate: 1,
|
|
19740
|
-
#
|
|
20559
|
+
# fallback_font: "BEST_MATCH", # accepts BEST_MATCH, MONOSPACED_SANSSERIF, MONOSPACED_SERIF, PROPORTIONAL_SANSSERIF, PROPORTIONAL_SERIF
|
|
20560
|
+
# font_color: "WHITE", # accepts WHITE, BLACK, YELLOW, RED, GREEN, BLUE, HEX, AUTO
|
|
19741
20561
|
# font_opacity: 1,
|
|
19742
20562
|
# font_resolution: 1,
|
|
19743
20563
|
# font_script: "AUTOMATIC", # accepts AUTOMATIC, HANS, HANT
|
|
19744
20564
|
# font_size: 1,
|
|
19745
20565
|
# height: 1,
|
|
19746
|
-
#
|
|
20566
|
+
# hex_font_color: "__stringMin6Max8Pattern09aFAF609aFAF2",
|
|
20567
|
+
# outline_color: "BLACK", # accepts BLACK, WHITE, YELLOW, RED, GREEN, BLUE, AUTO
|
|
19747
20568
|
# outline_size: 1,
|
|
19748
|
-
# shadow_color: "NONE", # accepts NONE, BLACK, WHITE
|
|
20569
|
+
# shadow_color: "NONE", # accepts NONE, BLACK, WHITE, AUTO
|
|
19749
20570
|
# shadow_opacity: 1,
|
|
19750
20571
|
# shadow_x_offset: 1,
|
|
19751
20572
|
# shadow_y_offset: 1,
|
|
20573
|
+
# style_passthrough: "ENABLED", # accepts ENABLED, DISABLED
|
|
19752
20574
|
# subtitling_type: "HEARING_IMPAIRED", # accepts HEARING_IMPAIRED, STANDARD
|
|
19753
|
-
# teletext_spacing: "FIXED_GRID", # accepts FIXED_GRID, PROPORTIONAL
|
|
20575
|
+
# teletext_spacing: "FIXED_GRID", # accepts FIXED_GRID, PROPORTIONAL, AUTO
|
|
19754
20576
|
# width: 1,
|
|
19755
20577
|
# x_position: 1,
|
|
19756
20578
|
# y_position: 1,
|
|
@@ -19805,6 +20627,7 @@ module Aws::MediaConvert
|
|
|
19805
20627
|
# audio_pids: [1],
|
|
19806
20628
|
# bitrate: 1,
|
|
19807
20629
|
# buffer_model: "MULTIPLEX", # accepts MULTIPLEX, NONE
|
|
20630
|
+
# data_pts_control: "AUTO", # accepts AUTO, ALIGN_TO_VIDEO
|
|
19808
20631
|
# dvb_nit_settings: {
|
|
19809
20632
|
# network_id: 1,
|
|
19810
20633
|
# network_name: "__stringMin1Max256",
|
|
@@ -19854,6 +20677,7 @@ module Aws::MediaConvert
|
|
|
19854
20677
|
# audio_duration: "DEFAULT_CODEC_DURATION", # accepts DEFAULT_CODEC_DURATION, MATCH_VIDEO_DURATION
|
|
19855
20678
|
# audio_frames_per_pes: 1,
|
|
19856
20679
|
# audio_pids: [1],
|
|
20680
|
+
# data_pts_control: "AUTO", # accepts AUTO, ALIGN_TO_VIDEO
|
|
19857
20681
|
# max_pcr_interval: 1,
|
|
19858
20682
|
# nielsen_id_3: "INSERT", # accepts INSERT, NONE
|
|
19859
20683
|
# pat_interval: 1,
|
|
@@ -19950,7 +20774,7 @@ module Aws::MediaConvert
|
|
|
19950
20774
|
# codec_profile: "BASELINE", # accepts BASELINE, HIGH, HIGH_10BIT, HIGH_422, HIGH_422_10BIT, MAIN
|
|
19951
20775
|
# dynamic_sub_gop: "ADAPTIVE", # accepts ADAPTIVE, STATIC
|
|
19952
20776
|
# entropy_encoding: "CABAC", # accepts CABAC, CAVLC
|
|
19953
|
-
# field_encoding: "PAFF", # accepts PAFF, FORCE_FIELD
|
|
20777
|
+
# field_encoding: "PAFF", # accepts PAFF, FORCE_FIELD, MBAFF
|
|
19954
20778
|
# flicker_adaptive_quantization: "DISABLED", # accepts DISABLED, ENABLED
|
|
19955
20779
|
# framerate_control: "INITIALIZE_FROM_SOURCE", # accepts INITIALIZE_FROM_SOURCE, SPECIFIED
|
|
19956
20780
|
# framerate_conversion_algorithm: "DUPLICATE_DROP", # accepts DUPLICATE_DROP, INTERPOLATE, FRAMEFORMER
|
|
@@ -20518,6 +21342,52 @@ module Aws::MediaConvert
|
|
|
20518
21342
|
include Aws::Structure
|
|
20519
21343
|
end
|
|
20520
21344
|
|
|
21345
|
+
# Create or change a policy by sending a request that includes your
|
|
21346
|
+
# policy in JSON.
|
|
21347
|
+
#
|
|
21348
|
+
# @note When making an API call, you may pass PutPolicyRequest
|
|
21349
|
+
# data as a hash:
|
|
21350
|
+
#
|
|
21351
|
+
# {
|
|
21352
|
+
# policy: { # required
|
|
21353
|
+
# http_inputs: "ALLOWED", # accepts ALLOWED, DISALLOWED
|
|
21354
|
+
# https_inputs: "ALLOWED", # accepts ALLOWED, DISALLOWED
|
|
21355
|
+
# s3_inputs: "ALLOWED", # accepts ALLOWED, DISALLOWED
|
|
21356
|
+
# },
|
|
21357
|
+
# }
|
|
21358
|
+
#
|
|
21359
|
+
# @!attribute [rw] policy
|
|
21360
|
+
# A policy configures behavior that you allow or disallow for your
|
|
21361
|
+
# account. For information about MediaConvert policies, see the user
|
|
21362
|
+
# guide at
|
|
21363
|
+
# http://docs.aws.amazon.com/mediaconvert/latest/ug/what-is.html
|
|
21364
|
+
# @return [Types::Policy]
|
|
21365
|
+
#
|
|
21366
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconvert-2017-08-29/PutPolicyRequest AWS API Documentation
|
|
21367
|
+
#
|
|
21368
|
+
class PutPolicyRequest < Struct.new(
|
|
21369
|
+
:policy)
|
|
21370
|
+
SENSITIVE = []
|
|
21371
|
+
include Aws::Structure
|
|
21372
|
+
end
|
|
21373
|
+
|
|
21374
|
+
# Successful PUT policy requests will return your policy.
|
|
21375
|
+
#
|
|
21376
|
+
# @!attribute [rw] policy
|
|
21377
|
+
# A policy configures behavior that you allow or disallow for your
|
|
21378
|
+
# account. For information about MediaConvert policies, see the user
|
|
21379
|
+
# guide at
|
|
21380
|
+
# http://docs.aws.amazon.com/mediaconvert/latest/ug/what-is.html
|
|
21381
|
+
# @return [Types::Policy]
|
|
21382
|
+
#
|
|
21383
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconvert-2017-08-29/PutPolicyResponse AWS API Documentation
|
|
21384
|
+
#
|
|
21385
|
+
class PutPolicyResponse < Struct.new(
|
|
21386
|
+
:policy)
|
|
21387
|
+
SENSITIVE = []
|
|
21388
|
+
include Aws::Structure
|
|
21389
|
+
end
|
|
21390
|
+
|
|
20521
21391
|
# You can use queues to manage the resources that are available to your
|
|
20522
21392
|
# AWS account for running multiple transcoding jobs at the same time. If
|
|
20523
21393
|
# you don't specify a queue, the service sends all jobs through the
|
|
@@ -20885,6 +21755,7 @@ module Aws::MediaConvert
|
|
|
20885
21755
|
# },
|
|
20886
21756
|
# encryption: {
|
|
20887
21757
|
# encryption_type: "SERVER_SIDE_ENCRYPTION_S3", # accepts SERVER_SIDE_ENCRYPTION_S3, SERVER_SIDE_ENCRYPTION_KMS
|
|
21758
|
+
# kms_encryption_context: "__stringPatternAZaZ0902",
|
|
20888
21759
|
# kms_key_arn: "__stringPatternArnAwsUsGovCnKmsAZ26EastWestCentralNorthSouthEastWest1912D12KeyAFAF098AFAF094AFAF094AFAF094AFAF0912",
|
|
20889
21760
|
# },
|
|
20890
21761
|
# }
|
|
@@ -20918,6 +21789,7 @@ module Aws::MediaConvert
|
|
|
20918
21789
|
#
|
|
20919
21790
|
# {
|
|
20920
21791
|
# encryption_type: "SERVER_SIDE_ENCRYPTION_S3", # accepts SERVER_SIDE_ENCRYPTION_S3, SERVER_SIDE_ENCRYPTION_KMS
|
|
21792
|
+
# kms_encryption_context: "__stringPatternAZaZ0902",
|
|
20921
21793
|
# kms_key_arn: "__stringPatternArnAwsUsGovCnKmsAZ26EastWestCentralNorthSouthEastWest1912D12KeyAFAF098AFAF094AFAF094AFAF094AFAF0912",
|
|
20922
21794
|
# }
|
|
20923
21795
|
#
|
|
@@ -20937,6 +21809,18 @@ module Aws::MediaConvert
|
|
|
20937
21809
|
# setting KMS ARN (kmsKeyArn).
|
|
20938
21810
|
# @return [String]
|
|
20939
21811
|
#
|
|
21812
|
+
# @!attribute [rw] kms_encryption_context
|
|
21813
|
+
# Optionally, specify the encryption context that you want to use
|
|
21814
|
+
# alongside your KMS key. AWS KMS uses this encryption context as
|
|
21815
|
+
# additional authenticated data (AAD) to support authenticated
|
|
21816
|
+
# encryption. This value must be a base64-encoded UTF-8 string holding
|
|
21817
|
+
# JSON which represents a string-string map. To use this setting, you
|
|
21818
|
+
# must also set Server-side encryption (S3ServerSideEncryptionType) to
|
|
21819
|
+
# AWS KMS (SERVER\_SIDE\_ENCRYPTION\_KMS). For more information about
|
|
21820
|
+
# encryption context, see:
|
|
21821
|
+
# https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#encrypt\_context.
|
|
21822
|
+
# @return [String]
|
|
21823
|
+
#
|
|
20940
21824
|
# @!attribute [rw] kms_key_arn
|
|
20941
21825
|
# Optionally, specify the customer master key (CMK) that you want to
|
|
20942
21826
|
# use to encrypt the data key that AWS uses to encrypt your output
|
|
@@ -20952,6 +21836,7 @@ module Aws::MediaConvert
|
|
|
20952
21836
|
#
|
|
20953
21837
|
class S3EncryptionSettings < Struct.new(
|
|
20954
21838
|
:encryption_type,
|
|
21839
|
+
:kms_encryption_context,
|
|
20955
21840
|
:kms_key_arn)
|
|
20956
21841
|
SENSITIVE = []
|
|
20957
21842
|
include Aws::Structure
|
|
@@ -21816,6 +22701,7 @@ module Aws::MediaConvert
|
|
|
21816
22701
|
# },
|
|
21817
22702
|
# encryption: {
|
|
21818
22703
|
# encryption_type: "SERVER_SIDE_ENCRYPTION_S3", # accepts SERVER_SIDE_ENCRYPTION_S3, SERVER_SIDE_ENCRYPTION_KMS
|
|
22704
|
+
# kms_encryption_context: "__stringPatternAZaZ0902",
|
|
21819
22705
|
# kms_key_arn: "__stringPatternArnAwsUsGovCnKmsAZ26EastWestCentralNorthSouthEastWest1912D12KeyAFAF098AFAF094AFAF094AFAF094AFAF0912",
|
|
21820
22706
|
# },
|
|
21821
22707
|
# },
|
|
@@ -21840,7 +22726,15 @@ module Aws::MediaConvert
|
|
|
21840
22726
|
# type: "SPEKE", # accepts SPEKE, STATIC_KEY
|
|
21841
22727
|
# },
|
|
21842
22728
|
# fragment_length: 1,
|
|
21843
|
-
# image_based_trick_play: "NONE", # accepts NONE, THUMBNAIL, THUMBNAIL_AND_FULLFRAME
|
|
22729
|
+
# image_based_trick_play: "NONE", # accepts NONE, THUMBNAIL, THUMBNAIL_AND_FULLFRAME, ADVANCED
|
|
22730
|
+
# image_based_trick_play_settings: {
|
|
22731
|
+
# interval_cadence: "FOLLOW_IFRAME", # accepts FOLLOW_IFRAME, FOLLOW_CUSTOM
|
|
22732
|
+
# thumbnail_height: 1,
|
|
22733
|
+
# thumbnail_interval: 1.0,
|
|
22734
|
+
# thumbnail_width: 1,
|
|
22735
|
+
# tile_height: 1,
|
|
22736
|
+
# tile_width: 1,
|
|
22737
|
+
# },
|
|
21844
22738
|
# manifest_compression: "GZIP", # accepts GZIP, NONE
|
|
21845
22739
|
# manifest_duration_format: "FLOATING_POINT", # accepts FLOATING_POINT, INTEGER
|
|
21846
22740
|
# min_buffer_time: 1,
|
|
@@ -21849,6 +22743,7 @@ module Aws::MediaConvert
|
|
|
21849
22743
|
# pts_offset_handling_for_b_frames: "ZERO_BASED", # accepts ZERO_BASED, MATCH_INITIAL_PTS
|
|
21850
22744
|
# segment_control: "SINGLE_FILE", # accepts SINGLE_FILE, SEGMENTED_FILES
|
|
21851
22745
|
# segment_length: 1,
|
|
22746
|
+
# segment_length_control: "EXACT", # accepts EXACT, GOP_MULTIPLE
|
|
21852
22747
|
# stream_inf_resolution: "INCLUDE", # accepts INCLUDE, EXCLUDE
|
|
21853
22748
|
# target_duration_compatibility_mode: "LEGACY", # accepts LEGACY, SPEC_COMPLIANT
|
|
21854
22749
|
# write_dash_manifest: "DISABLED", # accepts DISABLED, ENABLED
|
|
@@ -21872,6 +22767,7 @@ module Aws::MediaConvert
|
|
|
21872
22767
|
# },
|
|
21873
22768
|
# encryption: {
|
|
21874
22769
|
# encryption_type: "SERVER_SIDE_ENCRYPTION_S3", # accepts SERVER_SIDE_ENCRYPTION_S3, SERVER_SIDE_ENCRYPTION_KMS
|
|
22770
|
+
# kms_encryption_context: "__stringPatternAZaZ0902",
|
|
21875
22771
|
# kms_key_arn: "__stringPatternArnAwsUsGovCnKmsAZ26EastWestCentralNorthSouthEastWest1912D12KeyAFAF098AFAF094AFAF094AFAF094AFAF0912",
|
|
21876
22772
|
# },
|
|
21877
22773
|
# },
|
|
@@ -21887,13 +22783,22 @@ module Aws::MediaConvert
|
|
|
21887
22783
|
# },
|
|
21888
22784
|
# fragment_length: 1,
|
|
21889
22785
|
# hbbtv_compliance: "HBBTV_1_5", # accepts HBBTV_1_5, NONE
|
|
21890
|
-
# image_based_trick_play: "NONE", # accepts NONE, THUMBNAIL, THUMBNAIL_AND_FULLFRAME
|
|
22786
|
+
# image_based_trick_play: "NONE", # accepts NONE, THUMBNAIL, THUMBNAIL_AND_FULLFRAME, ADVANCED
|
|
22787
|
+
# image_based_trick_play_settings: {
|
|
22788
|
+
# interval_cadence: "FOLLOW_IFRAME", # accepts FOLLOW_IFRAME, FOLLOW_CUSTOM
|
|
22789
|
+
# thumbnail_height: 1,
|
|
22790
|
+
# thumbnail_interval: 1.0,
|
|
22791
|
+
# thumbnail_width: 1,
|
|
22792
|
+
# tile_height: 1,
|
|
22793
|
+
# tile_width: 1,
|
|
22794
|
+
# },
|
|
21891
22795
|
# min_buffer_time: 1,
|
|
21892
22796
|
# min_final_segment_length: 1.0,
|
|
21893
22797
|
# mpd_profile: "MAIN_PROFILE", # accepts MAIN_PROFILE, ON_DEMAND_PROFILE
|
|
21894
22798
|
# pts_offset_handling_for_b_frames: "ZERO_BASED", # accepts ZERO_BASED, MATCH_INITIAL_PTS
|
|
21895
22799
|
# segment_control: "SINGLE_FILE", # accepts SINGLE_FILE, SEGMENTED_FILES
|
|
21896
22800
|
# segment_length: 1,
|
|
22801
|
+
# segment_length_control: "EXACT", # accepts EXACT, GOP_MULTIPLE
|
|
21897
22802
|
# write_segment_timeline_in_representation: "ENABLED", # accepts ENABLED, DISABLED
|
|
21898
22803
|
# },
|
|
21899
22804
|
# file_group_settings: {
|
|
@@ -21905,6 +22810,7 @@ module Aws::MediaConvert
|
|
|
21905
22810
|
# },
|
|
21906
22811
|
# encryption: {
|
|
21907
22812
|
# encryption_type: "SERVER_SIDE_ENCRYPTION_S3", # accepts SERVER_SIDE_ENCRYPTION_S3, SERVER_SIDE_ENCRYPTION_KMS
|
|
22813
|
+
# kms_encryption_context: "__stringPatternAZaZ0902",
|
|
21908
22814
|
# kms_key_arn: "__stringPatternArnAwsUsGovCnKmsAZ26EastWestCentralNorthSouthEastWest1912D12KeyAFAF098AFAF094AFAF094AFAF094AFAF0912",
|
|
21909
22815
|
# },
|
|
21910
22816
|
# },
|
|
@@ -21939,6 +22845,7 @@ module Aws::MediaConvert
|
|
|
21939
22845
|
# },
|
|
21940
22846
|
# encryption: {
|
|
21941
22847
|
# encryption_type: "SERVER_SIDE_ENCRYPTION_S3", # accepts SERVER_SIDE_ENCRYPTION_S3, SERVER_SIDE_ENCRYPTION_KMS
|
|
22848
|
+
# kms_encryption_context: "__stringPatternAZaZ0902",
|
|
21942
22849
|
# kms_key_arn: "__stringPatternArnAwsUsGovCnKmsAZ26EastWestCentralNorthSouthEastWest1912D12KeyAFAF098AFAF094AFAF094AFAF094AFAF0912",
|
|
21943
22850
|
# },
|
|
21944
22851
|
# },
|
|
@@ -21963,7 +22870,15 @@ module Aws::MediaConvert
|
|
|
21963
22870
|
# },
|
|
21964
22871
|
# type: "SPEKE", # accepts SPEKE, STATIC_KEY
|
|
21965
22872
|
# },
|
|
21966
|
-
# image_based_trick_play: "NONE", # accepts NONE, THUMBNAIL, THUMBNAIL_AND_FULLFRAME
|
|
22873
|
+
# image_based_trick_play: "NONE", # accepts NONE, THUMBNAIL, THUMBNAIL_AND_FULLFRAME, ADVANCED
|
|
22874
|
+
# image_based_trick_play_settings: {
|
|
22875
|
+
# interval_cadence: "FOLLOW_IFRAME", # accepts FOLLOW_IFRAME, FOLLOW_CUSTOM
|
|
22876
|
+
# thumbnail_height: 1,
|
|
22877
|
+
# thumbnail_interval: 1.0,
|
|
22878
|
+
# thumbnail_width: 1,
|
|
22879
|
+
# tile_height: 1,
|
|
22880
|
+
# tile_width: 1,
|
|
22881
|
+
# },
|
|
21967
22882
|
# manifest_compression: "GZIP", # accepts GZIP, NONE
|
|
21968
22883
|
# manifest_duration_format: "FLOATING_POINT", # accepts FLOATING_POINT, INTEGER
|
|
21969
22884
|
# min_final_segment_length: 1.0,
|
|
@@ -21973,6 +22888,7 @@ module Aws::MediaConvert
|
|
|
21973
22888
|
# program_date_time_period: 1,
|
|
21974
22889
|
# segment_control: "SINGLE_FILE", # accepts SINGLE_FILE, SEGMENTED_FILES
|
|
21975
22890
|
# segment_length: 1,
|
|
22891
|
+
# segment_length_control: "EXACT", # accepts EXACT, GOP_MULTIPLE
|
|
21976
22892
|
# segments_per_subdirectory: 1,
|
|
21977
22893
|
# stream_inf_resolution: "INCLUDE", # accepts INCLUDE, EXCLUDE
|
|
21978
22894
|
# target_duration_compatibility_mode: "LEGACY", # accepts LEGACY, SPEC_COMPLIANT
|
|
@@ -21996,6 +22912,7 @@ module Aws::MediaConvert
|
|
|
21996
22912
|
# },
|
|
21997
22913
|
# encryption: {
|
|
21998
22914
|
# encryption_type: "SERVER_SIDE_ENCRYPTION_S3", # accepts SERVER_SIDE_ENCRYPTION_S3, SERVER_SIDE_ENCRYPTION_KMS
|
|
22915
|
+
# kms_encryption_context: "__stringPatternAZaZ0902",
|
|
21999
22916
|
# kms_key_arn: "__stringPatternArnAwsUsGovCnKmsAZ26EastWestCentralNorthSouthEastWest1912D12KeyAFAF098AFAF094AFAF094AFAF094AFAF0912",
|
|
22000
22917
|
# },
|
|
22001
22918
|
# },
|
|
@@ -22009,6 +22926,7 @@ module Aws::MediaConvert
|
|
|
22009
22926
|
# },
|
|
22010
22927
|
# },
|
|
22011
22928
|
# fragment_length: 1,
|
|
22929
|
+
# fragment_length_control: "EXACT", # accepts EXACT, GOP_MULTIPLE
|
|
22012
22930
|
# manifest_encoding: "UTF8", # accepts UTF8, UTF16
|
|
22013
22931
|
# },
|
|
22014
22932
|
# type: "HLS_GROUP_SETTINGS", # accepts HLS_GROUP_SETTINGS, DASH_ISO_GROUP_SETTINGS, FILE_GROUP_SETTINGS, MS_SMOOTH_GROUP_SETTINGS, CMAF_GROUP_SETTINGS
|
|
@@ -22156,46 +23074,54 @@ module Aws::MediaConvert
|
|
|
22156
23074
|
# custom_language_code: "__stringPatternAZaZ23AZaZ",
|
|
22157
23075
|
# destination_settings: {
|
|
22158
23076
|
# burnin_destination_settings: {
|
|
22159
|
-
# alignment: "CENTERED", # accepts CENTERED, LEFT
|
|
22160
|
-
#
|
|
23077
|
+
# alignment: "CENTERED", # accepts CENTERED, LEFT, AUTO
|
|
23078
|
+
# apply_font_color: "WHITE_TEXT_ONLY", # accepts WHITE_TEXT_ONLY, ALL_TEXT
|
|
23079
|
+
# background_color: "NONE", # accepts NONE, BLACK, WHITE, AUTO
|
|
22161
23080
|
# background_opacity: 1,
|
|
22162
|
-
#
|
|
23081
|
+
# fallback_font: "BEST_MATCH", # accepts BEST_MATCH, MONOSPACED_SANSSERIF, MONOSPACED_SERIF, PROPORTIONAL_SANSSERIF, PROPORTIONAL_SERIF
|
|
23082
|
+
# font_color: "WHITE", # accepts WHITE, BLACK, YELLOW, RED, GREEN, BLUE, HEX, AUTO
|
|
22163
23083
|
# font_opacity: 1,
|
|
22164
23084
|
# font_resolution: 1,
|
|
22165
23085
|
# font_script: "AUTOMATIC", # accepts AUTOMATIC, HANS, HANT
|
|
22166
23086
|
# font_size: 1,
|
|
22167
|
-
#
|
|
23087
|
+
# hex_font_color: "__stringMin6Max8Pattern09aFAF609aFAF2",
|
|
23088
|
+
# outline_color: "BLACK", # accepts BLACK, WHITE, YELLOW, RED, GREEN, BLUE, AUTO
|
|
22168
23089
|
# outline_size: 1,
|
|
22169
|
-
# shadow_color: "NONE", # accepts NONE, BLACK, WHITE
|
|
23090
|
+
# shadow_color: "NONE", # accepts NONE, BLACK, WHITE, AUTO
|
|
22170
23091
|
# shadow_opacity: 1,
|
|
22171
23092
|
# shadow_x_offset: 1,
|
|
22172
23093
|
# shadow_y_offset: 1,
|
|
22173
|
-
#
|
|
23094
|
+
# style_passthrough: "ENABLED", # accepts ENABLED, DISABLED
|
|
23095
|
+
# teletext_spacing: "FIXED_GRID", # accepts FIXED_GRID, PROPORTIONAL, AUTO
|
|
22174
23096
|
# x_position: 1,
|
|
22175
23097
|
# y_position: 1,
|
|
22176
23098
|
# },
|
|
22177
23099
|
# destination_type: "BURN_IN", # accepts BURN_IN, DVB_SUB, EMBEDDED, EMBEDDED_PLUS_SCTE20, IMSC, SCTE20_PLUS_EMBEDDED, SCC, SRT, SMI, TELETEXT, TTML, WEBVTT
|
|
22178
23100
|
# dvb_sub_destination_settings: {
|
|
22179
|
-
# alignment: "CENTERED", # accepts CENTERED, LEFT
|
|
22180
|
-
#
|
|
23101
|
+
# alignment: "CENTERED", # accepts CENTERED, LEFT, AUTO
|
|
23102
|
+
# apply_font_color: "WHITE_TEXT_ONLY", # accepts WHITE_TEXT_ONLY, ALL_TEXT
|
|
23103
|
+
# background_color: "NONE", # accepts NONE, BLACK, WHITE, AUTO
|
|
22181
23104
|
# background_opacity: 1,
|
|
22182
23105
|
# dds_handling: "NONE", # accepts NONE, SPECIFIED, NO_DISPLAY_WINDOW
|
|
22183
23106
|
# dds_x_coordinate: 1,
|
|
22184
23107
|
# dds_y_coordinate: 1,
|
|
22185
|
-
#
|
|
23108
|
+
# fallback_font: "BEST_MATCH", # accepts BEST_MATCH, MONOSPACED_SANSSERIF, MONOSPACED_SERIF, PROPORTIONAL_SANSSERIF, PROPORTIONAL_SERIF
|
|
23109
|
+
# font_color: "WHITE", # accepts WHITE, BLACK, YELLOW, RED, GREEN, BLUE, HEX, AUTO
|
|
22186
23110
|
# font_opacity: 1,
|
|
22187
23111
|
# font_resolution: 1,
|
|
22188
23112
|
# font_script: "AUTOMATIC", # accepts AUTOMATIC, HANS, HANT
|
|
22189
23113
|
# font_size: 1,
|
|
22190
23114
|
# height: 1,
|
|
22191
|
-
#
|
|
23115
|
+
# hex_font_color: "__stringMin6Max8Pattern09aFAF609aFAF2",
|
|
23116
|
+
# outline_color: "BLACK", # accepts BLACK, WHITE, YELLOW, RED, GREEN, BLUE, AUTO
|
|
22192
23117
|
# outline_size: 1,
|
|
22193
|
-
# shadow_color: "NONE", # accepts NONE, BLACK, WHITE
|
|
23118
|
+
# shadow_color: "NONE", # accepts NONE, BLACK, WHITE, AUTO
|
|
22194
23119
|
# shadow_opacity: 1,
|
|
22195
23120
|
# shadow_x_offset: 1,
|
|
22196
23121
|
# shadow_y_offset: 1,
|
|
23122
|
+
# style_passthrough: "ENABLED", # accepts ENABLED, DISABLED
|
|
22197
23123
|
# subtitling_type: "HEARING_IMPAIRED", # accepts HEARING_IMPAIRED, STANDARD
|
|
22198
|
-
# teletext_spacing: "FIXED_GRID", # accepts FIXED_GRID, PROPORTIONAL
|
|
23124
|
+
# teletext_spacing: "FIXED_GRID", # accepts FIXED_GRID, PROPORTIONAL, AUTO
|
|
22199
23125
|
# width: 1,
|
|
22200
23126
|
# x_position: 1,
|
|
22201
23127
|
# y_position: 1,
|
|
@@ -22250,6 +23176,7 @@ module Aws::MediaConvert
|
|
|
22250
23176
|
# audio_pids: [1],
|
|
22251
23177
|
# bitrate: 1,
|
|
22252
23178
|
# buffer_model: "MULTIPLEX", # accepts MULTIPLEX, NONE
|
|
23179
|
+
# data_pts_control: "AUTO", # accepts AUTO, ALIGN_TO_VIDEO
|
|
22253
23180
|
# dvb_nit_settings: {
|
|
22254
23181
|
# network_id: 1,
|
|
22255
23182
|
# network_name: "__stringMin1Max256",
|
|
@@ -22299,6 +23226,7 @@ module Aws::MediaConvert
|
|
|
22299
23226
|
# audio_duration: "DEFAULT_CODEC_DURATION", # accepts DEFAULT_CODEC_DURATION, MATCH_VIDEO_DURATION
|
|
22300
23227
|
# audio_frames_per_pes: 1,
|
|
22301
23228
|
# audio_pids: [1],
|
|
23229
|
+
# data_pts_control: "AUTO", # accepts AUTO, ALIGN_TO_VIDEO
|
|
22302
23230
|
# max_pcr_interval: 1,
|
|
22303
23231
|
# nielsen_id_3: "INSERT", # accepts INSERT, NONE
|
|
22304
23232
|
# pat_interval: 1,
|
|
@@ -22409,7 +23337,7 @@ module Aws::MediaConvert
|
|
|
22409
23337
|
# codec_profile: "BASELINE", # accepts BASELINE, HIGH, HIGH_10BIT, HIGH_422, HIGH_422_10BIT, MAIN
|
|
22410
23338
|
# dynamic_sub_gop: "ADAPTIVE", # accepts ADAPTIVE, STATIC
|
|
22411
23339
|
# entropy_encoding: "CABAC", # accepts CABAC, CAVLC
|
|
22412
|
-
# field_encoding: "PAFF", # accepts PAFF, FORCE_FIELD
|
|
23340
|
+
# field_encoding: "PAFF", # accepts PAFF, FORCE_FIELD, MBAFF
|
|
22413
23341
|
# flicker_adaptive_quantization: "DISABLED", # accepts DISABLED, ENABLED
|
|
22414
23342
|
# framerate_control: "INITIALIZE_FROM_SOURCE", # accepts INITIALIZE_FROM_SOURCE, SPECIFIED
|
|
22415
23343
|
# framerate_conversion_algorithm: "DUPLICATE_DROP", # accepts DUPLICATE_DROP, INTERPOLATE, FRAMEFORMER
|
|
@@ -22992,46 +23920,54 @@ module Aws::MediaConvert
|
|
|
22992
23920
|
# custom_language_code: "__stringPatternAZaZ23AZaZ",
|
|
22993
23921
|
# destination_settings: {
|
|
22994
23922
|
# burnin_destination_settings: {
|
|
22995
|
-
# alignment: "CENTERED", # accepts CENTERED, LEFT
|
|
22996
|
-
#
|
|
23923
|
+
# alignment: "CENTERED", # accepts CENTERED, LEFT, AUTO
|
|
23924
|
+
# apply_font_color: "WHITE_TEXT_ONLY", # accepts WHITE_TEXT_ONLY, ALL_TEXT
|
|
23925
|
+
# background_color: "NONE", # accepts NONE, BLACK, WHITE, AUTO
|
|
22997
23926
|
# background_opacity: 1,
|
|
22998
|
-
#
|
|
23927
|
+
# fallback_font: "BEST_MATCH", # accepts BEST_MATCH, MONOSPACED_SANSSERIF, MONOSPACED_SERIF, PROPORTIONAL_SANSSERIF, PROPORTIONAL_SERIF
|
|
23928
|
+
# font_color: "WHITE", # accepts WHITE, BLACK, YELLOW, RED, GREEN, BLUE, HEX, AUTO
|
|
22999
23929
|
# font_opacity: 1,
|
|
23000
23930
|
# font_resolution: 1,
|
|
23001
23931
|
# font_script: "AUTOMATIC", # accepts AUTOMATIC, HANS, HANT
|
|
23002
23932
|
# font_size: 1,
|
|
23003
|
-
#
|
|
23933
|
+
# hex_font_color: "__stringMin6Max8Pattern09aFAF609aFAF2",
|
|
23934
|
+
# outline_color: "BLACK", # accepts BLACK, WHITE, YELLOW, RED, GREEN, BLUE, AUTO
|
|
23004
23935
|
# outline_size: 1,
|
|
23005
|
-
# shadow_color: "NONE", # accepts NONE, BLACK, WHITE
|
|
23936
|
+
# shadow_color: "NONE", # accepts NONE, BLACK, WHITE, AUTO
|
|
23006
23937
|
# shadow_opacity: 1,
|
|
23007
23938
|
# shadow_x_offset: 1,
|
|
23008
23939
|
# shadow_y_offset: 1,
|
|
23009
|
-
#
|
|
23940
|
+
# style_passthrough: "ENABLED", # accepts ENABLED, DISABLED
|
|
23941
|
+
# teletext_spacing: "FIXED_GRID", # accepts FIXED_GRID, PROPORTIONAL, AUTO
|
|
23010
23942
|
# x_position: 1,
|
|
23011
23943
|
# y_position: 1,
|
|
23012
23944
|
# },
|
|
23013
23945
|
# destination_type: "BURN_IN", # accepts BURN_IN, DVB_SUB, EMBEDDED, EMBEDDED_PLUS_SCTE20, IMSC, SCTE20_PLUS_EMBEDDED, SCC, SRT, SMI, TELETEXT, TTML, WEBVTT
|
|
23014
23946
|
# dvb_sub_destination_settings: {
|
|
23015
|
-
# alignment: "CENTERED", # accepts CENTERED, LEFT
|
|
23016
|
-
#
|
|
23947
|
+
# alignment: "CENTERED", # accepts CENTERED, LEFT, AUTO
|
|
23948
|
+
# apply_font_color: "WHITE_TEXT_ONLY", # accepts WHITE_TEXT_ONLY, ALL_TEXT
|
|
23949
|
+
# background_color: "NONE", # accepts NONE, BLACK, WHITE, AUTO
|
|
23017
23950
|
# background_opacity: 1,
|
|
23018
23951
|
# dds_handling: "NONE", # accepts NONE, SPECIFIED, NO_DISPLAY_WINDOW
|
|
23019
23952
|
# dds_x_coordinate: 1,
|
|
23020
23953
|
# dds_y_coordinate: 1,
|
|
23021
|
-
#
|
|
23954
|
+
# fallback_font: "BEST_MATCH", # accepts BEST_MATCH, MONOSPACED_SANSSERIF, MONOSPACED_SERIF, PROPORTIONAL_SANSSERIF, PROPORTIONAL_SERIF
|
|
23955
|
+
# font_color: "WHITE", # accepts WHITE, BLACK, YELLOW, RED, GREEN, BLUE, HEX, AUTO
|
|
23022
23956
|
# font_opacity: 1,
|
|
23023
23957
|
# font_resolution: 1,
|
|
23024
23958
|
# font_script: "AUTOMATIC", # accepts AUTOMATIC, HANS, HANT
|
|
23025
23959
|
# font_size: 1,
|
|
23026
23960
|
# height: 1,
|
|
23027
|
-
#
|
|
23961
|
+
# hex_font_color: "__stringMin6Max8Pattern09aFAF609aFAF2",
|
|
23962
|
+
# outline_color: "BLACK", # accepts BLACK, WHITE, YELLOW, RED, GREEN, BLUE, AUTO
|
|
23028
23963
|
# outline_size: 1,
|
|
23029
|
-
# shadow_color: "NONE", # accepts NONE, BLACK, WHITE
|
|
23964
|
+
# shadow_color: "NONE", # accepts NONE, BLACK, WHITE, AUTO
|
|
23030
23965
|
# shadow_opacity: 1,
|
|
23031
23966
|
# shadow_x_offset: 1,
|
|
23032
23967
|
# shadow_y_offset: 1,
|
|
23968
|
+
# style_passthrough: "ENABLED", # accepts ENABLED, DISABLED
|
|
23033
23969
|
# subtitling_type: "HEARING_IMPAIRED", # accepts HEARING_IMPAIRED, STANDARD
|
|
23034
|
-
# teletext_spacing: "FIXED_GRID", # accepts FIXED_GRID, PROPORTIONAL
|
|
23970
|
+
# teletext_spacing: "FIXED_GRID", # accepts FIXED_GRID, PROPORTIONAL, AUTO
|
|
23035
23971
|
# width: 1,
|
|
23036
23972
|
# x_position: 1,
|
|
23037
23973
|
# y_position: 1,
|
|
@@ -23086,6 +24022,7 @@ module Aws::MediaConvert
|
|
|
23086
24022
|
# audio_pids: [1],
|
|
23087
24023
|
# bitrate: 1,
|
|
23088
24024
|
# buffer_model: "MULTIPLEX", # accepts MULTIPLEX, NONE
|
|
24025
|
+
# data_pts_control: "AUTO", # accepts AUTO, ALIGN_TO_VIDEO
|
|
23089
24026
|
# dvb_nit_settings: {
|
|
23090
24027
|
# network_id: 1,
|
|
23091
24028
|
# network_name: "__stringMin1Max256",
|
|
@@ -23135,6 +24072,7 @@ module Aws::MediaConvert
|
|
|
23135
24072
|
# audio_duration: "DEFAULT_CODEC_DURATION", # accepts DEFAULT_CODEC_DURATION, MATCH_VIDEO_DURATION
|
|
23136
24073
|
# audio_frames_per_pes: 1,
|
|
23137
24074
|
# audio_pids: [1],
|
|
24075
|
+
# data_pts_control: "AUTO", # accepts AUTO, ALIGN_TO_VIDEO
|
|
23138
24076
|
# max_pcr_interval: 1,
|
|
23139
24077
|
# nielsen_id_3: "INSERT", # accepts INSERT, NONE
|
|
23140
24078
|
# pat_interval: 1,
|
|
@@ -23231,7 +24169,7 @@ module Aws::MediaConvert
|
|
|
23231
24169
|
# codec_profile: "BASELINE", # accepts BASELINE, HIGH, HIGH_10BIT, HIGH_422, HIGH_422_10BIT, MAIN
|
|
23232
24170
|
# dynamic_sub_gop: "ADAPTIVE", # accepts ADAPTIVE, STATIC
|
|
23233
24171
|
# entropy_encoding: "CABAC", # accepts CABAC, CAVLC
|
|
23234
|
-
# field_encoding: "PAFF", # accepts PAFF, FORCE_FIELD
|
|
24172
|
+
# field_encoding: "PAFF", # accepts PAFF, FORCE_FIELD, MBAFF
|
|
23235
24173
|
# flicker_adaptive_quantization: "DISABLED", # accepts DISABLED, ENABLED
|
|
23236
24174
|
# framerate_control: "INITIALIZE_FROM_SOURCE", # accepts INITIALIZE_FROM_SOURCE, SPECIFIED
|
|
23237
24175
|
# framerate_conversion_algorithm: "DUPLICATE_DROP", # accepts DUPLICATE_DROP, INTERPOLATE, FRAMEFORMER
|
|
@@ -23876,7 +24814,7 @@ module Aws::MediaConvert
|
|
|
23876
24814
|
# codec_profile: "BASELINE", # accepts BASELINE, HIGH, HIGH_10BIT, HIGH_422, HIGH_422_10BIT, MAIN
|
|
23877
24815
|
# dynamic_sub_gop: "ADAPTIVE", # accepts ADAPTIVE, STATIC
|
|
23878
24816
|
# entropy_encoding: "CABAC", # accepts CABAC, CAVLC
|
|
23879
|
-
# field_encoding: "PAFF", # accepts PAFF, FORCE_FIELD
|
|
24817
|
+
# field_encoding: "PAFF", # accepts PAFF, FORCE_FIELD, MBAFF
|
|
23880
24818
|
# flicker_adaptive_quantization: "DISABLED", # accepts DISABLED, ENABLED
|
|
23881
24819
|
# framerate_control: "INITIALIZE_FROM_SOURCE", # accepts INITIALIZE_FROM_SOURCE, SPECIFIED
|
|
23882
24820
|
# framerate_conversion_algorithm: "DUPLICATE_DROP", # accepts DUPLICATE_DROP, INTERPOLATE, FRAMEFORMER
|
|
@@ -24235,7 +25173,7 @@ module Aws::MediaConvert
|
|
|
24235
25173
|
# codec_profile: "BASELINE", # accepts BASELINE, HIGH, HIGH_10BIT, HIGH_422, HIGH_422_10BIT, MAIN
|
|
24236
25174
|
# dynamic_sub_gop: "ADAPTIVE", # accepts ADAPTIVE, STATIC
|
|
24237
25175
|
# entropy_encoding: "CABAC", # accepts CABAC, CAVLC
|
|
24238
|
-
# field_encoding: "PAFF", # accepts PAFF, FORCE_FIELD
|
|
25176
|
+
# field_encoding: "PAFF", # accepts PAFF, FORCE_FIELD, MBAFF
|
|
24239
25177
|
# flicker_adaptive_quantization: "DISABLED", # accepts DISABLED, ENABLED
|
|
24240
25178
|
# framerate_control: "INITIALIZE_FROM_SOURCE", # accepts INITIALIZE_FROM_SOURCE, SPECIFIED
|
|
24241
25179
|
# framerate_conversion_algorithm: "DUPLICATE_DROP", # accepts DUPLICATE_DROP, INTERPOLATE, FRAMEFORMER
|