class StreamingRecognitionConfig extends Message

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

Protobuf type Google\Cloud\Speech\V1beta1\StreamingRecognitionConfig

Methods

__construct()

No description

getConfig()

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

setConfig(RecognitionConfig $var)

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

bool
getSingleUtterance()

Optional If false or omitted, the recognizer will perform continuous recognition (continuing to wait for and process audio even if the user pauses speaking) until the client closes the input stream (gRPC API) or until the maximum time limit has been reached. May return multiple StreamingRecognitionResults with the is_final flag set to true.

setSingleUtterance(bool $var)

Optional If false or omitted, the recognizer will perform continuous recognition (continuing to wait for and process audio even if the user pauses speaking) until the client closes the input stream (gRPC API) or until the maximum time limit has been reached. May return multiple StreamingRecognitionResults with the is_final flag set to true.

bool
getInterimResults()

Optional If true, interim results (tentative hypotheses) may be returned as they become available (these interim results are indicated with the is_final=false flag).

setInterimResults(bool $var)

Optional If true, interim results (tentative hypotheses) may be returned as they become available (these interim results are indicated with the is_final=false flag).

Details

at line 50
__construct()

at line 62
RecognitionConfig getConfig()

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

Generated from protobuf field .google.cloud.speech.v1beta1.RecognitionConfig config = 1;

Return Value

RecognitionConfig

at line 74
setConfig(RecognitionConfig $var)

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

Generated from protobuf field .google.cloud.speech.v1beta1.RecognitionConfig config = 1;

Parameters

RecognitionConfig $var

at line 94
bool getSingleUtterance()

Optional If false or omitted, the recognizer will perform continuous recognition (continuing to wait for and process audio even if the user pauses speaking) until the client closes the input stream (gRPC API) or until the maximum time limit has been reached. May return multiple StreamingRecognitionResults with the is_final flag set to true.

If true, the recognizer will detect a single spoken utterance. When it detects that the user has paused or stopped speaking, it will return an END_OF_UTTERANCE event and cease recognition. It will return no more than one StreamingRecognitionResult with the is_final flag set to true.

Generated from protobuf field bool single_utterance = 2;

Return Value

bool

at line 113
setSingleUtterance(bool $var)

Optional If false or omitted, the recognizer will perform continuous recognition (continuing to wait for and process audio even if the user pauses speaking) until the client closes the input stream (gRPC API) or until the maximum time limit has been reached. May return multiple StreamingRecognitionResults with the is_final flag set to true.

If true, the recognizer will detect a single spoken utterance. When it detects that the user has paused or stopped speaking, it will return an END_OF_UTTERANCE event and cease recognition. It will return no more than one StreamingRecognitionResult with the is_final flag set to true.

Generated from protobuf field bool single_utterance = 2;

Parameters

bool $var

at line 128
bool getInterimResults()

Optional If true, interim results (tentative hypotheses) may be returned as they become available (these interim results are indicated with the is_final=false flag).

If false or omitted, only is_final=true result(s) are returned.

Generated from protobuf field bool interim_results = 3;

Return Value

bool

at line 142
setInterimResults(bool $var)

Optional If true, interim results (tentative hypotheses) may be returned as they become available (these interim results are indicated with the is_final=false flag).

If false or omitted, only is_final=true result(s) are returned.

Generated from protobuf field bool interim_results = 3;

Parameters

bool $var