Reference documentation and code samples for the Cloud Speech V2 Client class StreamingRecognizeResponse.
StreamingRecognizeResponse
is the only message returned to the client by
StreamingRecognize
. A series of zero or more StreamingRecognizeResponse
messages are streamed back to the client. If there is no recognizable
audio then no messages are streamed back to the client.
Here are some examples of StreamingRecognizeResponse
s that might
be returned while processing audio:
- results { alternatives { transcript: "tube" } stability: 0.01 }
- results { alternatives { transcript: "to be a" } stability: 0.01 }
- results { alternatives { transcript: "to be" } stability: 0.9 } results { alternatives { transcript: " or not to be" } stability: 0.01 }
- results { alternatives { transcript: "to be or not to be" confidence: 0.92 } alternatives { transcript: "to bee or not to bee" } is_final: true }
- results { alternatives { transcript: " that's" } stability: 0.01 }
- results { alternatives { transcript: " that is" } stability: 0.9 } results { alternatives { transcript: " the question" } stability: 0.01 }
- results { alternatives { transcript: " that is the question" confidence: 0.98 } alternatives { transcript: " that was the question" } is_final: true } Notes:
- Only two of the above responses #4 and #7 contain final results; they are
indicated by
is_final: true
. Concatenating these together generates the full transcript: "to be or not to be that is the question". - The others contain interim
results
. #3 and #6 contain two interimresults
: the first portion has a high stability and is less likely to change; the second portion has a low stability and is very likely to change. A UI designer might choose to show only high stabilityresults
. - The specific
stability
andconfidence
values shown above are only for illustrative purposes. Actual values may vary. - In each response, only one of these fields will be set:
error
,speech_event_type
, or one or more (repeated)results
.
Generated from protobuf message google.cloud.speech.v2.StreamingRecognizeResponse
Methods
__construct
Constructor.
Parameters | |
---|---|
Name | Description |
data |
array
Optional. Data for populating the Message object. |
↳ results |
array<Google\Cloud\Speech\V2\StreamingRecognitionResult>
This repeated list contains zero or more results that correspond to consecutive portions of the audio currently being processed. It contains zero or one is_final= |
↳ speech_event_type |
int
Indicates the type of speech event. |
↳ speech_event_offset |
Google\Protobuf\Duration
Time offset between the beginning of the audio and event emission. |
↳ metadata |
Google\Cloud\Speech\V2\RecognitionResponseMetadata
Metadata about the recognition. |
getResults
This repeated list contains zero or more results that correspond to consecutive portions of the audio currently being processed.
It contains zero or one
is_final=true
result (the newly settled portion), followed by zero or more
is_final=false
results (the interim results).
Generated from protobuf field repeated .google.cloud.speech.v2.StreamingRecognitionResult results = 6;
Returns | |
---|---|
Type | Description |
Google\Protobuf\Internal\RepeatedField |
setResults
This repeated list contains zero or more results that correspond to consecutive portions of the audio currently being processed.
It contains zero or one
is_final=true
result (the newly settled portion), followed by zero or more
is_final=false
results (the interim results).
Generated from protobuf field repeated .google.cloud.speech.v2.StreamingRecognitionResult results = 6;
Parameter | |
---|---|
Name | Description |
var |
array<Google\Cloud\Speech\V2\StreamingRecognitionResult>
|
Returns | |
---|---|
Type | Description |
$this |
getSpeechEventType
Indicates the type of speech event.
Generated from protobuf field .google.cloud.speech.v2.StreamingRecognizeResponse.SpeechEventType speech_event_type = 3;
Returns | |
---|---|
Type | Description |
int |
setSpeechEventType
Indicates the type of speech event.
Generated from protobuf field .google.cloud.speech.v2.StreamingRecognizeResponse.SpeechEventType speech_event_type = 3;
Parameter | |
---|---|
Name | Description |
var |
int
|
Returns | |
---|---|
Type | Description |
$this |
getSpeechEventOffset
Time offset between the beginning of the audio and event emission.
Generated from protobuf field .google.protobuf.Duration speech_event_offset = 7;
Returns | |
---|---|
Type | Description |
Google\Protobuf\Duration|null |
hasSpeechEventOffset
clearSpeechEventOffset
setSpeechEventOffset
Time offset between the beginning of the audio and event emission.
Generated from protobuf field .google.protobuf.Duration speech_event_offset = 7;
Parameter | |
---|---|
Name | Description |
var |
Google\Protobuf\Duration
|
Returns | |
---|---|
Type | Description |
$this |
getMetadata
Metadata about the recognition.
Generated from protobuf field .google.cloud.speech.v2.RecognitionResponseMetadata metadata = 5;
Returns | |
---|---|
Type | Description |
Google\Cloud\Speech\V2\RecognitionResponseMetadata|null |
hasMetadata
clearMetadata
setMetadata
Metadata about the recognition.
Generated from protobuf field .google.cloud.speech.v2.RecognitionResponseMetadata metadata = 5;
Parameter | |
---|---|
Name | Description |
var |
Google\Cloud\Speech\V2\RecognitionResponseMetadata
|
Returns | |
---|---|
Type | Description |
$this |