Results 21 - 40 of 90

Using the Web Speech API

The Web Speech API provides two distinct areas of functionality — speech recognition, and speech synthesis (also know as text to speech, or tts) — which open up interesting new possibilities for accessibility, and control mechanisms. This article provides a simple introduction to both areas, along with demos.
API Guide recognition speech synthesis Tutorial Using Web Speech API

SpeechRecognition.continuous

The continuous property of the SpeechRecognition interface controls whether continuous results are returned for each recognition, or only a single result.
API continuous Experimental Property recognition Reference speech SpeechRecognition Web Speech API

SpeechRecognition.grammars

The grammars property of the SpeechRecognition interface returns and sets a collection of SpeechGrammar objects that represent the grammars that will be understood by the current SpeechRecognition.
API Experimental grammars Property recognition Reference speech SpeechRecognition Web Speech API

SpeechRecognition.lang

The lang property of the SpeechRecognition interface 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.
API Experimental lang Property recognition Reference speech SpeechRecognition Web Speech API

SpeechRecognition.onaudioend

The onaudioend property of the SpeechRecognition interface represents an event handler that will run when the user agent has finished capturing audio (when the audioend event fires.)
API Experimental onaudioend Property recognition Reference speech SpeechRecognition Web Speech API

SpeechRecognition.onaudiostart

The onaudiostart property of the SpeechRecognition interface represents an event handler that will run when the user agent has started to capture audio (when the audiostart event fires.)
API Experimental onaudiostart Property recognition Reference speech SpeechRecognition Web Speech API

SpeechRecognition.onend

The onend property of the SpeechRecognition interface represents an event handler that will run when the speech recognition service has disconnected (when the end event fires.)
API Experimental onend Property recognition Reference speech SpeechRecognition Web Speech API

SpeechRecognition.onerror

The onerror property of the SpeechRecognition interface represents an event handler that will run when a speech recognition error occurs (when the error event fires.)
API Experimental onerror Property recognition Reference speech SpeechRecognition Web Speech API

SpeechRecognition.onnomatch

The onnomatch property of the SpeechRecognition interface represents an event handler that will run when the speech recognition service returns a final result with no significant recognition (when the nomatch event fires.)
API Experimental onnomatch Property recognition Reference speech SpeechRecognition Web Speech API

SpeechRecognition.onresult

The onresult property of the SpeechRecognition interface represents an event handler that will run 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.)
API Experimental onresult Property recognition Reference speech SpeechRecognition Web Speech API

SpeechRecognition.onsoundend

The onsoundend property of the SpeechRecognition interface represents an event handler that will run when any sound — recognisable speech or not — has stopped being detected (when the soundend event fires.)
API Experimental onsoundend Property recognition Reference speech SpeechRecognition Web Speech API

SpeechRecognition.onsoundstart

The onsoundstart property of the SpeechRecognition interface represents an event handler that will run when any sound — recognisable speech or not — has been detected (when the soundstart event fires.)
API Experimental onsoundstart Property recognition Reference speech SpeechRecognition Web Speech API

SpeechRecognition.onspeechend

The onspeechend property of the SpeechRecognition interface represents an event handler that will run when speech recognised by the speech recognition service has stopped being detected (when the speechend event fires.)
API Experimental onspeechend Property recognition Reference speech SpeechRecognition Web Speech API