Class: Aws::MediaLive::Types::MultiplexVideoSettings

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 MultiplexVideoSettings data as a hash:

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

The video configuration for each program in a multiplex.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#constant_bitrateInteger

The constant bitrate configuration for the video encode. When this field is defined, StatmuxSettings must be undefined.

Returns:

  • (Integer)


13352
13353
13354
13355
13356
13357
# File 'lib/aws-sdk-medialive/types.rb', line 13352

class MultiplexVideoSettings < Struct.new(
  :constant_bitrate,
  :statmux_settings)
  SENSITIVE = []
  include Aws::Structure
end

#statmux_settingsTypes::MultiplexStatmuxVideoSettings

Statmux rate control settings. When this field is defined, ConstantBitrate must be undefined.



13352
13353
13354
13355
13356
13357
# File 'lib/aws-sdk-medialive/types.rb', line 13352

class MultiplexVideoSettings < Struct.new(
  :constant_bitrate,
  :statmux_settings)
  SENSITIVE = []
  include Aws::Structure
end