Class: Aws::Rekognition::Types::AudioMetadata
- Inherits:
-
Struct
- Object
- Struct
- Aws::Rekognition::Types::AudioMetadata
- Defined in:
- gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb
Overview
Metadata information about an audio stream. An array of
AudioMetadata
objects for the audio streams found in a stored video
is returned by GetSegmentDetection.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#codec ⇒ String
The audio codec used to encode or decode the audio stream.
-
#duration_millis ⇒ Integer
The duration of the audio stream in milliseconds.
-
#number_of_channels ⇒ Integer
The number of audio channels in the segment.
-
#sample_rate ⇒ Integer
The sample rate for the audio stream.
Instance Attribute Details
#codec ⇒ String
The audio codec used to encode or decode the audio stream.
149 150 151 152 153 154 155 156 |
# File 'gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb', line 149 class AudioMetadata < Struct.new( :codec, :duration_millis, :sample_rate, :number_of_channels) SENSITIVE = [] include Aws::Structure end |
#duration_millis ⇒ Integer
The duration of the audio stream in milliseconds.
149 150 151 152 153 154 155 156 |
# File 'gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb', line 149 class AudioMetadata < Struct.new( :codec, :duration_millis, :sample_rate, :number_of_channels) SENSITIVE = [] include Aws::Structure end |
#number_of_channels ⇒ Integer
The number of audio channels in the segment.
149 150 151 152 153 154 155 156 |
# File 'gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb', line 149 class AudioMetadata < Struct.new( :codec, :duration_millis, :sample_rate, :number_of_channels) SENSITIVE = [] include Aws::Structure end |
#sample_rate ⇒ Integer
The sample rate for the audio stream.
149 150 151 152 153 154 155 156 |
# File 'gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb', line 149 class AudioMetadata < Struct.new( :codec, :duration_millis, :sample_rate, :number_of_channels) SENSITIVE = [] include Aws::Structure end |