Class: Google::Apis::SpeechV1::SpeechRecognitionResult
- Inherits:
-
Object
- Object
- Google::Apis::SpeechV1::SpeechRecognitionResult
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/speech_v1/classes.rb,
lib/google/apis/speech_v1/representations.rb,
lib/google/apis/speech_v1/representations.rb
Overview
A speech recognition result corresponding to a portion of the audio.
Instance Attribute Summary collapse
-
#alternatives ⇒ Array<Google::Apis::SpeechV1::SpeechRecognitionAlternative>
May contain one or more recognition hypotheses (up to the maximum specified in
max_alternatives
). -
#channel_tag ⇒ Fixnum
For multi-channel audio, this is the channel number corresponding to the recognized result for the audio from that channel.
-
#language_code ⇒ String
Output only.
-
#result_end_time ⇒ String
Time offset of the end of this result relative to the beginning of the audio.
Instance Method Summary collapse
-
#initialize(**args) ⇒ SpeechRecognitionResult
constructor
A new instance of SpeechRecognitionResult.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ SpeechRecognitionResult
Returns a new instance of SpeechRecognitionResult.
1356 1357 1358 |
# File 'lib/google/apis/speech_v1/classes.rb', line 1356 def initialize(**args) update!(**args) end |
Instance Attribute Details
#alternatives ⇒ Array<Google::Apis::SpeechV1::SpeechRecognitionAlternative>
May contain one or more recognition hypotheses (up to the maximum specified in
max_alternatives
). These alternatives are ordered in terms of accuracy, with
the top (first) alternative being the most probable, as ranked by the
recognizer.
Corresponds to the JSON property alternatives
1335 1336 1337 |
# File 'lib/google/apis/speech_v1/classes.rb', line 1335 def alternatives @alternatives end |
#channel_tag ⇒ Fixnum
For multi-channel audio, this is the channel number corresponding to the
recognized result for the audio from that channel. For audio_channel_count = N,
its output values can range from '1' to 'N'.
Corresponds to the JSON property channelTag
1342 1343 1344 |
# File 'lib/google/apis/speech_v1/classes.rb', line 1342 def channel_tag @channel_tag end |
#language_code ⇒ String
Output only. The BCP-47
language tag of the language in this result. This language code was detected
to have the most likelihood of being spoken in the audio.
Corresponds to the JSON property languageCode
1349 1350 1351 |
# File 'lib/google/apis/speech_v1/classes.rb', line 1349 def language_code @language_code end |
#result_end_time ⇒ String
Time offset of the end of this result relative to the beginning of the audio.
Corresponds to the JSON property resultEndTime
1354 1355 1356 |
# File 'lib/google/apis/speech_v1/classes.rb', line 1354 def result_end_time @result_end_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1361 1362 1363 1364 1365 1366 |
# File 'lib/google/apis/speech_v1/classes.rb', line 1361 def update!(**args) @alternatives = args[:alternatives] if args.key?(:alternatives) @channel_tag = args[:channel_tag] if args.key?(:channel_tag) @language_code = args[:language_code] if args.key?(:language_code) @result_end_time = args[:result_end_time] if args.key?(:result_end_time) end |