Class: Aws::MediaConnect::Types::EncodingConfig

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-mediaconnect/lib/aws-sdk-mediaconnect/types.rb

Overview

The encoding configuration to apply to the NDIĀ® source when transcoding it to a transport stream for downstream distribution. You can choose between several predefined encoding profiles based on common use cases.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#encoding_profileString

The encoding profile to use when transcoding the NDI source content to a transport stream. You can change this value while the flow is running.

Returns:

  • (String)


2166
2167
2168
2169
2170
2171
# File 'gems/aws-sdk-mediaconnect/lib/aws-sdk-mediaconnect/types.rb', line 2166

class EncodingConfig < Struct.new(
  :encoding_profile,
  :video_max_bitrate)
  SENSITIVE = []
  include Aws::Structure
end

#video_max_bitrateInteger

The maximum video bitrate to use when transcoding the NDI source to a transport stream. This parameter enables you to override the default video bitrate within the encoding profile's supported range.

The supported range is 10,000,000 - 50,000,000 bits per second (bps). If you don't specify a value, MediaConnect uses the default value of 20,000,000 bps.

Returns:

  • (Integer)


2166
2167
2168
2169
2170
2171
# File 'gems/aws-sdk-mediaconnect/lib/aws-sdk-mediaconnect/types.rb', line 2166

class EncodingConfig < Struct.new(
  :encoding_profile,
  :video_max_bitrate)
  SENSITIVE = []
  include Aws::Structure
end