Class: Google::Apis::SpeechV1beta1::RecognitionConfig

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/speech_v1beta1/classes.rb,
generated/google/apis/speech_v1beta1/representations.rb,
generated/google/apis/speech_v1beta1/representations.rb

Overview

Provides information to the recognizer that specifies how to process the request.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ RecognitionConfig

Returns a new instance of RecognitionConfig



175
176
177
# File 'generated/google/apis/speech_v1beta1/classes.rb', line 175

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#encodingString

Required Encoding of audio data sent in all RecognitionAudio messages. Corresponds to the JSON property encoding

Returns:

  • (String)


164
165
166
# File 'generated/google/apis/speech_v1beta1/classes.rb', line 164

def encoding
  @encoding
end

#language_codeString

Optional The language of the supplied audio as a BCP-47 language tag. Example: "en-GB" https://www.rfc-editor.org/rfc/bcp/bcp47.txt If omitted, defaults to "en-US". See Language Support for a list of the currently supported language codes. Corresponds to the JSON property languageCode

Returns:

  • (String)


153
154
155
# File 'generated/google/apis/speech_v1beta1/classes.rb', line 153

def language_code
  @language_code
end

#max_alternativesFixnum

Optional Maximum number of recognition hypotheses to be returned. Specifically, the maximum number of SpeechRecognitionAlternative messages within each SpeechRecognitionResult. The server may return fewer than max_alternatives. Valid values are 0-30. A value of 0 or 1 will return a maximum of one. If omitted, will return a maximum of one. Corresponds to the JSON property maxAlternatives

Returns:

  • (Fixnum)


135
136
137
# File 'generated/google/apis/speech_v1beta1/classes.rb', line 135

def max_alternatives
  @max_alternatives
end

#profanity_filterBoolean Also known as: profanity_filter?

Optional If set to true, the server will attempt to filter out profanities, replacing all but the initial character in each filtered word with asterisks, e.g. "f***". If set to false or omitted, profanities won't be filtered out. Corresponds to the JSON property profanityFilter

Returns:

  • (Boolean)


172
173
174
# File 'generated/google/apis/speech_v1beta1/classes.rb', line 172

def profanity_filter
  @profanity_filter
end

#sample_rateFixnum

Required Sample rate in Hertz of the audio data sent in all RecognitionAudio messages. Valid values are: 8000-48000. 16000 is optimal. For best results, set the sampling rate of the audio source to 16000 Hz. If that's not possible, use the native sample rate of the audio source (instead of re-sampling). Corresponds to the JSON property sampleRate

Returns:

  • (Fixnum)


144
145
146
# File 'generated/google/apis/speech_v1beta1/classes.rb', line 144

def sample_rate
  @sample_rate
end

#speech_contextGoogle::Apis::SpeechV1beta1::SpeechContext

Provides "hints" to the speech recognizer to favor specific words and phrases in the results. Corresponds to the JSON property speechContext



159
160
161
# File 'generated/google/apis/speech_v1beta1/classes.rb', line 159

def speech_context
  @speech_context
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



180
181
182
183
184
185
186
187
# File 'generated/google/apis/speech_v1beta1/classes.rb', line 180

def update!(**args)
  @max_alternatives = args[:max_alternatives] if args.key?(:max_alternatives)
  @sample_rate = args[:sample_rate] if args.key?(:sample_rate)
  @language_code = args[:language_code] if args.key?(:language_code)
  @speech_context = args[:speech_context] if args.key?(:speech_context)
  @encoding = args[:encoding] if args.key?(:encoding)
  @profanity_filter = args[:profanity_filter] if args.key?(:profanity_filter)
end