Class: Aws::IVS::Types::AudioConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::IVS::Types::AudioConfiguration
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-ivs/types.rb
Overview
Object specifying a stream’s audio configuration, as set up by the broadcaster (usually in an encoder). This is part of the IngestConfiguration object and used for monitoring stream health.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#channels ⇒ Integer
Number of audio channels.
-
#codec ⇒ String
Codec used for the audio encoding.
-
#sample_rate ⇒ Integer
Number of audio samples recorded per second.
-
#target_bitrate ⇒ Integer
The expected ingest bitrate (bits per second).
Instance Attribute Details
#channels ⇒ Integer
Number of audio channels.
48 49 50 51 52 53 54 55 |
# File 'lib/aws-sdk-ivs/types.rb', line 48 class AudioConfiguration < Struct.new( :codec, :target_bitrate, :sample_rate, :channels) SENSITIVE = [] include Aws::Structure end |
#codec ⇒ String
Codec used for the audio encoding.
48 49 50 51 52 53 54 55 |
# File 'lib/aws-sdk-ivs/types.rb', line 48 class AudioConfiguration < Struct.new( :codec, :target_bitrate, :sample_rate, :channels) SENSITIVE = [] include Aws::Structure end |
#sample_rate ⇒ Integer
Number of audio samples recorded per second.
48 49 50 51 52 53 54 55 |
# File 'lib/aws-sdk-ivs/types.rb', line 48 class AudioConfiguration < Struct.new( :codec, :target_bitrate, :sample_rate, :channels) SENSITIVE = [] include Aws::Structure end |
#target_bitrate ⇒ Integer
The expected ingest bitrate (bits per second). This is configured in the encoder.
48 49 50 51 52 53 54 55 |
# File 'lib/aws-sdk-ivs/types.rb', line 48 class AudioConfiguration < Struct.new( :codec, :target_bitrate, :sample_rate, :channels) SENSITIVE = [] include Aws::Structure end |