SpeechRecognition

Wisej.Web.Ext.Speech.SpeechRecognition

Namespace: Wisej.Web.Ext.Speech

Assembly: Wisej.Web.Ext.Speech (3.2.0.0)

The SpeechRecognition interface of Web Speech API allows JavaScript to have access to a browser's audio stream and convert it to text.

public class SpeechRecognition : Component, IExtenderProvider

Constructors

Properties

Boolean: Controls whether continuous results are returned for each recognition, or only a single result. (Default: False)

Boolean: Enables or disables the this SpeechRecognition extender. (Default: False)

String[]: Returns and sets a collection of grammar definitions - using the JSpeech Grammar Format (JSGF) https://www.w3.org/TR/jsgf/.

Boolean: Controls whether interim results should be returned (true) or not (false.) Interim results are results that are not yet final (e.g. the SpeechRecognitionResult.isFinal property is false.) (Default: False)

String: Returns and sets the language of the current SpeechRecognition. If not specified, this defaults to the HTML lang attribute value, or the user agent's language setting if that isn't set either. (Default: null)

Int32: Returns and sets the maximum number of alternatives provided per each speech recognition result. (Default: 1)

Methods

Stops the speech recognition service from listening to incoming audio, and doesn't attempt to return a result.

Returns true if SpeechRecognition can offer an extender property to the specified target component.

ParameterTypeDescription

target

The target object to add an extender property to.

Returns: Boolean. true if the SpeechRecognition class can offer one or more extender properties; otherwise, false.

Removes all speech extenders.

SpeechRecognition properties.

ParameterTypeDescription

control

The Control for which to retrieve the speech properties.

Returns: Properties. A Properties instance with the SpeechRecognition properties.

Assigns the speech recognition properties to the control.

ParameterTypeDescription

control

The control to rotate.

properties

An instance of Properties defining the speech listeners.

Starts the speech recognition service listening to incoming audio.

Stops the speech recognition service from listening to incoming audio, and attempts to return a result using the audio captured so far.

Events

SpeechRecognitionEventHandler Occurs when a speech recognition error is detected.

EventHandler Occurs when the speech recognition service returns a final result with no significant recognition (when the nomatch event fires.)

SpeechRecognitionEventHandler Fired when the speech recognition service returns a result — a word or phrase has been positively recognized and this has been communicated back to the app (when the result event fires.)

EventHandler Occurs when speech recognised by the speech recognition service has stopped being detected (when the speechend event fires.)

EventHandler Occurs when sound recognised by the speech recognition service as speech has been detected.

Last updated