class StreamingRecognizeResponse_EndpointerType

Indicates the type of endpointer event.

Protobuf enum Google\Cloud\Speech\V1beta1\StreamingRecognizeResponse\EndpointerType

Constants

ENDPOINTER_EVENT_UNSPECIFIED

No endpointer event specified.

Generated from protobuf enum ENDPOINTER_EVENT_UNSPECIFIED = 0;

START_OF_SPEECH

Speech has been detected in the audio stream, and the service is beginning to process it.

Generated from protobuf enum START_OF_SPEECH = 1;

END_OF_SPEECH

Speech has ceased to be detected in the audio stream. (For example, the user may have paused after speaking.) If single_utterance is false, the service will continue to process audio, and if subsequent speech is detected, will send another START_OF_SPEECH event.

Generated from protobuf enum END_OF_SPEECH = 2;

END_OF_AUDIO

This event is sent after the client has half-closed the input stream gRPC connection and the server has received all of the audio. (The server may still be processing the audio and may subsequently return additional results.)

Generated from protobuf enum END_OF_AUDIO = 3;

END_OF_UTTERANCE

This event is only sent when single_utterance is true. It indicates that the server has detected the end of the user's speech utterance and expects no additional speech. Therefore, the server will not process additional audio (although it may subsequently return additional results). The client should stop sending additional audio data, half-close the gRPC connection, and wait for any additional results until the server closes the gRPC connection.

Generated from protobuf enum END_OF_UTTERANCE = 4;