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.
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.
46 47 48 49 50 51 52 53 |
# File 'lib/aws-sdk-ivs/types.rb', line 46 class AudioConfiguration < Struct.new( :channels, :codec, :sample_rate, :target_bitrate) SENSITIVE = [] include Aws::Structure end |
#codec ⇒ String
Codec used for the audio encoding.
46 47 48 49 50 51 52 53 |
# File 'lib/aws-sdk-ivs/types.rb', line 46 class AudioConfiguration < Struct.new( :channels, :codec, :sample_rate, :target_bitrate) SENSITIVE = [] include Aws::Structure end |
#sample_rate ⇒ Integer
Number of audio samples recorded per second.
46 47 48 49 50 51 52 53 |
# File 'lib/aws-sdk-ivs/types.rb', line 46 class AudioConfiguration < Struct.new( :channels, :codec, :sample_rate, :target_bitrate) SENSITIVE = [] include Aws::Structure end |
#target_bitrate ⇒ Integer
The expected ingest bitrate (bits per second). This is configured in the encoder.
46 47 48 49 50 51 52 53 |
# File 'lib/aws-sdk-ivs/types.rb', line 46 class AudioConfiguration < Struct.new( :channels, :codec, :sample_rate, :target_bitrate) SENSITIVE = [] include Aws::Structure end |