- 4.48.0 (latest)
- 4.47.0
- 4.46.0
- 4.44.0
- 4.43.0
- 4.42.0
- 4.41.0
- 4.40.0
- 4.39.0
- 4.38.0
- 4.37.0
- 4.36.0
- 4.35.0
- 4.34.0
- 4.32.0
- 4.31.0
- 4.30.0
- 4.29.0
- 4.28.0
- 4.27.0
- 4.26.0
- 4.25.0
- 4.24.0
- 4.23.0
- 4.22.0
- 4.19.0
- 4.18.0
- 4.17.0
- 4.16.0
- 4.15.0
- 4.14.0
- 4.13.0
- 4.12.0
- 4.11.0
- 4.10.0
- 4.9.0
- 4.8.0
- 4.7.0
- 4.6.0
- 4.4.0
- 4.3.0
- 4.2.0
- 4.1.0
- 4.0.0
- 3.0.0
- 2.6.1
- 2.5.9
- 2.4.0
- 2.3.0
- 2.2.15
public interface RecognitionConfigOrBuilder extends MessageOrBuilder
Implements
MessageOrBuilderMethods
getEncoding()
public abstract RecognitionConfig.AudioEncoding getEncoding()
Required Encoding of audio data sent in all RecognitionAudio
messages.
.google.cloud.speech.v1beta1.RecognitionConfig.AudioEncoding encoding = 1;
Returns | |
---|---|
Type | Description |
RecognitionConfig.AudioEncoding |
getEncodingValue()
public abstract int getEncodingValue()
Required Encoding of audio data sent in all RecognitionAudio
messages.
.google.cloud.speech.v1beta1.RecognitionConfig.AudioEncoding encoding = 1;
Returns | |
---|---|
Type | Description |
int |
getLanguageCode()
public abstract String getLanguageCode()
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.
string language_code = 3;
Returns | |
---|---|
Type | Description |
String |
getLanguageCodeBytes()
public abstract ByteString getLanguageCodeBytes()
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.
string language_code = 3;
Returns | |
---|---|
Type | Description |
ByteString |
getMaxAlternatives()
public abstract int getMaxAlternatives()
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.
int32 max_alternatives = 4;
Returns | |
---|---|
Type | Description |
int |
getProfanityFilter()
public abstract boolean getProfanityFilter()
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.
bool profanity_filter = 5;
Returns | |
---|---|
Type | Description |
boolean |
getSampleRate()
public abstract int getSampleRate()
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).
int32 sample_rate = 2;
Returns | |
---|---|
Type | Description |
int |
getSpeechContext()
public abstract SpeechContext getSpeechContext()
Optional A means to provide context to assist the speech recognition.
.google.cloud.speech.v1beta1.SpeechContext speech_context = 6;
Returns | |
---|---|
Type | Description |
SpeechContext |
getSpeechContextOrBuilder()
public abstract SpeechContextOrBuilder getSpeechContextOrBuilder()
Optional A means to provide context to assist the speech recognition.
.google.cloud.speech.v1beta1.SpeechContext speech_context = 6;
Returns | |
---|---|
Type | Description |
SpeechContextOrBuilder |
hasSpeechContext()
public abstract boolean hasSpeechContext()
Optional A means to provide context to assist the speech recognition.
.google.cloud.speech.v1beta1.SpeechContext speech_context = 6;
Returns | |
---|---|
Type | Description |
boolean |