Cloud Speech V1 Client - Class SpeechEventType (1.16.0)

Reference documentation and code samples for the Cloud Speech V1 Client class SpeechEventType.

Indicates the type of speech event.

Protobuf type google.cloud.speech.v1.StreamingRecognizeResponse.SpeechEventType

Namespace

Google \ Cloud \ Speech \ V1 \ StreamingRecognizeResponse

Methods

static::name

Parameter
NameDescription
value mixed

static::value

Parameter
NameDescription
name mixed

Constants

SPEECH_EVENT_UNSPECIFIED

Value: 0

No speech event specified.

Generated from protobuf enum SPEECH_EVENT_UNSPECIFIED = 0;

END_OF_SINGLE_UTTERANCE

Value: 1

This event 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. This event is only sent if single_utterance was set to true, and is not used otherwise.

Generated from protobuf enum END_OF_SINGLE_UTTERANCE = 1;

SPEECH_ACTIVITY_BEGIN

Value: 2

This event indicates that the server has detected the beginning of human voice activity in the stream. This event can be returned multiple times if speech starts and stops repeatedly throughout the stream. This event is only sent if voice_activity_events is set to true.

Generated from protobuf enum SPEECH_ACTIVITY_BEGIN = 2;

SPEECH_ACTIVITY_END

Value: 3

This event indicates that the server has detected the end of human voice activity in the stream. This event can be returned multiple times if speech starts and stops repeatedly throughout the stream. This event is only sent if voice_activity_events is set to true.

Generated from protobuf enum SPEECH_ACTIVITY_END = 3;

SPEECH_ACTIVITY_TIMEOUT

Value: 4

This event indicates that the user-set timeout for speech activity begin or end has exceeded. Upon receiving this event, the client is expected to send a half close. Further audio will not be processed.

Generated from protobuf enum SPEECH_ACTIVITY_TIMEOUT = 4;