Class: Aws::MediaLive::Types::H265Settings
- Inherits:
-
Struct
- Object
- Struct
- Aws::MediaLive::Types::H265Settings
- Defined in:
- gems/aws-sdk-medialive/lib/aws-sdk-medialive/types.rb
Overview
H265 Settings
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#adaptive_quantization ⇒ String
Enables or disables adaptive quantization (AQ), which is a technique MediaLive can apply to video on a frame-by-frame basis to produce more compression without losing quality.
-
#afd_signaling ⇒ String
Indicates that AFD values will be written into the output stream.
-
#alternative_transfer_function ⇒ String
Whether or not EML should insert an Alternative Transfer Function SEI message to support backwards compatibility with non-HDR decoders and displays.
-
#bitrate ⇒ Integer
Average bitrate in bits/second.
-
#buf_size ⇒ Integer
Size of buffer (HRD buffer model) in bits.
-
#color_metadata ⇒ String
Includes colorspace metadata in the output.
-
#color_space_settings ⇒ Types::H265ColorSpaceSettings
Color Space settings.
-
#deblocking ⇒ String
Enable or disable the deblocking filter for this codec.
-
#filter_settings ⇒ Types::H265FilterSettings
Optional.
-
#fixed_afd ⇒ String
Four bit AFD value to write on all frames of video in the output stream.
-
#flicker_aq ⇒ String
Flicker AQ makes adjustments within each frame to reduce flicker or 'pop' on I-frames.
-
#framerate_denominator ⇒ Integer
Framerate denominator.
-
#framerate_numerator ⇒ Integer
Framerate numerator - framerate is a fraction, e.g.
-
#gop_b_reference ⇒ String
H265 Gop BReference.
-
#gop_closed_cadence ⇒ Integer
Frequency of closed GOPs.
-
#gop_num_b_frames ⇒ Integer
-
#gop_size ⇒ Float
GOP size (keyframe interval) in units of either frames or seconds per gopSizeUnits.
-
#gop_size_units ⇒ String
Indicates if the gopSize is specified in frames or seconds.
-
#level ⇒ String
H.265 Level.
-
#look_ahead_rate_control ⇒ String
Amount of lookahead.
-
#max_bitrate ⇒ Integer
For QVBR: See the tooltip for Quality level.
-
#min_bitrate ⇒ Integer
Used for QVBR rate control mode only.
-
#min_i_interval ⇒ Integer
Only meaningful if sceneChangeDetect is set to enabled.
-
#min_qp ⇒ Integer
Sets the minimum QP.
-
#mv_over_picture_boundaries ⇒ String
If you are setting up the picture as a tile, you must set this to "disabled".
-
#mv_temporal_predictor ⇒ String
If you are setting up the picture as a tile, you must set this to "disabled".
-
#par_denominator ⇒ Integer
Pixel Aspect Ratio denominator.
-
#par_numerator ⇒ Integer
Pixel Aspect Ratio numerator.
-
#profile ⇒ String
H.265 Profile.
-
#qvbr_quality_level ⇒ Integer
Controls the target quality for the video encode.
-
#rate_control_mode ⇒ String
Rate control mode.
-
#scan_type ⇒ String
Sets the scan type of the output to progressive or top-field-first interlaced.
-
#scene_change_detect ⇒ String
Scene change detection.
-
#slices ⇒ Integer
Number of slices per picture.
-
#subgop_length ⇒ String
H265 Sub Gop Length.
-
#tier ⇒ String
H.265 Tier.
-
#tile_height ⇒ Integer
Set this field to set up the picture as a tile.
-
#tile_padding ⇒ String
Set to "padded" to force MediaLive to add padding to the frame, to obtain a frame that is a whole multiple of the tile size.
-
#tile_width ⇒ Integer
Set this field to set up the picture as a tile.
-
#timecode_burnin_settings ⇒ Types::TimecodeBurninSettings
Timecode burn-in settings.
-
#timecode_insertion ⇒ String
Determines how timecodes should be inserted into the video elementary stream.
-
#treeblock_size ⇒ String
Select the tree block size used for encoding.
Instance Attribute Details
#adaptive_quantization ⇒ String
Enables or disables adaptive quantization (AQ), which is a technique MediaLive can apply to video on a frame-by-frame basis to produce more compression without losing quality. There are three types of adaptive quantization: spatial, temporal, and flicker. Flicker is the only type that you can customize. We recommend that you set the field to Auto. For more information about all the options, see the topic about video adaptive quantization in the MediaLive user guide.
5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 |
# File 'gems/aws-sdk-medialive/lib/aws-sdk-medialive/types.rb', line 5771 class H265Settings < Struct.new( :adaptive_quantization, :afd_signaling, :alternative_transfer_function, :bitrate, :buf_size, :color_metadata, :color_space_settings, :filter_settings, :fixed_afd, :flicker_aq, :framerate_denominator, :framerate_numerator, :gop_closed_cadence, :gop_size, :gop_size_units, :level, :look_ahead_rate_control, :max_bitrate, :min_i_interval, :par_denominator, :par_numerator, :profile, :qvbr_quality_level, :rate_control_mode, :scan_type, :scene_change_detect, :slices, :tier, :timecode_insertion, :timecode_burnin_settings, :mv_over_picture_boundaries, :mv_temporal_predictor, :tile_height, :tile_padding, :tile_width, :treeblock_size, :min_qp, :deblocking, :gop_b_reference, :gop_num_b_frames, :min_bitrate, :subgop_length) SENSITIVE = [] include Aws::Structure end |
#afd_signaling ⇒ String
Indicates that AFD values will be written into the output stream. If afdSignaling is "auto", the system will try to preserve the input AFD value (in cases where multiple AFD values are valid). If set to "fixed", the AFD value will be the value configured in the fixedAfd parameter.
5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 |
# File 'gems/aws-sdk-medialive/lib/aws-sdk-medialive/types.rb', line 5771 class H265Settings < Struct.new( :adaptive_quantization, :afd_signaling, :alternative_transfer_function, :bitrate, :buf_size, :color_metadata, :color_space_settings, :filter_settings, :fixed_afd, :flicker_aq, :framerate_denominator, :framerate_numerator, :gop_closed_cadence, :gop_size, :gop_size_units, :level, :look_ahead_rate_control, :max_bitrate, :min_i_interval, :par_denominator, :par_numerator, :profile, :qvbr_quality_level, :rate_control_mode, :scan_type, :scene_change_detect, :slices, :tier, :timecode_insertion, :timecode_burnin_settings, :mv_over_picture_boundaries, :mv_temporal_predictor, :tile_height, :tile_padding, :tile_width, :treeblock_size, :min_qp, :deblocking, :gop_b_reference, :gop_num_b_frames, :min_bitrate, :subgop_length) SENSITIVE = [] include Aws::Structure end |
#alternative_transfer_function ⇒ String
Whether or not EML should insert an Alternative Transfer Function SEI message to support backwards compatibility with non-HDR decoders and displays.
5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 |
# File 'gems/aws-sdk-medialive/lib/aws-sdk-medialive/types.rb', line 5771 class H265Settings < Struct.new( :adaptive_quantization, :afd_signaling, :alternative_transfer_function, :bitrate, :buf_size, :color_metadata, :color_space_settings, :filter_settings, :fixed_afd, :flicker_aq, :framerate_denominator, :framerate_numerator, :gop_closed_cadence, :gop_size, :gop_size_units, :level, :look_ahead_rate_control, :max_bitrate, :min_i_interval, :par_denominator, :par_numerator, :profile, :qvbr_quality_level, :rate_control_mode, :scan_type, :scene_change_detect, :slices, :tier, :timecode_insertion, :timecode_burnin_settings, :mv_over_picture_boundaries, :mv_temporal_predictor, :tile_height, :tile_padding, :tile_width, :treeblock_size, :min_qp, :deblocking, :gop_b_reference, :gop_num_b_frames, :min_bitrate, :subgop_length) SENSITIVE = [] include Aws::Structure end |
#bitrate ⇒ Integer
Average bitrate in bits/second. Required when the rate control mode is VBR or CBR. Not used for QVBR. In an MS Smooth output group, each output must have a unique value when its bitrate is rounded down to the nearest multiple of 1000.
5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 |
# File 'gems/aws-sdk-medialive/lib/aws-sdk-medialive/types.rb', line 5771 class H265Settings < Struct.new( :adaptive_quantization, :afd_signaling, :alternative_transfer_function, :bitrate, :buf_size, :color_metadata, :color_space_settings, :filter_settings, :fixed_afd, :flicker_aq, :framerate_denominator, :framerate_numerator, :gop_closed_cadence, :gop_size, :gop_size_units, :level, :look_ahead_rate_control, :max_bitrate, :min_i_interval, :par_denominator, :par_numerator, :profile, :qvbr_quality_level, :rate_control_mode, :scan_type, :scene_change_detect, :slices, :tier, :timecode_insertion, :timecode_burnin_settings, :mv_over_picture_boundaries, :mv_temporal_predictor, :tile_height, :tile_padding, :tile_width, :treeblock_size, :min_qp, :deblocking, :gop_b_reference, :gop_num_b_frames, :min_bitrate, :subgop_length) SENSITIVE = [] include Aws::Structure end |
#buf_size ⇒ Integer
Size of buffer (HRD buffer model) in bits.
5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 |
# File 'gems/aws-sdk-medialive/lib/aws-sdk-medialive/types.rb', line 5771 class H265Settings < Struct.new( :adaptive_quantization, :afd_signaling, :alternative_transfer_function, :bitrate, :buf_size, :color_metadata, :color_space_settings, :filter_settings, :fixed_afd, :flicker_aq, :framerate_denominator, :framerate_numerator, :gop_closed_cadence, :gop_size, :gop_size_units, :level, :look_ahead_rate_control, :max_bitrate, :min_i_interval, :par_denominator, :par_numerator, :profile, :qvbr_quality_level, :rate_control_mode, :scan_type, :scene_change_detect, :slices, :tier, :timecode_insertion, :timecode_burnin_settings, :mv_over_picture_boundaries, :mv_temporal_predictor, :tile_height, :tile_padding, :tile_width, :treeblock_size, :min_qp, :deblocking, :gop_b_reference, :gop_num_b_frames, :min_bitrate, :subgop_length) SENSITIVE = [] include Aws::Structure end |
#color_metadata ⇒ String
Includes colorspace metadata in the output.
5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 |
# File 'gems/aws-sdk-medialive/lib/aws-sdk-medialive/types.rb', line 5771 class H265Settings < Struct.new( :adaptive_quantization, :afd_signaling, :alternative_transfer_function, :bitrate, :buf_size, :color_metadata, :color_space_settings, :filter_settings, :fixed_afd, :flicker_aq, :framerate_denominator, :framerate_numerator, :gop_closed_cadence, :gop_size, :gop_size_units, :level, :look_ahead_rate_control, :max_bitrate, :min_i_interval, :par_denominator, :par_numerator, :profile, :qvbr_quality_level, :rate_control_mode, :scan_type, :scene_change_detect, :slices, :tier, :timecode_insertion, :timecode_burnin_settings, :mv_over_picture_boundaries, :mv_temporal_predictor, :tile_height, :tile_padding, :tile_width, :treeblock_size, :min_qp, :deblocking, :gop_b_reference, :gop_num_b_frames, :min_bitrate, :subgop_length) SENSITIVE = [] include Aws::Structure end |
#color_space_settings ⇒ Types::H265ColorSpaceSettings
Color Space settings
5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 |
# File 'gems/aws-sdk-medialive/lib/aws-sdk-medialive/types.rb', line 5771 class H265Settings < Struct.new( :adaptive_quantization, :afd_signaling, :alternative_transfer_function, :bitrate, :buf_size, :color_metadata, :color_space_settings, :filter_settings, :fixed_afd, :flicker_aq, :framerate_denominator, :framerate_numerator, :gop_closed_cadence, :gop_size, :gop_size_units, :level, :look_ahead_rate_control, :max_bitrate, :min_i_interval, :par_denominator, :par_numerator, :profile, :qvbr_quality_level, :rate_control_mode, :scan_type, :scene_change_detect, :slices, :tier, :timecode_insertion, :timecode_burnin_settings, :mv_over_picture_boundaries, :mv_temporal_predictor, :tile_height, :tile_padding, :tile_width, :treeblock_size, :min_qp, :deblocking, :gop_b_reference, :gop_num_b_frames, :min_bitrate, :subgop_length) SENSITIVE = [] include Aws::Structure end |
#deblocking ⇒ String
Enable or disable the deblocking filter for this codec. The filter reduces blocking artifacts at block boundaries, which improves overall video quality. If the filter is disabled, visible block edges might appear in the output, especially at lower bitrates.
5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 |
# File 'gems/aws-sdk-medialive/lib/aws-sdk-medialive/types.rb', line 5771 class H265Settings < Struct.new( :adaptive_quantization, :afd_signaling, :alternative_transfer_function, :bitrate, :buf_size, :color_metadata, :color_space_settings, :filter_settings, :fixed_afd, :flicker_aq, :framerate_denominator, :framerate_numerator, :gop_closed_cadence, :gop_size, :gop_size_units, :level, :look_ahead_rate_control, :max_bitrate, :min_i_interval, :par_denominator, :par_numerator, :profile, :qvbr_quality_level, :rate_control_mode, :scan_type, :scene_change_detect, :slices, :tier, :timecode_insertion, :timecode_burnin_settings, :mv_over_picture_boundaries, :mv_temporal_predictor, :tile_height, :tile_padding, :tile_width, :treeblock_size, :min_qp, :deblocking, :gop_b_reference, :gop_num_b_frames, :min_bitrate, :subgop_length) SENSITIVE = [] include Aws::Structure end |
#filter_settings ⇒ Types::H265FilterSettings
Optional. Both filters reduce bandwidth by removing imperceptible details. You can enable one of the filters. We recommend that you try both filters and observe the results to decide which one to use. The Temporal Filter reduces bandwidth by removing imperceptible details in the content. It combines perceptual filtering and motion compensated temporal filtering (MCTF). It operates independently of the compression level. The Bandwidth Reduction filter is a perceptual filter located within the encoding loop. It adapts to the current compression level to filter imperceptible signals. This filter works only when the resolution is 1080p or lower.
5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 |
# File 'gems/aws-sdk-medialive/lib/aws-sdk-medialive/types.rb', line 5771 class H265Settings < Struct.new( :adaptive_quantization, :afd_signaling, :alternative_transfer_function, :bitrate, :buf_size, :color_metadata, :color_space_settings, :filter_settings, :fixed_afd, :flicker_aq, :framerate_denominator, :framerate_numerator, :gop_closed_cadence, :gop_size, :gop_size_units, :level, :look_ahead_rate_control, :max_bitrate, :min_i_interval, :par_denominator, :par_numerator, :profile, :qvbr_quality_level, :rate_control_mode, :scan_type, :scene_change_detect, :slices, :tier, :timecode_insertion, :timecode_burnin_settings, :mv_over_picture_boundaries, :mv_temporal_predictor, :tile_height, :tile_padding, :tile_width, :treeblock_size, :min_qp, :deblocking, :gop_b_reference, :gop_num_b_frames, :min_bitrate, :subgop_length) SENSITIVE = [] include Aws::Structure end |
#fixed_afd ⇒ String
Four bit AFD value to write on all frames of video in the output stream. Only valid when afdSignaling is set to 'Fixed'.
5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 |
# File 'gems/aws-sdk-medialive/lib/aws-sdk-medialive/types.rb', line 5771 class H265Settings < Struct.new( :adaptive_quantization, :afd_signaling, :alternative_transfer_function, :bitrate, :buf_size, :color_metadata, :color_space_settings, :filter_settings, :fixed_afd, :flicker_aq, :framerate_denominator, :framerate_numerator, :gop_closed_cadence, :gop_size, :gop_size_units, :level, :look_ahead_rate_control, :max_bitrate, :min_i_interval, :par_denominator, :par_numerator, :profile, :qvbr_quality_level, :rate_control_mode, :scan_type, :scene_change_detect, :slices, :tier, :timecode_insertion, :timecode_burnin_settings, :mv_over_picture_boundaries, :mv_temporal_predictor, :tile_height, :tile_padding, :tile_width, :treeblock_size, :min_qp, :deblocking, :gop_b_reference, :gop_num_b_frames, :min_bitrate, :subgop_length) SENSITIVE = [] include Aws::Structure end |
#flicker_aq ⇒ String
Flicker AQ makes adjustments within each frame to reduce flicker or 'pop' on I-frames. The value to enter in this field depends on the value in the Adaptive quantization field. For more information, see the topic about video adaptive quantization in the MediaLive user guide.
5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 |
# File 'gems/aws-sdk-medialive/lib/aws-sdk-medialive/types.rb', line 5771 class H265Settings < Struct.new( :adaptive_quantization, :afd_signaling, :alternative_transfer_function, :bitrate, :buf_size, :color_metadata, :color_space_settings, :filter_settings, :fixed_afd, :flicker_aq, :framerate_denominator, :framerate_numerator, :gop_closed_cadence, :gop_size, :gop_size_units, :level, :look_ahead_rate_control, :max_bitrate, :min_i_interval, :par_denominator, :par_numerator, :profile, :qvbr_quality_level, :rate_control_mode, :scan_type, :scene_change_detect, :slices, :tier, :timecode_insertion, :timecode_burnin_settings, :mv_over_picture_boundaries, :mv_temporal_predictor, :tile_height, :tile_padding, :tile_width, :treeblock_size, :min_qp, :deblocking, :gop_b_reference, :gop_num_b_frames, :min_bitrate, :subgop_length) SENSITIVE = [] include Aws::Structure end |
#framerate_denominator ⇒ Integer
Framerate denominator.
5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 |
# File 'gems/aws-sdk-medialive/lib/aws-sdk-medialive/types.rb', line 5771 class H265Settings < Struct.new( :adaptive_quantization, :afd_signaling, :alternative_transfer_function, :bitrate, :buf_size, :color_metadata, :color_space_settings, :filter_settings, :fixed_afd, :flicker_aq, :framerate_denominator, :framerate_numerator, :gop_closed_cadence, :gop_size, :gop_size_units, :level, :look_ahead_rate_control, :max_bitrate, :min_i_interval, :par_denominator, :par_numerator, :profile, :qvbr_quality_level, :rate_control_mode, :scan_type, :scene_change_detect, :slices, :tier, :timecode_insertion, :timecode_burnin_settings, :mv_over_picture_boundaries, :mv_temporal_predictor, :tile_height, :tile_padding, :tile_width, :treeblock_size, :min_qp, :deblocking, :gop_b_reference, :gop_num_b_frames, :min_bitrate, :subgop_length) SENSITIVE = [] include Aws::Structure end |
#framerate_numerator ⇒ Integer
Framerate numerator - framerate is a fraction, e.g. 24000 / 1001 = 23.976 fps.
5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 |
# File 'gems/aws-sdk-medialive/lib/aws-sdk-medialive/types.rb', line 5771 class H265Settings < Struct.new( :adaptive_quantization, :afd_signaling, :alternative_transfer_function, :bitrate, :buf_size, :color_metadata, :color_space_settings, :filter_settings, :fixed_afd, :flicker_aq, :framerate_denominator, :framerate_numerator, :gop_closed_cadence, :gop_size, :gop_size_units, :level, :look_ahead_rate_control, :max_bitrate, :min_i_interval, :par_denominator, :par_numerator, :profile, :qvbr_quality_level, :rate_control_mode, :scan_type, :scene_change_detect, :slices, :tier, :timecode_insertion, :timecode_burnin_settings, :mv_over_picture_boundaries, :mv_temporal_predictor, :tile_height, :tile_padding, :tile_width, :treeblock_size, :min_qp, :deblocking, :gop_b_reference, :gop_num_b_frames, :min_bitrate, :subgop_length) SENSITIVE = [] include Aws::Structure end |
#gop_b_reference ⇒ String
H265 Gop BReference
5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 |
# File 'gems/aws-sdk-medialive/lib/aws-sdk-medialive/types.rb', line 5771 class H265Settings < Struct.new( :adaptive_quantization, :afd_signaling, :alternative_transfer_function, :bitrate, :buf_size, :color_metadata, :color_space_settings, :filter_settings, :fixed_afd, :flicker_aq, :framerate_denominator, :framerate_numerator, :gop_closed_cadence, :gop_size, :gop_size_units, :level, :look_ahead_rate_control, :max_bitrate, :min_i_interval, :par_denominator, :par_numerator, :profile, :qvbr_quality_level, :rate_control_mode, :scan_type, :scene_change_detect, :slices, :tier, :timecode_insertion, :timecode_burnin_settings, :mv_over_picture_boundaries, :mv_temporal_predictor, :tile_height, :tile_padding, :tile_width, :treeblock_size, :min_qp, :deblocking, :gop_b_reference, :gop_num_b_frames, :min_bitrate, :subgop_length) SENSITIVE = [] include Aws::Structure end |
#gop_closed_cadence ⇒ Integer
Frequency of closed GOPs. In streaming applications, it is recommended that this be set to 1 so a decoder joining mid-stream will receive an IDR frame as quickly as possible. Setting this value to 0 will break output segmenting.
5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 |
# File 'gems/aws-sdk-medialive/lib/aws-sdk-medialive/types.rb', line 5771 class H265Settings < Struct.new( :adaptive_quantization, :afd_signaling, :alternative_transfer_function, :bitrate, :buf_size, :color_metadata, :color_space_settings, :filter_settings, :fixed_afd, :flicker_aq, :framerate_denominator, :framerate_numerator, :gop_closed_cadence, :gop_size, :gop_size_units, :level, :look_ahead_rate_control, :max_bitrate, :min_i_interval, :par_denominator, :par_numerator, :profile, :qvbr_quality_level, :rate_control_mode, :scan_type, :scene_change_detect, :slices, :tier, :timecode_insertion, :timecode_burnin_settings, :mv_over_picture_boundaries, :mv_temporal_predictor, :tile_height, :tile_padding, :tile_width, :treeblock_size, :min_qp, :deblocking, :gop_b_reference, :gop_num_b_frames, :min_bitrate, :subgop_length) SENSITIVE = [] include Aws::Structure end |
#gop_num_b_frames ⇒ Integer
5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 |
# File 'gems/aws-sdk-medialive/lib/aws-sdk-medialive/types.rb', line 5771 class H265Settings < Struct.new( :adaptive_quantization, :afd_signaling, :alternative_transfer_function, :bitrate, :buf_size, :color_metadata, :color_space_settings, :filter_settings, :fixed_afd, :flicker_aq, :framerate_denominator, :framerate_numerator, :gop_closed_cadence, :gop_size, :gop_size_units, :level, :look_ahead_rate_control, :max_bitrate, :min_i_interval, :par_denominator, :par_numerator, :profile, :qvbr_quality_level, :rate_control_mode, :scan_type, :scene_change_detect, :slices, :tier, :timecode_insertion, :timecode_burnin_settings, :mv_over_picture_boundaries, :mv_temporal_predictor, :tile_height, :tile_padding, :tile_width, :treeblock_size, :min_qp, :deblocking, :gop_b_reference, :gop_num_b_frames, :min_bitrate, :subgop_length) SENSITIVE = [] include Aws::Structure end |
#gop_size ⇒ Float
GOP size (keyframe interval) in units of either frames or seconds per gopSizeUnits. If gopSizeUnits is frames, gopSize must be an integer and must be greater than or equal to 1. If gopSizeUnits is seconds, gopSize must be greater than 0, but need not be an integer.
5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 |
# File 'gems/aws-sdk-medialive/lib/aws-sdk-medialive/types.rb', line 5771 class H265Settings < Struct.new( :adaptive_quantization, :afd_signaling, :alternative_transfer_function, :bitrate, :buf_size, :color_metadata, :color_space_settings, :filter_settings, :fixed_afd, :flicker_aq, :framerate_denominator, :framerate_numerator, :gop_closed_cadence, :gop_size, :gop_size_units, :level, :look_ahead_rate_control, :max_bitrate, :min_i_interval, :par_denominator, :par_numerator, :profile, :qvbr_quality_level, :rate_control_mode, :scan_type, :scene_change_detect, :slices, :tier, :timecode_insertion, :timecode_burnin_settings, :mv_over_picture_boundaries, :mv_temporal_predictor, :tile_height, :tile_padding, :tile_width, :treeblock_size, :min_qp, :deblocking, :gop_b_reference, :gop_num_b_frames, :min_bitrate, :subgop_length) SENSITIVE = [] include Aws::Structure end |
#gop_size_units ⇒ String
Indicates if the gopSize is specified in frames or seconds. If seconds the system will convert the gopSize into a frame count at run time.
5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 |
# File 'gems/aws-sdk-medialive/lib/aws-sdk-medialive/types.rb', line 5771 class H265Settings < Struct.new( :adaptive_quantization, :afd_signaling, :alternative_transfer_function, :bitrate, :buf_size, :color_metadata, :color_space_settings, :filter_settings, :fixed_afd, :flicker_aq, :framerate_denominator, :framerate_numerator, :gop_closed_cadence, :gop_size, :gop_size_units, :level, :look_ahead_rate_control, :max_bitrate, :min_i_interval, :par_denominator, :par_numerator, :profile, :qvbr_quality_level, :rate_control_mode, :scan_type, :scene_change_detect, :slices, :tier, :timecode_insertion, :timecode_burnin_settings, :mv_over_picture_boundaries, :mv_temporal_predictor, :tile_height, :tile_padding, :tile_width, :treeblock_size, :min_qp, :deblocking, :gop_b_reference, :gop_num_b_frames, :min_bitrate, :subgop_length) SENSITIVE = [] include Aws::Structure end |
#level ⇒ String
H.265 Level.
5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 |
# File 'gems/aws-sdk-medialive/lib/aws-sdk-medialive/types.rb', line 5771 class H265Settings < Struct.new( :adaptive_quantization, :afd_signaling, :alternative_transfer_function, :bitrate, :buf_size, :color_metadata, :color_space_settings, :filter_settings, :fixed_afd, :flicker_aq, :framerate_denominator, :framerate_numerator, :gop_closed_cadence, :gop_size, :gop_size_units, :level, :look_ahead_rate_control, :max_bitrate, :min_i_interval, :par_denominator, :par_numerator, :profile, :qvbr_quality_level, :rate_control_mode, :scan_type, :scene_change_detect, :slices, :tier, :timecode_insertion, :timecode_burnin_settings, :mv_over_picture_boundaries, :mv_temporal_predictor, :tile_height, :tile_padding, :tile_width, :treeblock_size, :min_qp, :deblocking, :gop_b_reference, :gop_num_b_frames, :min_bitrate, :subgop_length) SENSITIVE = [] include Aws::Structure end |
#look_ahead_rate_control ⇒ String
Amount of lookahead. A value of low can decrease latency and memory usage, while high can produce better quality for certain content.
5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 |
# File 'gems/aws-sdk-medialive/lib/aws-sdk-medialive/types.rb', line 5771 class H265Settings < Struct.new( :adaptive_quantization, :afd_signaling, :alternative_transfer_function, :bitrate, :buf_size, :color_metadata, :color_space_settings, :filter_settings, :fixed_afd, :flicker_aq, :framerate_denominator, :framerate_numerator, :gop_closed_cadence, :gop_size, :gop_size_units, :level, :look_ahead_rate_control, :max_bitrate, :min_i_interval, :par_denominator, :par_numerator, :profile, :qvbr_quality_level, :rate_control_mode, :scan_type, :scene_change_detect, :slices, :tier, :timecode_insertion, :timecode_burnin_settings, :mv_over_picture_boundaries, :mv_temporal_predictor, :tile_height, :tile_padding, :tile_width, :treeblock_size, :min_qp, :deblocking, :gop_b_reference, :gop_num_b_frames, :min_bitrate, :subgop_length) SENSITIVE = [] include Aws::Structure end |
#max_bitrate ⇒ Integer
For QVBR: See the tooltip for Quality level
5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 |
# File 'gems/aws-sdk-medialive/lib/aws-sdk-medialive/types.rb', line 5771 class H265Settings < Struct.new( :adaptive_quantization, :afd_signaling, :alternative_transfer_function, :bitrate, :buf_size, :color_metadata, :color_space_settings, :filter_settings, :fixed_afd, :flicker_aq, :framerate_denominator, :framerate_numerator, :gop_closed_cadence, :gop_size, :gop_size_units, :level, :look_ahead_rate_control, :max_bitrate, :min_i_interval, :par_denominator, :par_numerator, :profile, :qvbr_quality_level, :rate_control_mode, :scan_type, :scene_change_detect, :slices, :tier, :timecode_insertion, :timecode_burnin_settings, :mv_over_picture_boundaries, :mv_temporal_predictor, :tile_height, :tile_padding, :tile_width, :treeblock_size, :min_qp, :deblocking, :gop_b_reference, :gop_num_b_frames, :min_bitrate, :subgop_length) SENSITIVE = [] include Aws::Structure end |
#min_bitrate ⇒ Integer
Used for QVBR rate control mode only. Optional. Enter a minimum bitrate if you want to keep the output bitrate about a threshold, in order to prevent the downstream system from de-allocating network bandwidth for this output.
5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 |
# File 'gems/aws-sdk-medialive/lib/aws-sdk-medialive/types.rb', line 5771 class H265Settings < Struct.new( :adaptive_quantization, :afd_signaling, :alternative_transfer_function, :bitrate, :buf_size, :color_metadata, :color_space_settings, :filter_settings, :fixed_afd, :flicker_aq, :framerate_denominator, :framerate_numerator, :gop_closed_cadence, :gop_size, :gop_size_units, :level, :look_ahead_rate_control, :max_bitrate, :min_i_interval, :par_denominator, :par_numerator, :profile, :qvbr_quality_level, :rate_control_mode, :scan_type, :scene_change_detect, :slices, :tier, :timecode_insertion, :timecode_burnin_settings, :mv_over_picture_boundaries, :mv_temporal_predictor, :tile_height, :tile_padding, :tile_width, :treeblock_size, :min_qp, :deblocking, :gop_b_reference, :gop_num_b_frames, :min_bitrate, :subgop_length) SENSITIVE = [] include Aws::Structure end |
#min_i_interval ⇒ Integer
Only meaningful if sceneChangeDetect is set to enabled. Defaults to 5 if multiplex rate control is used. Enforces separation between repeated (cadence) I-frames and I-frames inserted by Scene Change Detection. If a scene change I-frame is within I-interval frames of a cadence I-frame, the GOP is shrunk and/or stretched to the scene change I-frame. GOP stretch requires enabling lookahead as well as setting I-interval. The normal cadence resumes for the next GOP. Note: Maximum GOP stretch = GOP size + Min-I-interval - 1
5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 |
# File 'gems/aws-sdk-medialive/lib/aws-sdk-medialive/types.rb', line 5771 class H265Settings < Struct.new( :adaptive_quantization, :afd_signaling, :alternative_transfer_function, :bitrate, :buf_size, :color_metadata, :color_space_settings, :filter_settings, :fixed_afd, :flicker_aq, :framerate_denominator, :framerate_numerator, :gop_closed_cadence, :gop_size, :gop_size_units, :level, :look_ahead_rate_control, :max_bitrate, :min_i_interval, :par_denominator, :par_numerator, :profile, :qvbr_quality_level, :rate_control_mode, :scan_type, :scene_change_detect, :slices, :tier, :timecode_insertion, :timecode_burnin_settings, :mv_over_picture_boundaries, :mv_temporal_predictor, :tile_height, :tile_padding, :tile_width, :treeblock_size, :min_qp, :deblocking, :gop_b_reference, :gop_num_b_frames, :min_bitrate, :subgop_length) SENSITIVE = [] include Aws::Structure end |
#min_qp ⇒ Integer
Sets the minimum QP. If you aren't familiar with quantization adjustment, leave the field empty. MediaLive will apply an appropriate value.
5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 |
# File 'gems/aws-sdk-medialive/lib/aws-sdk-medialive/types.rb', line 5771 class H265Settings < Struct.new( :adaptive_quantization, :afd_signaling, :alternative_transfer_function, :bitrate, :buf_size, :color_metadata, :color_space_settings, :filter_settings, :fixed_afd, :flicker_aq, :framerate_denominator, :framerate_numerator, :gop_closed_cadence, :gop_size, :gop_size_units, :level, :look_ahead_rate_control, :max_bitrate, :min_i_interval, :par_denominator, :par_numerator, :profile, :qvbr_quality_level, :rate_control_mode, :scan_type, :scene_change_detect, :slices, :tier, :timecode_insertion, :timecode_burnin_settings, :mv_over_picture_boundaries, :mv_temporal_predictor, :tile_height, :tile_padding, :tile_width, :treeblock_size, :min_qp, :deblocking, :gop_b_reference, :gop_num_b_frames, :min_bitrate, :subgop_length) SENSITIVE = [] include Aws::Structure end |
#mv_over_picture_boundaries ⇒ String
If you are setting up the picture as a tile, you must set this to "disabled". In all other configurations, you typically enter "enabled".
5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 |
# File 'gems/aws-sdk-medialive/lib/aws-sdk-medialive/types.rb', line 5771 class H265Settings < Struct.new( :adaptive_quantization, :afd_signaling, :alternative_transfer_function, :bitrate, :buf_size, :color_metadata, :color_space_settings, :filter_settings, :fixed_afd, :flicker_aq, :framerate_denominator, :framerate_numerator, :gop_closed_cadence, :gop_size, :gop_size_units, :level, :look_ahead_rate_control, :max_bitrate, :min_i_interval, :par_denominator, :par_numerator, :profile, :qvbr_quality_level, :rate_control_mode, :scan_type, :scene_change_detect, :slices, :tier, :timecode_insertion, :timecode_burnin_settings, :mv_over_picture_boundaries, :mv_temporal_predictor, :tile_height, :tile_padding, :tile_width, :treeblock_size, :min_qp, :deblocking, :gop_b_reference, :gop_num_b_frames, :min_bitrate, :subgop_length) SENSITIVE = [] include Aws::Structure end |
#mv_temporal_predictor ⇒ String
If you are setting up the picture as a tile, you must set this to "disabled". In other configurations, you typically enter "enabled".
5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 |
# File 'gems/aws-sdk-medialive/lib/aws-sdk-medialive/types.rb', line 5771 class H265Settings < Struct.new( :adaptive_quantization, :afd_signaling, :alternative_transfer_function, :bitrate, :buf_size, :color_metadata, :color_space_settings, :filter_settings, :fixed_afd, :flicker_aq, :framerate_denominator, :framerate_numerator, :gop_closed_cadence, :gop_size, :gop_size_units, :level, :look_ahead_rate_control, :max_bitrate, :min_i_interval, :par_denominator, :par_numerator, :profile, :qvbr_quality_level, :rate_control_mode, :scan_type, :scene_change_detect, :slices, :tier, :timecode_insertion, :timecode_burnin_settings, :mv_over_picture_boundaries, :mv_temporal_predictor, :tile_height, :tile_padding, :tile_width, :treeblock_size, :min_qp, :deblocking, :gop_b_reference, :gop_num_b_frames, :min_bitrate, :subgop_length) SENSITIVE = [] include Aws::Structure end |
#par_denominator ⇒ Integer
Pixel Aspect Ratio denominator.
5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 |
# File 'gems/aws-sdk-medialive/lib/aws-sdk-medialive/types.rb', line 5771 class H265Settings < Struct.new( :adaptive_quantization, :afd_signaling, :alternative_transfer_function, :bitrate, :buf_size, :color_metadata, :color_space_settings, :filter_settings, :fixed_afd, :flicker_aq, :framerate_denominator, :framerate_numerator, :gop_closed_cadence, :gop_size, :gop_size_units, :level, :look_ahead_rate_control, :max_bitrate, :min_i_interval, :par_denominator, :par_numerator, :profile, :qvbr_quality_level, :rate_control_mode, :scan_type, :scene_change_detect, :slices, :tier, :timecode_insertion, :timecode_burnin_settings, :mv_over_picture_boundaries, :mv_temporal_predictor, :tile_height, :tile_padding, :tile_width, :treeblock_size, :min_qp, :deblocking, :gop_b_reference, :gop_num_b_frames, :min_bitrate, :subgop_length) SENSITIVE = [] include Aws::Structure end |
#par_numerator ⇒ Integer
Pixel Aspect Ratio numerator.
5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 |
# File 'gems/aws-sdk-medialive/lib/aws-sdk-medialive/types.rb', line 5771 class H265Settings < Struct.new( :adaptive_quantization, :afd_signaling, :alternative_transfer_function, :bitrate, :buf_size, :color_metadata, :color_space_settings, :filter_settings, :fixed_afd, :flicker_aq, :framerate_denominator, :framerate_numerator, :gop_closed_cadence, :gop_size, :gop_size_units, :level, :look_ahead_rate_control, :max_bitrate, :min_i_interval, :par_denominator, :par_numerator, :profile, :qvbr_quality_level, :rate_control_mode, :scan_type, :scene_change_detect, :slices, :tier, :timecode_insertion, :timecode_burnin_settings, :mv_over_picture_boundaries, :mv_temporal_predictor, :tile_height, :tile_padding, :tile_width, :treeblock_size, :min_qp, :deblocking, :gop_b_reference, :gop_num_b_frames, :min_bitrate, :subgop_length) SENSITIVE = [] include Aws::Structure end |
#profile ⇒ String
H.265 Profile.
5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 |
# File 'gems/aws-sdk-medialive/lib/aws-sdk-medialive/types.rb', line 5771 class H265Settings < Struct.new( :adaptive_quantization, :afd_signaling, :alternative_transfer_function, :bitrate, :buf_size, :color_metadata, :color_space_settings, :filter_settings, :fixed_afd, :flicker_aq, :framerate_denominator, :framerate_numerator, :gop_closed_cadence, :gop_size, :gop_size_units, :level, :look_ahead_rate_control, :max_bitrate, :min_i_interval, :par_denominator, :par_numerator, :profile, :qvbr_quality_level, :rate_control_mode, :scan_type, :scene_change_detect, :slices, :tier, :timecode_insertion, :timecode_burnin_settings, :mv_over_picture_boundaries, :mv_temporal_predictor, :tile_height, :tile_padding, :tile_width, :treeblock_size, :min_qp, :deblocking, :gop_b_reference, :gop_num_b_frames, :min_bitrate, :subgop_length) SENSITIVE = [] include Aws::Structure end |
#qvbr_quality_level ⇒ Integer
Controls the target quality for the video encode. Applies only when the rate control mode is QVBR. Set values for the QVBR quality level field and Max bitrate field that suit your most important viewing devices. Recommended values are: - Primary screen: Quality level: 8 to 10. Max bitrate: 4M - PC or tablet: Quality level: 7. Max bitrate: 1.5M to 3M - Smartphone: Quality level: 6. Max bitrate: 1M to 1.5M
5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 |
# File 'gems/aws-sdk-medialive/lib/aws-sdk-medialive/types.rb', line 5771 class H265Settings < Struct.new( :adaptive_quantization, :afd_signaling, :alternative_transfer_function, :bitrate, :buf_size, :color_metadata, :color_space_settings, :filter_settings, :fixed_afd, :flicker_aq, :framerate_denominator, :framerate_numerator, :gop_closed_cadence, :gop_size, :gop_size_units, :level, :look_ahead_rate_control, :max_bitrate, :min_i_interval, :par_denominator, :par_numerator, :profile, :qvbr_quality_level, :rate_control_mode, :scan_type, :scene_change_detect, :slices, :tier, :timecode_insertion, :timecode_burnin_settings, :mv_over_picture_boundaries, :mv_temporal_predictor, :tile_height, :tile_padding, :tile_width, :treeblock_size, :min_qp, :deblocking, :gop_b_reference, :gop_num_b_frames, :min_bitrate, :subgop_length) SENSITIVE = [] include Aws::Structure end |
#rate_control_mode ⇒ String
Rate control mode. QVBR: Quality will match the specified quality level except when it is constrained by the maximum bitrate. Recommended if you or your viewers pay for bandwidth. CBR: Quality varies, depending on the video complexity. Recommended only if you distribute your assets to devices that cannot handle variable bitrates. Multiplex: This rate control mode is only supported (and is required) when the video is being delivered to a MediaLive Multiplex in which case the rate control configuration is controlled by the properties within the Multiplex Program.
5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 |
# File 'gems/aws-sdk-medialive/lib/aws-sdk-medialive/types.rb', line 5771 class H265Settings < Struct.new( :adaptive_quantization, :afd_signaling, :alternative_transfer_function, :bitrate, :buf_size, :color_metadata, :color_space_settings, :filter_settings, :fixed_afd, :flicker_aq, :framerate_denominator, :framerate_numerator, :gop_closed_cadence, :gop_size, :gop_size_units, :level, :look_ahead_rate_control, :max_bitrate, :min_i_interval, :par_denominator, :par_numerator, :profile, :qvbr_quality_level, :rate_control_mode, :scan_type, :scene_change_detect, :slices, :tier, :timecode_insertion, :timecode_burnin_settings, :mv_over_picture_boundaries, :mv_temporal_predictor, :tile_height, :tile_padding, :tile_width, :treeblock_size, :min_qp, :deblocking, :gop_b_reference, :gop_num_b_frames, :min_bitrate, :subgop_length) SENSITIVE = [] include Aws::Structure end |
#scan_type ⇒ String
Sets the scan type of the output to progressive or top-field-first interlaced.
5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 |
# File 'gems/aws-sdk-medialive/lib/aws-sdk-medialive/types.rb', line 5771 class H265Settings < Struct.new( :adaptive_quantization, :afd_signaling, :alternative_transfer_function, :bitrate, :buf_size, :color_metadata, :color_space_settings, :filter_settings, :fixed_afd, :flicker_aq, :framerate_denominator, :framerate_numerator, :gop_closed_cadence, :gop_size, :gop_size_units, :level, :look_ahead_rate_control, :max_bitrate, :min_i_interval, :par_denominator, :par_numerator, :profile, :qvbr_quality_level, :rate_control_mode, :scan_type, :scene_change_detect, :slices, :tier, :timecode_insertion, :timecode_burnin_settings, :mv_over_picture_boundaries, :mv_temporal_predictor, :tile_height, :tile_padding, :tile_width, :treeblock_size, :min_qp, :deblocking, :gop_b_reference, :gop_num_b_frames, :min_bitrate, :subgop_length) SENSITIVE = [] include Aws::Structure end |
#scene_change_detect ⇒ String
Scene change detection.
5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 |
# File 'gems/aws-sdk-medialive/lib/aws-sdk-medialive/types.rb', line 5771 class H265Settings < Struct.new( :adaptive_quantization, :afd_signaling, :alternative_transfer_function, :bitrate, :buf_size, :color_metadata, :color_space_settings, :filter_settings, :fixed_afd, :flicker_aq, :framerate_denominator, :framerate_numerator, :gop_closed_cadence, :gop_size, :gop_size_units, :level, :look_ahead_rate_control, :max_bitrate, :min_i_interval, :par_denominator, :par_numerator, :profile, :qvbr_quality_level, :rate_control_mode, :scan_type, :scene_change_detect, :slices, :tier, :timecode_insertion, :timecode_burnin_settings, :mv_over_picture_boundaries, :mv_temporal_predictor, :tile_height, :tile_padding, :tile_width, :treeblock_size, :min_qp, :deblocking, :gop_b_reference, :gop_num_b_frames, :min_bitrate, :subgop_length) SENSITIVE = [] include Aws::Structure end |
#slices ⇒ Integer
Number of slices per picture. Must be less than or equal to the number of macroblock rows for progressive pictures, and less than or equal to half the number of macroblock rows for interlaced pictures. This field is optional; when no value is specified the encoder will choose the number of slices based on encode resolution.
5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 |
# File 'gems/aws-sdk-medialive/lib/aws-sdk-medialive/types.rb', line 5771 class H265Settings < Struct.new( :adaptive_quantization, :afd_signaling, :alternative_transfer_function, :bitrate, :buf_size, :color_metadata, :color_space_settings, :filter_settings, :fixed_afd, :flicker_aq, :framerate_denominator, :framerate_numerator, :gop_closed_cadence, :gop_size, :gop_size_units, :level, :look_ahead_rate_control, :max_bitrate, :min_i_interval, :par_denominator, :par_numerator, :profile, :qvbr_quality_level, :rate_control_mode, :scan_type, :scene_change_detect, :slices, :tier, :timecode_insertion, :timecode_burnin_settings, :mv_over_picture_boundaries, :mv_temporal_predictor, :tile_height, :tile_padding, :tile_width, :treeblock_size, :min_qp, :deblocking, :gop_b_reference, :gop_num_b_frames, :min_bitrate, :subgop_length) SENSITIVE = [] include Aws::Structure end |
#subgop_length ⇒ String
H265 Sub Gop Length
5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 |
# File 'gems/aws-sdk-medialive/lib/aws-sdk-medialive/types.rb', line 5771 class H265Settings < Struct.new( :adaptive_quantization, :afd_signaling, :alternative_transfer_function, :bitrate, :buf_size, :color_metadata, :color_space_settings, :filter_settings, :fixed_afd, :flicker_aq, :framerate_denominator, :framerate_numerator, :gop_closed_cadence, :gop_size, :gop_size_units, :level, :look_ahead_rate_control, :max_bitrate, :min_i_interval, :par_denominator, :par_numerator, :profile, :qvbr_quality_level, :rate_control_mode, :scan_type, :scene_change_detect, :slices, :tier, :timecode_insertion, :timecode_burnin_settings, :mv_over_picture_boundaries, :mv_temporal_predictor, :tile_height, :tile_padding, :tile_width, :treeblock_size, :min_qp, :deblocking, :gop_b_reference, :gop_num_b_frames, :min_bitrate, :subgop_length) SENSITIVE = [] include Aws::Structure end |
#tier ⇒ String
H.265 Tier.
5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 |
# File 'gems/aws-sdk-medialive/lib/aws-sdk-medialive/types.rb', line 5771 class H265Settings < Struct.new( :adaptive_quantization, :afd_signaling, :alternative_transfer_function, :bitrate, :buf_size, :color_metadata, :color_space_settings, :filter_settings, :fixed_afd, :flicker_aq, :framerate_denominator, :framerate_numerator, :gop_closed_cadence, :gop_size, :gop_size_units, :level, :look_ahead_rate_control, :max_bitrate, :min_i_interval, :par_denominator, :par_numerator, :profile, :qvbr_quality_level, :rate_control_mode, :scan_type, :scene_change_detect, :slices, :tier, :timecode_insertion, :timecode_burnin_settings, :mv_over_picture_boundaries, :mv_temporal_predictor, :tile_height, :tile_padding, :tile_width, :treeblock_size, :min_qp, :deblocking, :gop_b_reference, :gop_num_b_frames, :min_bitrate, :subgop_length) SENSITIVE = [] include Aws::Structure end |
#tile_height ⇒ Integer
Set this field to set up the picture as a tile. You must also set tileWidth. The tile height must result in 22 or fewer rows in the frame. The tile width must result in 20 or fewer columns in the frame. And finally, the product of the column count and row count must be 64 of less. If the tile width and height are specified, MediaLive will override the video codec slices field with a value that MediaLive calculates
5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 |
# File 'gems/aws-sdk-medialive/lib/aws-sdk-medialive/types.rb', line 5771 class H265Settings < Struct.new( :adaptive_quantization, :afd_signaling, :alternative_transfer_function, :bitrate, :buf_size, :color_metadata, :color_space_settings, :filter_settings, :fixed_afd, :flicker_aq, :framerate_denominator, :framerate_numerator, :gop_closed_cadence, :gop_size, :gop_size_units, :level, :look_ahead_rate_control, :max_bitrate, :min_i_interval, :par_denominator, :par_numerator, :profile, :qvbr_quality_level, :rate_control_mode, :scan_type, :scene_change_detect, :slices, :tier, :timecode_insertion, :timecode_burnin_settings, :mv_over_picture_boundaries, :mv_temporal_predictor, :tile_height, :tile_padding, :tile_width, :treeblock_size, :min_qp, :deblocking, :gop_b_reference, :gop_num_b_frames, :min_bitrate, :subgop_length) SENSITIVE = [] include Aws::Structure end |
#tile_padding ⇒ String
Set to "padded" to force MediaLive to add padding to the frame, to obtain a frame that is a whole multiple of the tile size. If you are setting up the picture as a tile, you must enter "padded". In all other configurations, you typically enter "none".
5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 |
# File 'gems/aws-sdk-medialive/lib/aws-sdk-medialive/types.rb', line 5771 class H265Settings < Struct.new( :adaptive_quantization, :afd_signaling, :alternative_transfer_function, :bitrate, :buf_size, :color_metadata, :color_space_settings, :filter_settings, :fixed_afd, :flicker_aq, :framerate_denominator, :framerate_numerator, :gop_closed_cadence, :gop_size, :gop_size_units, :level, :look_ahead_rate_control, :max_bitrate, :min_i_interval, :par_denominator, :par_numerator, :profile, :qvbr_quality_level, :rate_control_mode, :scan_type, :scene_change_detect, :slices, :tier, :timecode_insertion, :timecode_burnin_settings, :mv_over_picture_boundaries, :mv_temporal_predictor, :tile_height, :tile_padding, :tile_width, :treeblock_size, :min_qp, :deblocking, :gop_b_reference, :gop_num_b_frames, :min_bitrate, :subgop_length) SENSITIVE = [] include Aws::Structure end |
#tile_width ⇒ Integer
Set this field to set up the picture as a tile. See tileHeight for more information.
5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 |
# File 'gems/aws-sdk-medialive/lib/aws-sdk-medialive/types.rb', line 5771 class H265Settings < Struct.new( :adaptive_quantization, :afd_signaling, :alternative_transfer_function, :bitrate, :buf_size, :color_metadata, :color_space_settings, :filter_settings, :fixed_afd, :flicker_aq, :framerate_denominator, :framerate_numerator, :gop_closed_cadence, :gop_size, :gop_size_units, :level, :look_ahead_rate_control, :max_bitrate, :min_i_interval, :par_denominator, :par_numerator, :profile, :qvbr_quality_level, :rate_control_mode, :scan_type, :scene_change_detect, :slices, :tier, :timecode_insertion, :timecode_burnin_settings, :mv_over_picture_boundaries, :mv_temporal_predictor, :tile_height, :tile_padding, :tile_width, :treeblock_size, :min_qp, :deblocking, :gop_b_reference, :gop_num_b_frames, :min_bitrate, :subgop_length) SENSITIVE = [] include Aws::Structure end |
#timecode_burnin_settings ⇒ Types::TimecodeBurninSettings
Timecode burn-in settings
5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 |
# File 'gems/aws-sdk-medialive/lib/aws-sdk-medialive/types.rb', line 5771 class H265Settings < Struct.new( :adaptive_quantization, :afd_signaling, :alternative_transfer_function, :bitrate, :buf_size, :color_metadata, :color_space_settings, :filter_settings, :fixed_afd, :flicker_aq, :framerate_denominator, :framerate_numerator, :gop_closed_cadence, :gop_size, :gop_size_units, :level, :look_ahead_rate_control, :max_bitrate, :min_i_interval, :par_denominator, :par_numerator, :profile, :qvbr_quality_level, :rate_control_mode, :scan_type, :scene_change_detect, :slices, :tier, :timecode_insertion, :timecode_burnin_settings, :mv_over_picture_boundaries, :mv_temporal_predictor, :tile_height, :tile_padding, :tile_width, :treeblock_size, :min_qp, :deblocking, :gop_b_reference, :gop_num_b_frames, :min_bitrate, :subgop_length) SENSITIVE = [] include Aws::Structure end |
#timecode_insertion ⇒ String
Determines how timecodes should be inserted into the video elementary stream. - 'disabled': Do not include timecodes - 'picTimingSei': Pass through picture timing SEI messages from the source specified in Timecode Config
5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 |
# File 'gems/aws-sdk-medialive/lib/aws-sdk-medialive/types.rb', line 5771 class H265Settings < Struct.new( :adaptive_quantization, :afd_signaling, :alternative_transfer_function, :bitrate, :buf_size, :color_metadata, :color_space_settings, :filter_settings, :fixed_afd, :flicker_aq, :framerate_denominator, :framerate_numerator, :gop_closed_cadence, :gop_size, :gop_size_units, :level, :look_ahead_rate_control, :max_bitrate, :min_i_interval, :par_denominator, :par_numerator, :profile, :qvbr_quality_level, :rate_control_mode, :scan_type, :scene_change_detect, :slices, :tier, :timecode_insertion, :timecode_burnin_settings, :mv_over_picture_boundaries, :mv_temporal_predictor, :tile_height, :tile_padding, :tile_width, :treeblock_size, :min_qp, :deblocking, :gop_b_reference, :gop_num_b_frames, :min_bitrate, :subgop_length) SENSITIVE = [] include Aws::Structure end |
#treeblock_size ⇒ String
Select the tree block size used for encoding. If you enter "auto", the encoder will pick the best size. If you are setting up the picture as a tile, you must set this to 32x32. In all other configurations, you typically enter "auto".
5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 |
# File 'gems/aws-sdk-medialive/lib/aws-sdk-medialive/types.rb', line 5771 class H265Settings < Struct.new( :adaptive_quantization, :afd_signaling, :alternative_transfer_function, :bitrate, :buf_size, :color_metadata, :color_space_settings, :filter_settings, :fixed_afd, :flicker_aq, :framerate_denominator, :framerate_numerator, :gop_closed_cadence, :gop_size, :gop_size_units, :level, :look_ahead_rate_control, :max_bitrate, :min_i_interval, :par_denominator, :par_numerator, :profile, :qvbr_quality_level, :rate_control_mode, :scan_type, :scene_change_detect, :slices, :tier, :timecode_insertion, :timecode_burnin_settings, :mv_over_picture_boundaries, :mv_temporal_predictor, :tile_height, :tile_padding, :tile_width, :treeblock_size, :min_qp, :deblocking, :gop_b_reference, :gop_num_b_frames, :min_bitrate, :subgop_length) SENSITIVE = [] include Aws::Structure end |