Method: Aws::MediaConvert::Types::AutomatedAbrSettings#min_abr_bitrate

Defined in:
lib/aws-sdk-mediaconvert/types.rb

#min_abr_bitrateInteger

Specify the minimum average bitrate for MediaConvert to use in your automated ABR stack. If you don’t specify a value, MediaConvert uses 600,000 (600 kb/s) by default. The average bitrate of your lowest-quality rendition will be near this value. Note that the instantaneous minimum bitrate may vary below the value that you specify.

Returns:

  • (Integer)


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