aws-sdk-medialive 1.70.0 → 1.74.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +20 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-medialive.rb +1 -1
- data/lib/aws-sdk-medialive/client.rb +89 -27
- data/lib/aws-sdk-medialive/client_api.rb +14 -1
- data/lib/aws-sdk-medialive/types.rb +190 -30
- metadata +5 -6
@@ -46,6 +46,7 @@ module Aws::MediaLive
|
|
46
46
|
AudioDescription = Shapes::StructureShape.new(name: 'AudioDescription')
|
47
47
|
AudioDescriptionAudioTypeControl = Shapes::StringShape.new(name: 'AudioDescriptionAudioTypeControl')
|
48
48
|
AudioDescriptionLanguageCodeControl = Shapes::StringShape.new(name: 'AudioDescriptionLanguageCodeControl')
|
49
|
+
AudioHlsRenditionSelection = Shapes::StructureShape.new(name: 'AudioHlsRenditionSelection')
|
49
50
|
AudioLanguageSelection = Shapes::StructureShape.new(name: 'AudioLanguageSelection')
|
50
51
|
AudioLanguageSelectionPolicy = Shapes::StringShape.new(name: 'AudioLanguageSelectionPolicy')
|
51
52
|
AudioNormalizationAlgorithm = Shapes::StringShape.new(name: 'AudioNormalizationAlgorithm')
|
@@ -190,6 +191,7 @@ module Aws::MediaLive
|
|
190
191
|
DvbSubDestinationSettings = Shapes::StructureShape.new(name: 'DvbSubDestinationSettings')
|
191
192
|
DvbSubDestinationShadowColor = Shapes::StringShape.new(name: 'DvbSubDestinationShadowColor')
|
192
193
|
DvbSubDestinationTeletextGridControl = Shapes::StringShape.new(name: 'DvbSubDestinationTeletextGridControl')
|
194
|
+
DvbSubOcrLanguage = Shapes::StringShape.new(name: 'DvbSubOcrLanguage')
|
193
195
|
DvbSubSourceSettings = Shapes::StructureShape.new(name: 'DvbSubSourceSettings')
|
194
196
|
DvbTdtSettings = Shapes::StructureShape.new(name: 'DvbTdtSettings')
|
195
197
|
Eac3AttenuationControl = Shapes::StringShape.new(name: 'Eac3AttenuationControl')
|
@@ -316,6 +318,7 @@ module Aws::MediaLive
|
|
316
318
|
HlsRedundantManifest = Shapes::StringShape.new(name: 'HlsRedundantManifest')
|
317
319
|
HlsS3LogUploads = Shapes::StringShape.new(name: 'HlsS3LogUploads')
|
318
320
|
HlsS3Settings = Shapes::StructureShape.new(name: 'HlsS3Settings')
|
321
|
+
HlsScte35SourceType = Shapes::StringShape.new(name: 'HlsScte35SourceType')
|
319
322
|
HlsSegmentationMode = Shapes::StringShape.new(name: 'HlsSegmentationMode')
|
320
323
|
HlsSettings = Shapes::StructureShape.new(name: 'HlsSettings')
|
321
324
|
HlsStreamInfResolution = Shapes::StringShape.new(name: 'HlsStreamInfResolution')
|
@@ -551,6 +554,7 @@ module Aws::MediaLive
|
|
551
554
|
Scte20PlusEmbeddedDestinationSettings = Shapes::StructureShape.new(name: 'Scte20PlusEmbeddedDestinationSettings')
|
552
555
|
Scte20SourceSettings = Shapes::StructureShape.new(name: 'Scte20SourceSettings')
|
553
556
|
Scte27DestinationSettings = Shapes::StructureShape.new(name: 'Scte27DestinationSettings')
|
557
|
+
Scte27OcrLanguage = Shapes::StringShape.new(name: 'Scte27OcrLanguage')
|
554
558
|
Scte27SourceSettings = Shapes::StructureShape.new(name: 'Scte27SourceSettings')
|
555
559
|
Scte35AposNoRegionalBlackoutBehavior = Shapes::StringShape.new(name: 'Scte35AposNoRegionalBlackoutBehavior')
|
556
560
|
Scte35AposWebDeliveryAllowedBehavior = Shapes::StringShape.new(name: 'Scte35AposWebDeliveryAllowedBehavior')
|
@@ -663,6 +667,7 @@ module Aws::MediaLive
|
|
663
667
|
WavCodingMode = Shapes::StringShape.new(name: 'WavCodingMode')
|
664
668
|
WavSettings = Shapes::StructureShape.new(name: 'WavSettings')
|
665
669
|
WebvttDestinationSettings = Shapes::StructureShape.new(name: 'WebvttDestinationSettings')
|
670
|
+
WebvttDestinationStyleControl = Shapes::StringShape.new(name: 'WebvttDestinationStyleControl')
|
666
671
|
__boolean = Shapes::BooleanShape.new(name: '__boolean')
|
667
672
|
__double = Shapes::FloatShape.new(name: '__double')
|
668
673
|
__doubleMin0 = Shapes::FloatShape.new(name: '__doubleMin0')
|
@@ -870,6 +875,10 @@ module Aws::MediaLive
|
|
870
875
|
AudioDescription.add_member(:stream_name, Shapes::ShapeRef.new(shape: __string, location_name: "streamName"))
|
871
876
|
AudioDescription.struct_class = Types::AudioDescription
|
872
877
|
|
878
|
+
AudioHlsRenditionSelection.add_member(:group_id, Shapes::ShapeRef.new(shape: __stringMin1, required: true, location_name: "groupId"))
|
879
|
+
AudioHlsRenditionSelection.add_member(:name, Shapes::ShapeRef.new(shape: __stringMin1, required: true, location_name: "name"))
|
880
|
+
AudioHlsRenditionSelection.struct_class = Types::AudioHlsRenditionSelection
|
881
|
+
|
873
882
|
AudioLanguageSelection.add_member(:language_code, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "languageCode"))
|
874
883
|
AudioLanguageSelection.add_member(:language_selection_policy, Shapes::ShapeRef.new(shape: AudioLanguageSelectionPolicy, location_name: "languageSelectionPolicy"))
|
875
884
|
AudioLanguageSelection.struct_class = Types::AudioLanguageSelection
|
@@ -892,6 +901,7 @@ module Aws::MediaLive
|
|
892
901
|
AudioSelector.add_member(:selector_settings, Shapes::ShapeRef.new(shape: AudioSelectorSettings, location_name: "selectorSettings"))
|
893
902
|
AudioSelector.struct_class = Types::AudioSelector
|
894
903
|
|
904
|
+
AudioSelectorSettings.add_member(:audio_hls_rendition_selection, Shapes::ShapeRef.new(shape: AudioHlsRenditionSelection, location_name: "audioHlsRenditionSelection"))
|
895
905
|
AudioSelectorSettings.add_member(:audio_language_selection, Shapes::ShapeRef.new(shape: AudioLanguageSelection, location_name: "audioLanguageSelection"))
|
896
906
|
AudioSelectorSettings.add_member(:audio_pid_selection, Shapes::ShapeRef.new(shape: AudioPidSelection, location_name: "audioPidSelection"))
|
897
907
|
AudioSelectorSettings.add_member(:audio_track_selection, Shapes::ShapeRef.new(shape: AudioTrackSelection, location_name: "audioTrackSelection"))
|
@@ -1559,6 +1569,7 @@ module Aws::MediaLive
|
|
1559
1569
|
DvbSubDestinationSettings.add_member(:y_position, Shapes::ShapeRef.new(shape: __integerMin0, location_name: "yPosition"))
|
1560
1570
|
DvbSubDestinationSettings.struct_class = Types::DvbSubDestinationSettings
|
1561
1571
|
|
1572
|
+
DvbSubSourceSettings.add_member(:ocr_language, Shapes::ShapeRef.new(shape: DvbSubOcrLanguage, location_name: "ocrLanguage"))
|
1562
1573
|
DvbSubSourceSettings.add_member(:pid, Shapes::ShapeRef.new(shape: __integerMin1, location_name: "pid"))
|
1563
1574
|
DvbSubSourceSettings.struct_class = Types::DvbSubSourceSettings
|
1564
1575
|
|
@@ -1848,6 +1859,7 @@ module Aws::MediaLive
|
|
1848
1859
|
HlsInputSettings.add_member(:buffer_segments, Shapes::ShapeRef.new(shape: __integerMin0, location_name: "bufferSegments"))
|
1849
1860
|
HlsInputSettings.add_member(:retries, Shapes::ShapeRef.new(shape: __integerMin0, location_name: "retries"))
|
1850
1861
|
HlsInputSettings.add_member(:retry_interval, Shapes::ShapeRef.new(shape: __integerMin0, location_name: "retryInterval"))
|
1862
|
+
HlsInputSettings.add_member(:scte_35_source, Shapes::ShapeRef.new(shape: HlsScte35SourceType, location_name: "scte35Source"))
|
1851
1863
|
HlsInputSettings.struct_class = Types::HlsInputSettings
|
1852
1864
|
|
1853
1865
|
HlsMediaStoreSettings.add_member(:connection_retry_interval, Shapes::ShapeRef.new(shape: __integerMin0, location_name: "connectionRetryInterval"))
|
@@ -2686,6 +2698,7 @@ module Aws::MediaLive
|
|
2686
2698
|
|
2687
2699
|
Scte27DestinationSettings.struct_class = Types::Scte27DestinationSettings
|
2688
2700
|
|
2701
|
+
Scte27SourceSettings.add_member(:ocr_language, Shapes::ShapeRef.new(shape: Scte27OcrLanguage, location_name: "ocrLanguage"))
|
2689
2702
|
Scte27SourceSettings.add_member(:pid, Shapes::ShapeRef.new(shape: __integerMin1, location_name: "pid"))
|
2690
2703
|
Scte27SourceSettings.struct_class = Types::Scte27SourceSettings
|
2691
2704
|
|
@@ -2883,7 +2896,6 @@ module Aws::MediaLive
|
|
2883
2896
|
TransferringInputDeviceSummary.add_member(:id, Shapes::ShapeRef.new(shape: __string, location_name: "id"))
|
2884
2897
|
TransferringInputDeviceSummary.add_member(:message, Shapes::ShapeRef.new(shape: __string, location_name: "message"))
|
2885
2898
|
TransferringInputDeviceSummary.add_member(:target_customer_id, Shapes::ShapeRef.new(shape: __string, location_name: "targetCustomerId"))
|
2886
|
-
TransferringInputDeviceSummary.add_member(:target_region, Shapes::ShapeRef.new(shape: __string, location_name: "targetRegion"))
|
2887
2899
|
TransferringInputDeviceSummary.add_member(:transfer_type, Shapes::ShapeRef.new(shape: InputDeviceTransferType, location_name: "transferType"))
|
2888
2900
|
TransferringInputDeviceSummary.struct_class = Types::TransferringInputDeviceSummary
|
2889
2901
|
|
@@ -3108,6 +3120,7 @@ module Aws::MediaLive
|
|
3108
3120
|
WavSettings.add_member(:sample_rate, Shapes::ShapeRef.new(shape: __double, location_name: "sampleRate"))
|
3109
3121
|
WavSettings.struct_class = Types::WavSettings
|
3110
3122
|
|
3123
|
+
WebvttDestinationSettings.add_member(:style_control, Shapes::ShapeRef.new(shape: WebvttDestinationStyleControl, location_name: "styleControl"))
|
3111
3124
|
WebvttDestinationSettings.struct_class = Types::WebvttDestinationSettings
|
3112
3125
|
|
3113
3126
|
__listOfAudioChannelMapping.member = Shapes::ShapeRef.new(shape: AudioChannelMapping)
|
@@ -801,6 +801,35 @@ module Aws::MediaLive
|
|
801
801
|
include Aws::Structure
|
802
802
|
end
|
803
803
|
|
804
|
+
# Audio Hls Rendition Selection
|
805
|
+
#
|
806
|
+
# @note When making an API call, you may pass AudioHlsRenditionSelection
|
807
|
+
# data as a hash:
|
808
|
+
#
|
809
|
+
# {
|
810
|
+
# group_id: "__stringMin1", # required
|
811
|
+
# name: "__stringMin1", # required
|
812
|
+
# }
|
813
|
+
#
|
814
|
+
# @!attribute [rw] group_id
|
815
|
+
# Specifies the GROUP-ID in the #EXT-X-MEDIA tag of the target HLS
|
816
|
+
# audio rendition.
|
817
|
+
# @return [String]
|
818
|
+
#
|
819
|
+
# @!attribute [rw] name
|
820
|
+
# Specifies the NAME in the #EXT-X-MEDIA tag of the target HLS audio
|
821
|
+
# rendition.
|
822
|
+
# @return [String]
|
823
|
+
#
|
824
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/AudioHlsRenditionSelection AWS API Documentation
|
825
|
+
#
|
826
|
+
class AudioHlsRenditionSelection < Struct.new(
|
827
|
+
:group_id,
|
828
|
+
:name)
|
829
|
+
SENSITIVE = []
|
830
|
+
include Aws::Structure
|
831
|
+
end
|
832
|
+
|
804
833
|
# Audio Language Selection
|
805
834
|
#
|
806
835
|
# @note When making an API call, you may pass AudioLanguageSelection
|
@@ -961,6 +990,10 @@ module Aws::MediaLive
|
|
961
990
|
# {
|
962
991
|
# name: "__stringMin1", # required
|
963
992
|
# selector_settings: {
|
993
|
+
# audio_hls_rendition_selection: {
|
994
|
+
# group_id: "__stringMin1", # required
|
995
|
+
# name: "__stringMin1", # required
|
996
|
+
# },
|
964
997
|
# audio_language_selection: {
|
965
998
|
# language_code: "__string", # required
|
966
999
|
# language_selection_policy: "LOOSE", # accepts LOOSE, STRICT
|
@@ -1003,6 +1036,10 @@ module Aws::MediaLive
|
|
1003
1036
|
# data as a hash:
|
1004
1037
|
#
|
1005
1038
|
# {
|
1039
|
+
# audio_hls_rendition_selection: {
|
1040
|
+
# group_id: "__stringMin1", # required
|
1041
|
+
# name: "__stringMin1", # required
|
1042
|
+
# },
|
1006
1043
|
# audio_language_selection: {
|
1007
1044
|
# language_code: "__string", # required
|
1008
1045
|
# language_selection_policy: "LOOSE", # accepts LOOSE, STRICT
|
@@ -1019,6 +1056,10 @@ module Aws::MediaLive
|
|
1019
1056
|
# },
|
1020
1057
|
# }
|
1021
1058
|
#
|
1059
|
+
# @!attribute [rw] audio_hls_rendition_selection
|
1060
|
+
# Audio Hls Rendition Selection
|
1061
|
+
# @return [Types::AudioHlsRenditionSelection]
|
1062
|
+
#
|
1022
1063
|
# @!attribute [rw] audio_language_selection
|
1023
1064
|
# Audio Language Selection
|
1024
1065
|
# @return [Types::AudioLanguageSelection]
|
@@ -1034,6 +1075,7 @@ module Aws::MediaLive
|
|
1034
1075
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/AudioSelectorSettings AWS API Documentation
|
1035
1076
|
#
|
1036
1077
|
class AudioSelectorSettings < Struct.new(
|
1078
|
+
:audio_hls_rendition_selection,
|
1037
1079
|
:audio_language_selection,
|
1038
1080
|
:audio_pid_selection,
|
1039
1081
|
:audio_track_selection)
|
@@ -2322,6 +2364,7 @@ module Aws::MediaLive
|
|
2322
2364
|
# style_control: "PASSTHROUGH", # accepts PASSTHROUGH, USE_CONFIGURED
|
2323
2365
|
# },
|
2324
2366
|
# webvtt_destination_settings: {
|
2367
|
+
# style_control: "NO_STYLE_DATA", # accepts NO_STYLE_DATA, PASSTHROUGH
|
2325
2368
|
# },
|
2326
2369
|
# },
|
2327
2370
|
# language_code: "__string",
|
@@ -2444,6 +2487,7 @@ module Aws::MediaLive
|
|
2444
2487
|
# style_control: "PASSTHROUGH", # accepts PASSTHROUGH, USE_CONFIGURED
|
2445
2488
|
# },
|
2446
2489
|
# webvtt_destination_settings: {
|
2490
|
+
# style_control: "NO_STYLE_DATA", # accepts NO_STYLE_DATA, PASSTHROUGH
|
2447
2491
|
# },
|
2448
2492
|
# }
|
2449
2493
|
#
|
@@ -2641,6 +2685,7 @@ module Aws::MediaLive
|
|
2641
2685
|
# arib_source_settings: {
|
2642
2686
|
# },
|
2643
2687
|
# dvb_sub_source_settings: {
|
2688
|
+
# ocr_language: "DEU", # accepts DEU, ENG, FRA, NLD, POR, SPA
|
2644
2689
|
# pid: 1,
|
2645
2690
|
# },
|
2646
2691
|
# embedded_source_settings: {
|
@@ -2654,6 +2699,7 @@ module Aws::MediaLive
|
|
2654
2699
|
# source_608_channel_number: 1,
|
2655
2700
|
# },
|
2656
2701
|
# scte_27_source_settings: {
|
2702
|
+
# ocr_language: "DEU", # accepts DEU, ENG, FRA, NLD, POR, SPA
|
2657
2703
|
# pid: 1,
|
2658
2704
|
# },
|
2659
2705
|
# teletext_source_settings: {
|
@@ -2705,6 +2751,7 @@ module Aws::MediaLive
|
|
2705
2751
|
# arib_source_settings: {
|
2706
2752
|
# },
|
2707
2753
|
# dvb_sub_source_settings: {
|
2754
|
+
# ocr_language: "DEU", # accepts DEU, ENG, FRA, NLD, POR, SPA
|
2708
2755
|
# pid: 1,
|
2709
2756
|
# },
|
2710
2757
|
# embedded_source_settings: {
|
@@ -2718,6 +2765,7 @@ module Aws::MediaLive
|
|
2718
2765
|
# source_608_channel_number: 1,
|
2719
2766
|
# },
|
2720
2767
|
# scte_27_source_settings: {
|
2768
|
+
# ocr_language: "DEU", # accepts DEU, ENG, FRA, NLD, POR, SPA
|
2721
2769
|
# pid: 1,
|
2722
2770
|
# },
|
2723
2771
|
# teletext_source_settings: {
|
@@ -3324,6 +3372,7 @@ module Aws::MediaLive
|
|
3324
3372
|
# style_control: "PASSTHROUGH", # accepts PASSTHROUGH, USE_CONFIGURED
|
3325
3373
|
# },
|
3326
3374
|
# webvtt_destination_settings: {
|
3375
|
+
# style_control: "NO_STYLE_DATA", # accepts NO_STYLE_DATA, PASSTHROUGH
|
3327
3376
|
# },
|
3328
3377
|
# },
|
3329
3378
|
# language_code: "__string",
|
@@ -3760,7 +3809,7 @@ module Aws::MediaLive
|
|
3760
3809
|
# capture_interval_units: "MILLISECONDS", # accepts MILLISECONDS, SECONDS
|
3761
3810
|
# },
|
3762
3811
|
# h264_settings: {
|
3763
|
-
# adaptive_quantization: "
|
3812
|
+
# adaptive_quantization: "AUTO", # accepts AUTO, HIGH, HIGHER, LOW, MAX, MEDIUM, OFF
|
3764
3813
|
# afd_signaling: "AUTO", # accepts AUTO, FIXED, NONE
|
3765
3814
|
# bitrate: 1,
|
3766
3815
|
# buf_fill_pct: 1,
|
@@ -3815,7 +3864,7 @@ module Aws::MediaLive
|
|
3815
3864
|
# timecode_insertion: "DISABLED", # accepts DISABLED, PIC_TIMING_SEI
|
3816
3865
|
# },
|
3817
3866
|
# h265_settings: {
|
3818
|
-
# adaptive_quantization: "
|
3867
|
+
# adaptive_quantization: "AUTO", # accepts AUTO, HIGH, HIGHER, LOW, MAX, MEDIUM, OFF
|
3819
3868
|
# afd_signaling: "AUTO", # accepts AUTO, FIXED, NONE
|
3820
3869
|
# alternative_transfer_function: "INSERT", # accepts INSERT, OMIT
|
3821
3870
|
# bitrate: 1,
|
@@ -3925,6 +3974,10 @@ module Aws::MediaLive
|
|
3925
3974
|
# {
|
3926
3975
|
# name: "__stringMin1", # required
|
3927
3976
|
# selector_settings: {
|
3977
|
+
# audio_hls_rendition_selection: {
|
3978
|
+
# group_id: "__stringMin1", # required
|
3979
|
+
# name: "__stringMin1", # required
|
3980
|
+
# },
|
3928
3981
|
# audio_language_selection: {
|
3929
3982
|
# language_code: "__string", # required
|
3930
3983
|
# language_selection_policy: "LOOSE", # accepts LOOSE, STRICT
|
@@ -3953,6 +4006,7 @@ module Aws::MediaLive
|
|
3953
4006
|
# arib_source_settings: {
|
3954
4007
|
# },
|
3955
4008
|
# dvb_sub_source_settings: {
|
4009
|
+
# ocr_language: "DEU", # accepts DEU, ENG, FRA, NLD, POR, SPA
|
3956
4010
|
# pid: 1,
|
3957
4011
|
# },
|
3958
4012
|
# embedded_source_settings: {
|
@@ -3966,6 +4020,7 @@ module Aws::MediaLive
|
|
3966
4020
|
# source_608_channel_number: 1,
|
3967
4021
|
# },
|
3968
4022
|
# scte_27_source_settings: {
|
4023
|
+
# ocr_language: "DEU", # accepts DEU, ENG, FRA, NLD, POR, SPA
|
3969
4024
|
# pid: 1,
|
3970
4025
|
# },
|
3971
4026
|
# teletext_source_settings: {
|
@@ -3990,6 +4045,7 @@ module Aws::MediaLive
|
|
3990
4045
|
# buffer_segments: 1,
|
3991
4046
|
# retries: 1,
|
3992
4047
|
# retry_interval: 1,
|
4048
|
+
# scte_35_source: "MANIFEST", # accepts MANIFEST, SEGMENTS
|
3993
4049
|
# },
|
3994
4050
|
# server_validation: "CHECK_CRYPTOGRAPHY_AND_VALIDATE_NAME", # accepts CHECK_CRYPTOGRAPHY_AND_VALIDATE_NAME, CHECK_CRYPTOGRAPHY_ONLY
|
3995
4051
|
# },
|
@@ -6064,9 +6120,16 @@ module Aws::MediaLive
|
|
6064
6120
|
# data as a hash:
|
6065
6121
|
#
|
6066
6122
|
# {
|
6123
|
+
# ocr_language: "DEU", # accepts DEU, ENG, FRA, NLD, POR, SPA
|
6067
6124
|
# pid: 1,
|
6068
6125
|
# }
|
6069
6126
|
#
|
6127
|
+
# @!attribute [rw] ocr_language
|
6128
|
+
# If you will configure a WebVTT caption description that references
|
6129
|
+
# this caption selector, use this field to provide the language to
|
6130
|
+
# consider when translating the image-based source to text.
|
6131
|
+
# @return [String]
|
6132
|
+
#
|
6070
6133
|
# @!attribute [rw] pid
|
6071
6134
|
# When using DVB-Sub with Burn-In or SMPTE-TT, use this PID for the
|
6072
6135
|
# source content. Unused for DVB-Sub passthrough. All DVB-Sub content
|
@@ -6076,6 +6139,7 @@ module Aws::MediaLive
|
|
6076
6139
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/DvbSubSourceSettings AWS API Documentation
|
6077
6140
|
#
|
6078
6141
|
class DvbSubSourceSettings < Struct.new(
|
6142
|
+
:ocr_language,
|
6079
6143
|
:pid)
|
6080
6144
|
SENSITIVE = []
|
6081
6145
|
include Aws::Structure
|
@@ -6594,6 +6658,7 @@ module Aws::MediaLive
|
|
6594
6658
|
# style_control: "PASSTHROUGH", # accepts PASSTHROUGH, USE_CONFIGURED
|
6595
6659
|
# },
|
6596
6660
|
# webvtt_destination_settings: {
|
6661
|
+
# style_control: "NO_STYLE_DATA", # accepts NO_STYLE_DATA, PASSTHROUGH
|
6597
6662
|
# },
|
6598
6663
|
# },
|
6599
6664
|
# language_code: "__string",
|
@@ -7030,7 +7095,7 @@ module Aws::MediaLive
|
|
7030
7095
|
# capture_interval_units: "MILLISECONDS", # accepts MILLISECONDS, SECONDS
|
7031
7096
|
# },
|
7032
7097
|
# h264_settings: {
|
7033
|
-
# adaptive_quantization: "
|
7098
|
+
# adaptive_quantization: "AUTO", # accepts AUTO, HIGH, HIGHER, LOW, MAX, MEDIUM, OFF
|
7034
7099
|
# afd_signaling: "AUTO", # accepts AUTO, FIXED, NONE
|
7035
7100
|
# bitrate: 1,
|
7036
7101
|
# buf_fill_pct: 1,
|
@@ -7085,7 +7150,7 @@ module Aws::MediaLive
|
|
7085
7150
|
# timecode_insertion: "DISABLED", # accepts DISABLED, PIC_TIMING_SEI
|
7086
7151
|
# },
|
7087
7152
|
# h265_settings: {
|
7088
|
-
# adaptive_quantization: "
|
7153
|
+
# adaptive_quantization: "AUTO", # accepts AUTO, HIGH, HIGHER, LOW, MAX, MEDIUM, OFF
|
7089
7154
|
# afd_signaling: "AUTO", # accepts AUTO, FIXED, NONE
|
7090
7155
|
# alternative_transfer_function: "INSERT", # accepts INSERT, OMIT
|
7091
7156
|
# bitrate: 1,
|
@@ -7773,7 +7838,7 @@ module Aws::MediaLive
|
|
7773
7838
|
# data as a hash:
|
7774
7839
|
#
|
7775
7840
|
# {
|
7776
|
-
# adaptive_quantization: "
|
7841
|
+
# adaptive_quantization: "AUTO", # accepts AUTO, HIGH, HIGHER, LOW, MAX, MEDIUM, OFF
|
7777
7842
|
# afd_signaling: "AUTO", # accepts AUTO, FIXED, NONE
|
7778
7843
|
# bitrate: 1,
|
7779
7844
|
# buf_fill_pct: 1,
|
@@ -7829,8 +7894,16 @@ module Aws::MediaLive
|
|
7829
7894
|
# }
|
7830
7895
|
#
|
7831
7896
|
# @!attribute [rw] adaptive_quantization
|
7832
|
-
#
|
7833
|
-
#
|
7897
|
+
# Enables or disables adaptive quantization, which is a technique
|
7898
|
+
# MediaLive can apply to video on a frame-by-frame basis to produce
|
7899
|
+
# more compression without losing quality. There are three types of
|
7900
|
+
# adaptive quantization: flicker, spatial, and temporal. Set the field
|
7901
|
+
# in one of these ways: Set to Auto. Recommended. For each type of AQ,
|
7902
|
+
# MediaLive will determine if AQ is needed, and if so, the appropriate
|
7903
|
+
# strength. Set a strength (a value other than Auto or Disable). This
|
7904
|
+
# strength will apply to any of the AQ fields that you choose to
|
7905
|
+
# enable. Set to Disabled to disable all types of adaptive
|
7906
|
+
# quantization.
|
7834
7907
|
# @return [String]
|
7835
7908
|
#
|
7836
7909
|
# @!attribute [rw] afd_signaling
|
@@ -7880,8 +7953,17 @@ module Aws::MediaLive
|
|
7880
7953
|
# @return [String]
|
7881
7954
|
#
|
7882
7955
|
# @!attribute [rw] flicker_aq
|
7883
|
-
#
|
7884
|
-
#
|
7956
|
+
# Flicker AQ makes adjustments within each frame to reduce flicker or
|
7957
|
+
# 'pop' on I-frames. The value to enter in this field depends on the
|
7958
|
+
# value in the Adaptive quantization field: If you have set the
|
7959
|
+
# Adaptive quantization field to Auto, MediaLive ignores any value in
|
7960
|
+
# this field. MediaLive will determine if flicker AQ is appropriate
|
7961
|
+
# and will apply the appropriate strength. If you have set the
|
7962
|
+
# Adaptive quantization field to a strength, you can set this field to
|
7963
|
+
# Enabled or Disabled. Enabled: MediaLive will apply flicker AQ using
|
7964
|
+
# the specified strength. Disabled: MediaLive won't apply flicker AQ.
|
7965
|
+
# If you have set the Adaptive quantization to Disabled, MediaLive
|
7966
|
+
# ignores any value in this field and doesn't apply flicker AQ.
|
7885
7967
|
# @return [String]
|
7886
7968
|
#
|
7887
7969
|
# @!attribute [rw] force_field_pictures
|
@@ -8006,12 +8088,17 @@ module Aws::MediaLive
|
|
8006
8088
|
#
|
8007
8089
|
# @!attribute [rw] qvbr_quality_level
|
8008
8090
|
# Controls the target quality for the video encode. Applies only when
|
8009
|
-
# the rate control mode is QVBR.
|
8010
|
-
#
|
8091
|
+
# the rate control mode is QVBR. You can set a target quality or you
|
8092
|
+
# can let MediaLive determine the best quality. To set a target
|
8093
|
+
# quality, enter values in the QVBR quality level field and the Max
|
8094
|
+
# bitrate field. Enter values that suit your most important viewing
|
8011
8095
|
# devices. Recommended values are: - Primary screen: Quality level: 8
|
8012
8096
|
# to 10. Max bitrate: 4M - PC or tablet: Quality level: 7. Max
|
8013
8097
|
# bitrate: 1.5M to 3M - Smartphone: Quality level: 6. Max bitrate: 1M
|
8014
|
-
# to 1.5M
|
8098
|
+
# to 1.5M To let MediaLive decide, leave the QVBR quality level field
|
8099
|
+
# empty, and in Max bitrate enter the maximum rate you want in the
|
8100
|
+
# video. For more information, see the section called "Video - rate
|
8101
|
+
# control mode" in the MediaLive user guide
|
8015
8102
|
# @return [Integer]
|
8016
8103
|
#
|
8017
8104
|
# @!attribute [rw] rate_control_mode
|
@@ -8055,8 +8142,18 @@ module Aws::MediaLive
|
|
8055
8142
|
# @return [Integer]
|
8056
8143
|
#
|
8057
8144
|
# @!attribute [rw] spatial_aq
|
8058
|
-
#
|
8059
|
-
#
|
8145
|
+
# Spatial AQ makes adjustments within each frame based on spatial
|
8146
|
+
# variation of content complexity. The value to enter in this field
|
8147
|
+
# depends on the value in the Adaptive quantization field: If you have
|
8148
|
+
# set the Adaptive quantization field to Auto, MediaLive ignores any
|
8149
|
+
# value in this field. MediaLive will determine if spatial AQ is
|
8150
|
+
# appropriate and will apply the appropriate strength. If you have set
|
8151
|
+
# the Adaptive quantization field to a strength, you can set this
|
8152
|
+
# field to Enabled or Disabled. Enabled: MediaLive will apply spatial
|
8153
|
+
# AQ using the specified strength. Disabled: MediaLive won't apply
|
8154
|
+
# spatial AQ. If you have set the Adaptive quantization to Disabled,
|
8155
|
+
# MediaLive ignores any value in this field and doesn't apply spatial
|
8156
|
+
# AQ.
|
8060
8157
|
# @return [String]
|
8061
8158
|
#
|
8062
8159
|
# @!attribute [rw] subgop_length
|
@@ -8070,8 +8167,18 @@ module Aws::MediaLive
|
|
8070
8167
|
# @return [String]
|
8071
8168
|
#
|
8072
8169
|
# @!attribute [rw] temporal_aq
|
8073
|
-
#
|
8074
|
-
#
|
8170
|
+
# Temporal makes adjustments within each frame based on temporal
|
8171
|
+
# variation of content complexity. The value to enter in this field
|
8172
|
+
# depends on the value in the Adaptive quantization field: If you have
|
8173
|
+
# set the Adaptive quantization field to Auto, MediaLive ignores any
|
8174
|
+
# value in this field. MediaLive will determine if temporal AQ is
|
8175
|
+
# appropriate and will apply the appropriate strength. If you have set
|
8176
|
+
# the Adaptive quantization field to a strength, you can set this
|
8177
|
+
# field to Enabled or Disabled. Enabled: MediaLive will apply temporal
|
8178
|
+
# AQ using the specified strength. Disabled: MediaLive won't apply
|
8179
|
+
# temporal AQ. If you have set the Adaptive quantization to Disabled,
|
8180
|
+
# MediaLive ignores any value in this field and doesn't apply
|
8181
|
+
# temporal AQ.
|
8075
8182
|
# @return [String]
|
8076
8183
|
#
|
8077
8184
|
# @!attribute [rw] timecode_insertion
|
@@ -8204,7 +8311,7 @@ module Aws::MediaLive
|
|
8204
8311
|
# data as a hash:
|
8205
8312
|
#
|
8206
8313
|
# {
|
8207
|
-
# adaptive_quantization: "
|
8314
|
+
# adaptive_quantization: "AUTO", # accepts AUTO, HIGH, HIGHER, LOW, MAX, MEDIUM, OFF
|
8208
8315
|
# afd_signaling: "AUTO", # accepts AUTO, FIXED, NONE
|
8209
8316
|
# alternative_transfer_function: "INSERT", # accepts INSERT, OMIT
|
8210
8317
|
# bitrate: 1,
|
@@ -9126,6 +9233,7 @@ module Aws::MediaLive
|
|
9126
9233
|
# buffer_segments: 1,
|
9127
9234
|
# retries: 1,
|
9128
9235
|
# retry_interval: 1,
|
9236
|
+
# scte_35_source: "MANIFEST", # accepts MANIFEST, SEGMENTS
|
9129
9237
|
# }
|
9130
9238
|
#
|
9131
9239
|
# @!attribute [rw] bandwidth
|
@@ -9152,13 +9260,21 @@ module Aws::MediaLive
|
|
9152
9260
|
# manifest or segment fails.
|
9153
9261
|
# @return [Integer]
|
9154
9262
|
#
|
9263
|
+
# @!attribute [rw] scte_35_source
|
9264
|
+
# Identifies the source for the SCTE-35 messages that MediaLive will
|
9265
|
+
# ingest. Messages can be ingested from the content segments (in the
|
9266
|
+
# stream) or from tags in the playlist (the HLS manifest). MediaLive
|
9267
|
+
# ignores SCTE-35 information in the source that is not selected.
|
9268
|
+
# @return [String]
|
9269
|
+
#
|
9155
9270
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/HlsInputSettings AWS API Documentation
|
9156
9271
|
#
|
9157
9272
|
class HlsInputSettings < Struct.new(
|
9158
9273
|
:bandwidth,
|
9159
9274
|
:buffer_segments,
|
9160
9275
|
:retries,
|
9161
|
-
:retry_interval
|
9276
|
+
:retry_interval,
|
9277
|
+
:scte_35_source)
|
9162
9278
|
SENSITIVE = []
|
9163
9279
|
include Aws::Structure
|
9164
9280
|
end
|
@@ -9607,6 +9723,10 @@ module Aws::MediaLive
|
|
9607
9723
|
# {
|
9608
9724
|
# name: "__stringMin1", # required
|
9609
9725
|
# selector_settings: {
|
9726
|
+
# audio_hls_rendition_selection: {
|
9727
|
+
# group_id: "__stringMin1", # required
|
9728
|
+
# name: "__stringMin1", # required
|
9729
|
+
# },
|
9610
9730
|
# audio_language_selection: {
|
9611
9731
|
# language_code: "__string", # required
|
9612
9732
|
# language_selection_policy: "LOOSE", # accepts LOOSE, STRICT
|
@@ -9635,6 +9755,7 @@ module Aws::MediaLive
|
|
9635
9755
|
# arib_source_settings: {
|
9636
9756
|
# },
|
9637
9757
|
# dvb_sub_source_settings: {
|
9758
|
+
# ocr_language: "DEU", # accepts DEU, ENG, FRA, NLD, POR, SPA
|
9638
9759
|
# pid: 1,
|
9639
9760
|
# },
|
9640
9761
|
# embedded_source_settings: {
|
@@ -9648,6 +9769,7 @@ module Aws::MediaLive
|
|
9648
9769
|
# source_608_channel_number: 1,
|
9649
9770
|
# },
|
9650
9771
|
# scte_27_source_settings: {
|
9772
|
+
# ocr_language: "DEU", # accepts DEU, ENG, FRA, NLD, POR, SPA
|
9651
9773
|
# pid: 1,
|
9652
9774
|
# },
|
9653
9775
|
# teletext_source_settings: {
|
@@ -9672,6 +9794,7 @@ module Aws::MediaLive
|
|
9672
9794
|
# buffer_segments: 1,
|
9673
9795
|
# retries: 1,
|
9674
9796
|
# retry_interval: 1,
|
9797
|
+
# scte_35_source: "MANIFEST", # accepts MANIFEST, SEGMENTS
|
9675
9798
|
# },
|
9676
9799
|
# server_validation: "CHECK_CRYPTOGRAPHY_AND_VALIDATE_NAME", # accepts CHECK_CRYPTOGRAPHY_AND_VALIDATE_NAME, CHECK_CRYPTOGRAPHY_ONLY
|
9677
9800
|
# },
|
@@ -10485,6 +10608,10 @@ module Aws::MediaLive
|
|
10485
10608
|
# {
|
10486
10609
|
# name: "__stringMin1", # required
|
10487
10610
|
# selector_settings: {
|
10611
|
+
# audio_hls_rendition_selection: {
|
10612
|
+
# group_id: "__stringMin1", # required
|
10613
|
+
# name: "__stringMin1", # required
|
10614
|
+
# },
|
10488
10615
|
# audio_language_selection: {
|
10489
10616
|
# language_code: "__string", # required
|
10490
10617
|
# language_selection_policy: "LOOSE", # accepts LOOSE, STRICT
|
@@ -10513,6 +10640,7 @@ module Aws::MediaLive
|
|
10513
10640
|
# arib_source_settings: {
|
10514
10641
|
# },
|
10515
10642
|
# dvb_sub_source_settings: {
|
10643
|
+
# ocr_language: "DEU", # accepts DEU, ENG, FRA, NLD, POR, SPA
|
10516
10644
|
# pid: 1,
|
10517
10645
|
# },
|
10518
10646
|
# embedded_source_settings: {
|
@@ -10526,6 +10654,7 @@ module Aws::MediaLive
|
|
10526
10654
|
# source_608_channel_number: 1,
|
10527
10655
|
# },
|
10528
10656
|
# scte_27_source_settings: {
|
10657
|
+
# ocr_language: "DEU", # accepts DEU, ENG, FRA, NLD, POR, SPA
|
10529
10658
|
# pid: 1,
|
10530
10659
|
# },
|
10531
10660
|
# teletext_source_settings: {
|
@@ -10550,6 +10679,7 @@ module Aws::MediaLive
|
|
10550
10679
|
# buffer_segments: 1,
|
10551
10680
|
# retries: 1,
|
10552
10681
|
# retry_interval: 1,
|
10682
|
+
# scte_35_source: "MANIFEST", # accepts MANIFEST, SEGMENTS
|
10553
10683
|
# },
|
10554
10684
|
# server_validation: "CHECK_CRYPTOGRAPHY_AND_VALIDATE_NAME", # accepts CHECK_CRYPTOGRAPHY_AND_VALIDATE_NAME, CHECK_CRYPTOGRAPHY_ONLY
|
10555
10685
|
# },
|
@@ -13296,6 +13426,7 @@ module Aws::MediaLive
|
|
13296
13426
|
# buffer_segments: 1,
|
13297
13427
|
# retries: 1,
|
13298
13428
|
# retry_interval: 1,
|
13429
|
+
# scte_35_source: "MANIFEST", # accepts MANIFEST, SEGMENTS
|
13299
13430
|
# },
|
13300
13431
|
# server_validation: "CHECK_CRYPTOGRAPHY_AND_VALIDATE_NAME", # accepts CHECK_CRYPTOGRAPHY_AND_VALIDATE_NAME, CHECK_CRYPTOGRAPHY_ONLY
|
13301
13432
|
# }
|
@@ -15734,9 +15865,16 @@ module Aws::MediaLive
|
|
15734
15865
|
# data as a hash:
|
15735
15866
|
#
|
15736
15867
|
# {
|
15868
|
+
# ocr_language: "DEU", # accepts DEU, ENG, FRA, NLD, POR, SPA
|
15737
15869
|
# pid: 1,
|
15738
15870
|
# }
|
15739
15871
|
#
|
15872
|
+
# @!attribute [rw] ocr_language
|
15873
|
+
# If you will configure a WebVTT caption description that references
|
15874
|
+
# this caption selector, use this field to provide the language to
|
15875
|
+
# consider when translating the image-based source to text.
|
15876
|
+
# @return [String]
|
15877
|
+
#
|
15740
15878
|
# @!attribute [rw] pid
|
15741
15879
|
# The pid field is used in conjunction with the caption selector
|
15742
15880
|
# languageCode field as follows: - Specify PID and Language: Extracts
|
@@ -15751,6 +15889,7 @@ module Aws::MediaLive
|
|
15751
15889
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/Scte27SourceSettings AWS API Documentation
|
15752
15890
|
#
|
15753
15891
|
class Scte27SourceSettings < Struct.new(
|
15892
|
+
:ocr_language,
|
15754
15893
|
:pid)
|
15755
15894
|
SENSITIVE = []
|
15756
15895
|
include Aws::Structure
|
@@ -16989,9 +17128,6 @@ module Aws::MediaLive
|
|
16989
17128
|
# The AWS account ID for the recipient of the input device transfer.
|
16990
17129
|
# @return [String]
|
16991
17130
|
#
|
16992
|
-
# @!attribute [rw] target_region
|
16993
|
-
# @return [String]
|
16994
|
-
#
|
16995
17131
|
# @!attribute [rw] transfer_type
|
16996
17132
|
# The type (direction) of the input device transfer.
|
16997
17133
|
# @return [String]
|
@@ -17002,7 +17138,6 @@ module Aws::MediaLive
|
|
17002
17138
|
:id,
|
17003
17139
|
:message,
|
17004
17140
|
:target_customer_id,
|
17005
|
-
:target_region,
|
17006
17141
|
:transfer_type)
|
17007
17142
|
SENSITIVE = []
|
17008
17143
|
include Aws::Structure
|
@@ -17637,6 +17772,7 @@ module Aws::MediaLive
|
|
17637
17772
|
# style_control: "PASSTHROUGH", # accepts PASSTHROUGH, USE_CONFIGURED
|
17638
17773
|
# },
|
17639
17774
|
# webvtt_destination_settings: {
|
17775
|
+
# style_control: "NO_STYLE_DATA", # accepts NO_STYLE_DATA, PASSTHROUGH
|
17640
17776
|
# },
|
17641
17777
|
# },
|
17642
17778
|
# language_code: "__string",
|
@@ -18073,7 +18209,7 @@ module Aws::MediaLive
|
|
18073
18209
|
# capture_interval_units: "MILLISECONDS", # accepts MILLISECONDS, SECONDS
|
18074
18210
|
# },
|
18075
18211
|
# h264_settings: {
|
18076
|
-
# adaptive_quantization: "
|
18212
|
+
# adaptive_quantization: "AUTO", # accepts AUTO, HIGH, HIGHER, LOW, MAX, MEDIUM, OFF
|
18077
18213
|
# afd_signaling: "AUTO", # accepts AUTO, FIXED, NONE
|
18078
18214
|
# bitrate: 1,
|
18079
18215
|
# buf_fill_pct: 1,
|
@@ -18128,7 +18264,7 @@ module Aws::MediaLive
|
|
18128
18264
|
# timecode_insertion: "DISABLED", # accepts DISABLED, PIC_TIMING_SEI
|
18129
18265
|
# },
|
18130
18266
|
# h265_settings: {
|
18131
|
-
# adaptive_quantization: "
|
18267
|
+
# adaptive_quantization: "AUTO", # accepts AUTO, HIGH, HIGHER, LOW, MAX, MEDIUM, OFF
|
18132
18268
|
# afd_signaling: "AUTO", # accepts AUTO, FIXED, NONE
|
18133
18269
|
# alternative_transfer_function: "INSERT", # accepts INSERT, OMIT
|
18134
18270
|
# bitrate: 1,
|
@@ -18238,6 +18374,10 @@ module Aws::MediaLive
|
|
18238
18374
|
# {
|
18239
18375
|
# name: "__stringMin1", # required
|
18240
18376
|
# selector_settings: {
|
18377
|
+
# audio_hls_rendition_selection: {
|
18378
|
+
# group_id: "__stringMin1", # required
|
18379
|
+
# name: "__stringMin1", # required
|
18380
|
+
# },
|
18241
18381
|
# audio_language_selection: {
|
18242
18382
|
# language_code: "__string", # required
|
18243
18383
|
# language_selection_policy: "LOOSE", # accepts LOOSE, STRICT
|
@@ -18266,6 +18406,7 @@ module Aws::MediaLive
|
|
18266
18406
|
# arib_source_settings: {
|
18267
18407
|
# },
|
18268
18408
|
# dvb_sub_source_settings: {
|
18409
|
+
# ocr_language: "DEU", # accepts DEU, ENG, FRA, NLD, POR, SPA
|
18269
18410
|
# pid: 1,
|
18270
18411
|
# },
|
18271
18412
|
# embedded_source_settings: {
|
@@ -18279,6 +18420,7 @@ module Aws::MediaLive
|
|
18279
18420
|
# source_608_channel_number: 1,
|
18280
18421
|
# },
|
18281
18422
|
# scte_27_source_settings: {
|
18423
|
+
# ocr_language: "DEU", # accepts DEU, ENG, FRA, NLD, POR, SPA
|
18282
18424
|
# pid: 1,
|
18283
18425
|
# },
|
18284
18426
|
# teletext_source_settings: {
|
@@ -18303,6 +18445,7 @@ module Aws::MediaLive
|
|
18303
18445
|
# buffer_segments: 1,
|
18304
18446
|
# retries: 1,
|
18305
18447
|
# retry_interval: 1,
|
18448
|
+
# scte_35_source: "MANIFEST", # accepts MANIFEST, SEGMENTS
|
18306
18449
|
# },
|
18307
18450
|
# server_validation: "CHECK_CRYPTOGRAPHY_AND_VALIDATE_NAME", # accepts CHECK_CRYPTOGRAPHY_AND_VALIDATE_NAME, CHECK_CRYPTOGRAPHY_ONLY
|
18308
18451
|
# },
|
@@ -19025,7 +19168,7 @@ module Aws::MediaLive
|
|
19025
19168
|
# capture_interval_units: "MILLISECONDS", # accepts MILLISECONDS, SECONDS
|
19026
19169
|
# },
|
19027
19170
|
# h264_settings: {
|
19028
|
-
# adaptive_quantization: "
|
19171
|
+
# adaptive_quantization: "AUTO", # accepts AUTO, HIGH, HIGHER, LOW, MAX, MEDIUM, OFF
|
19029
19172
|
# afd_signaling: "AUTO", # accepts AUTO, FIXED, NONE
|
19030
19173
|
# bitrate: 1,
|
19031
19174
|
# buf_fill_pct: 1,
|
@@ -19080,7 +19223,7 @@ module Aws::MediaLive
|
|
19080
19223
|
# timecode_insertion: "DISABLED", # accepts DISABLED, PIC_TIMING_SEI
|
19081
19224
|
# },
|
19082
19225
|
# h265_settings: {
|
19083
|
-
# adaptive_quantization: "
|
19226
|
+
# adaptive_quantization: "AUTO", # accepts AUTO, HIGH, HIGHER, LOW, MAX, MEDIUM, OFF
|
19084
19227
|
# afd_signaling: "AUTO", # accepts AUTO, FIXED, NONE
|
19085
19228
|
# alternative_transfer_function: "INSERT", # accepts INSERT, OMIT
|
19086
19229
|
# bitrate: 1,
|
@@ -19190,7 +19333,7 @@ module Aws::MediaLive
|
|
19190
19333
|
# capture_interval_units: "MILLISECONDS", # accepts MILLISECONDS, SECONDS
|
19191
19334
|
# },
|
19192
19335
|
# h264_settings: {
|
19193
|
-
# adaptive_quantization: "
|
19336
|
+
# adaptive_quantization: "AUTO", # accepts AUTO, HIGH, HIGHER, LOW, MAX, MEDIUM, OFF
|
19194
19337
|
# afd_signaling: "AUTO", # accepts AUTO, FIXED, NONE
|
19195
19338
|
# bitrate: 1,
|
19196
19339
|
# buf_fill_pct: 1,
|
@@ -19245,7 +19388,7 @@ module Aws::MediaLive
|
|
19245
19388
|
# timecode_insertion: "DISABLED", # accepts DISABLED, PIC_TIMING_SEI
|
19246
19389
|
# },
|
19247
19390
|
# h265_settings: {
|
19248
|
-
# adaptive_quantization: "
|
19391
|
+
# adaptive_quantization: "AUTO", # accepts AUTO, HIGH, HIGHER, LOW, MAX, MEDIUM, OFF
|
19249
19392
|
# afd_signaling: "AUTO", # accepts AUTO, FIXED, NONE
|
19250
19393
|
# alternative_transfer_function: "INSERT", # accepts INSERT, OMIT
|
19251
19394
|
# bitrate: 1,
|
@@ -19663,11 +19806,28 @@ module Aws::MediaLive
|
|
19663
19806
|
|
19664
19807
|
# Webvtt Destination Settings
|
19665
19808
|
#
|
19666
|
-
# @
|
19809
|
+
# @note When making an API call, you may pass WebvttDestinationSettings
|
19810
|
+
# data as a hash:
|
19811
|
+
#
|
19812
|
+
# {
|
19813
|
+
# style_control: "NO_STYLE_DATA", # accepts NO_STYLE_DATA, PASSTHROUGH
|
19814
|
+
# }
|
19815
|
+
#
|
19816
|
+
# @!attribute [rw] style_control
|
19817
|
+
# Controls whether the color and position of the source captions is
|
19818
|
+
# passed through to the WebVTT output captions. PASSTHROUGH - Valid
|
19819
|
+
# only if the source captions are EMBEDDED or TELETEXT.
|
19820
|
+
# NO\_STYLE\_DATA - Don't pass through the style. The output captions
|
19821
|
+
# will not contain any font styling information.
|
19822
|
+
# @return [String]
|
19667
19823
|
#
|
19668
19824
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/WebvttDestinationSettings AWS API Documentation
|
19669
19825
|
#
|
19670
|
-
class WebvttDestinationSettings <
|
19826
|
+
class WebvttDestinationSettings < Struct.new(
|
19827
|
+
:style_control)
|
19828
|
+
SENSITIVE = []
|
19829
|
+
include Aws::Structure
|
19830
|
+
end
|
19671
19831
|
|
19672
19832
|
end
|
19673
19833
|
end
|