Method: Aws::MediaConvert::Types::AutomatedAbrSettings#max_abr_bitrate
- Defined in:
- lib/aws-sdk-mediaconvert/types.rb
#max_abr_bitrate ⇒ Integer
Specify the maximum average bitrate for MediaConvert to use in your automated ABR stack. If you don’t specify a value, MediaConvert uses 8,000,000 (8 mb/s) by default. The average bitrate of your highest-quality rendition will be equal to or below this value, depending on the quality, complexity, and resolution of your content. Note that the instantaneous maximum bitrate may vary above the value that you specify.
1054 1055 1056 1057 1058 1059 1060 1061 1062 |
# File 'lib/aws-sdk-mediaconvert/types.rb', line 1054 class AutomatedAbrSettings < Struct.new( :max_abr_bitrate, :max_quality_level, :max_renditions, :min_abr_bitrate, :rules) SENSITIVE = [] include Aws::Structure end |