Class: Aws::MediaLive::Types::MultiplexStatmuxVideoSettings

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-medialive/types.rb

Overview

Note:

When making an API call, you may pass MultiplexStatmuxVideoSettings data as a hash:

{
  maximum_bitrate: 1,
  minimum_bitrate: 1,
  priority: 1,
}

Statmux rate control settings

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#maximum_bitrateInteger

Maximum statmux bitrate.

Returns:

  • (Integer)


13266
13267
13268
13269
13270
13271
13272
# File 'lib/aws-sdk-medialive/types.rb', line 13266

class MultiplexStatmuxVideoSettings < Struct.new(
  :maximum_bitrate,
  :minimum_bitrate,
  :priority)
  SENSITIVE = []
  include Aws::Structure
end

#minimum_bitrateInteger

Minimum statmux bitrate.

Returns:

  • (Integer)


13266
13267
13268
13269
13270
13271
13272
# File 'lib/aws-sdk-medialive/types.rb', line 13266

class MultiplexStatmuxVideoSettings < Struct.new(
  :maximum_bitrate,
  :minimum_bitrate,
  :priority)
  SENSITIVE = []
  include Aws::Structure
end

#priorityInteger

The purpose of the priority is to use a combination of the\nmultiplex rate control algorithm and the QVBR capability of the\nencoder to prioritize the video quality of some channels in a\nmultiplex over others. Channels that have a higher priority will\nget higher video quality at the expense of the video quality of\nother channels in the multiplex with lower priority.

Returns:

  • (Integer)


13266
13267
13268
13269
13270
13271
13272
# File 'lib/aws-sdk-medialive/types.rb', line 13266

class MultiplexStatmuxVideoSettings < Struct.new(
  :maximum_bitrate,
  :minimum_bitrate,
  :priority)
  SENSITIVE = []
  include Aws::Structure
end