The SpeechRecognition interface of the Web Speech API is the interface for the recognition service; this also handles the sent from the recognition service.
The SpeechRecognition interface of the Web Speech API is the interface for the recognition service; this also handles the sent from the recognition service.
(abort this)
Method.
The abort() method of the Web Speech API stops the speech recognition
from listening to incoming audio, and doesn't attempt to return
speech.SpeechRecognitionResult
.
mySpeechRecognition.abort();
See also: https://developer.mozilla.org/en-US/docs/Web/API/SpeechRecognition/abort
Method. The abort() method of the Web Speech API stops the speech recognition from listening to incoming audio, and doesn't attempt to return `speech.SpeechRecognitionResult`. `mySpeechRecognition.abort();` See also: `https://developer.mozilla.org/en-US/docs/Web/API/SpeechRecognition/abort`
Constructor.
The SpeechRecognition() constructor creates a new speech.SpeechRecognition
object instance.
None.
See also: https://developer.mozilla.org/en-US/docs/Web/API/SpeechRecognition/SpeechRecognition
Constructor. The SpeechRecognition() constructor creates a new `speech.SpeechRecognition` object instance. None. See also: `https://developer.mozilla.org/en-US/docs/Web/API/SpeechRecognition/SpeechRecognition`
(continuous this)
Property.
The continuous property of the speech.SpeechRecognition
interface
whether continuous results are returned for each recognition,
only a single result.
var myContinuous = mySpeechRecognition.continuous; mySpeechRecognition.continuous = true;
See also: https://developer.mozilla.org/en-US/docs/Web/API/SpeechRecognition/continuous
Property. The continuous property of the `speech.SpeechRecognition` interface whether continuous results are returned for each recognition, only a single result. `var myContinuous = mySpeechRecognition.continuous; mySpeechRecognition.continuous = true;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/SpeechRecognition/continuous`
(grammars this)
Property.
The grammars property of the speech.SpeechRecognition
interface
and sets a collection of speech.SpeechGrammar
objects that
the grammars that will be understood by the current SpeechRecognition.
var myGrammars = mySpeechRecognition.grammars; mySpeechRecognition.grammars = mySpeechGrammarList;
See also: https://developer.mozilla.org/en-US/docs/Web/API/SpeechRecognition/grammars
Property. The grammars property of the `speech.SpeechRecognition` interface and sets a collection of `speech.SpeechGrammar` objects that the grammars that will be understood by the current SpeechRecognition. `var myGrammars = mySpeechRecognition.grammars; mySpeechRecognition.grammars = mySpeechGrammarList;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/SpeechRecognition/grammars`
(interim-results this)
Property.
The interimResults property of the speech.SpeechRecognition
controls whether interim results should be returned (true) or
(false.) Interim results are results that are not yet final (e.g.
speech.SpeechRecognitionResult.isFinal
property is false.)
var myInterimResult = mySpeechRecognition.interimResults; mySpeechRecognition.interimResults = false;
See also: https://developer.mozilla.org/en-US/docs/Web/API/SpeechRecognition/interimResults
Property. The interimResults property of the `speech.SpeechRecognition` controls whether interim results should be returned (true) or (false.) Interim results are results that are not yet final (e.g. `speech.SpeechRecognitionResult.isFinal` property is false.) `var myInterimResult = mySpeechRecognition.interimResults; mySpeechRecognition.interimResults = false;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/SpeechRecognition/interimResults`
(lang this)
Property.
The lang property of the speech.SpeechRecognition
interface
and sets the language of the current SpeechRecognition. If not
this defaults to the HTML lang attribute value, or the user agent's
setting if that isn't set either.
var myLang = mySpeechRecognition.lang; mySpeechRecognition.lang = 'en-US';
See also: https://developer.mozilla.org/en-US/docs/Web/API/SpeechRecognition/lang
Property. The lang property of the `speech.SpeechRecognition` interface and sets the language of the current SpeechRecognition. If not this defaults to the HTML lang attribute value, or the user agent's setting if that isn't set either. `var myLang = mySpeechRecognition.lang; mySpeechRecognition.lang = 'en-US';` See also: `https://developer.mozilla.org/en-US/docs/Web/API/SpeechRecognition/lang`
(max-alternatives this)
Property.
The maxAlternatives property of the speech.SpeechRecognition
sets the maximum number of speech.SpeechRecognitionAlternative
s
per speech.SpeechRecognitionResult
.
var myMaxAlternativeNumber = mySpeechRecognition.maxAlternatives; mySpeechRecognition.maxAlternatives = 2;
See also: https://developer.mozilla.org/en-US/docs/Web/API/SpeechRecognition/maxAlternatives
Property. The maxAlternatives property of the `speech.SpeechRecognition` sets the maximum number of `speech.SpeechRecognitionAlternative`s per `speech.SpeechRecognitionResult`. `var myMaxAlternativeNumber = mySpeechRecognition.maxAlternatives; mySpeechRecognition.maxAlternatives = 2;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/SpeechRecognition/maxAlternatives`
(onaudioend this)
Property.
The onaudioend property of the speech.SpeechRecognition
interface
an event handler that will run when the user agent has finished
audio (when the audioend event fires.)
mySpeechRecognition.onaudioend = function() { ... };
See also: https://developer.mozilla.org/en-US/docs/Web/API/SpeechRecognition/onaudioend
Property. The onaudioend property of the `speech.SpeechRecognition` interface an event handler that will run when the user agent has finished audio (when the audioend event fires.) `mySpeechRecognition.onaudioend = function() { ... };` See also: `https://developer.mozilla.org/en-US/docs/Web/API/SpeechRecognition/onaudioend`
(onaudiostart this)
Property.
The onaudiostart property of the speech.SpeechRecognition
interface
an event handler that will run when the user agent has started
capture audio (when the audiostart event fires.)
mySpeechRecognition.onaudiostart = function() { ... };
See also: https://developer.mozilla.org/en-US/docs/Web/API/SpeechRecognition/onaudiostart
Property. The onaudiostart property of the `speech.SpeechRecognition` interface an event handler that will run when the user agent has started capture audio (when the audiostart event fires.) `mySpeechRecognition.onaudiostart = function() { ... };` See also: `https://developer.mozilla.org/en-US/docs/Web/API/SpeechRecognition/onaudiostart`
(onend this)
Property.
The onend property of the speech.SpeechRecognition
interface
an event handler that will run when the speech recognition service
disconnected (when the end event fires.)
mySpeechRecognition.onend = function() { ... };
See also: https://developer.mozilla.org/en-US/docs/Web/API/SpeechRecognition/onend
Property. The onend property of the `speech.SpeechRecognition` interface an event handler that will run when the speech recognition service disconnected (when the end event fires.) `mySpeechRecognition.onend = function() { ... };` See also: `https://developer.mozilla.org/en-US/docs/Web/API/SpeechRecognition/onend`
(onerror this)
Property.
The onerror property of the speech.SpeechRecognition
interface
an event handler that will run when a speech recognition error
(when the error event fires.)
mySpeechRecognition.onerror = function() { ... };
See also: https://developer.mozilla.org/en-US/docs/Web/API/SpeechRecognition/onerror
Property. The onerror property of the `speech.SpeechRecognition` interface an event handler that will run when a speech recognition error (when the error event fires.) `mySpeechRecognition.onerror = function() { ... };` See also: `https://developer.mozilla.org/en-US/docs/Web/API/SpeechRecognition/onerror`
(onnomatch this)
Property.
The onnomatch property of the speech.SpeechRecognition
interface
an event handler that will run when the speech recognition service
a final result with no significant recognition (when the nomatch
fires.)
mySpeechRecognition.onnomatch = function() { ... };
See also: https://developer.mozilla.org/en-US/docs/Web/API/SpeechRecognition/onnomatch
Property. The onnomatch property of the `speech.SpeechRecognition` interface an event handler that will run when the speech recognition service a final result with no significant recognition (when the nomatch fires.) `mySpeechRecognition.onnomatch = function() { ... };` See also: `https://developer.mozilla.org/en-US/docs/Web/API/SpeechRecognition/onnomatch`
(onresult this)
Property.
The onresult property of the speech.SpeechRecognition
interface
an event handler that will run when the speech recognition service
a result — a word or phrase has been positively recognized and
has been communicated back to the app (when the web.result
mySpeechRecognition.onresult = function() { ... };
See also: https://developer.mozilla.org/en-US/docs/Web/API/SpeechRecognition/onresult
Property. The onresult property of the `speech.SpeechRecognition` interface an event handler that will run when the speech recognition service a result — a word or phrase has been positively recognized and has been communicated back to the app (when the `web.result` `mySpeechRecognition.onresult = function() { ... };` See also: `https://developer.mozilla.org/en-US/docs/Web/API/SpeechRecognition/onresult`
(onsoundend this)
Property.
The onsoundend property of the speech.SpeechRecognition
interface
an event handler that will run when any sound — recognisable
or not — has stopped being detected (when the soundend event
mySpeechRecognition.onsoundend = function() { ... };
See also: https://developer.mozilla.org/en-US/docs/Web/API/SpeechRecognition/onsoundend
Property. The onsoundend property of the `speech.SpeechRecognition` interface an event handler that will run when any sound — recognisable or not — has stopped being detected (when the soundend event `mySpeechRecognition.onsoundend = function() { ... };` See also: `https://developer.mozilla.org/en-US/docs/Web/API/SpeechRecognition/onsoundend`
(onsoundstart this)
Property.
The onsoundstart property of the speech.SpeechRecognition
interface
an event handler that will run when any sound — recognisable
or not — has been detected (when the soundstart event fires.)
mySpeechRecognition.onsoundstart = function() { ... };
See also: https://developer.mozilla.org/en-US/docs/Web/API/SpeechRecognition/onsoundstart
Property. The onsoundstart property of the `speech.SpeechRecognition` interface an event handler that will run when any sound — recognisable or not — has been detected (when the soundstart event fires.) `mySpeechRecognition.onsoundstart = function() { ... };` See also: `https://developer.mozilla.org/en-US/docs/Web/API/SpeechRecognition/onsoundstart`
(onspeechend this)
Property.
The onspeechend property of the speech.SpeechRecognition
interface
an event handler that will run when speech recognised by the
recognition service has stopped being detected (when the speechend
fires.)
mySpeechRecognition.onspeechend = function() { ... };
See also: https://developer.mozilla.org/en-US/docs/Web/API/SpeechRecognition/onspeechend
Property. The onspeechend property of the `speech.SpeechRecognition` interface an event handler that will run when speech recognised by the recognition service has stopped being detected (when the speechend fires.) `mySpeechRecognition.onspeechend = function() { ... };` See also: `https://developer.mozilla.org/en-US/docs/Web/API/SpeechRecognition/onspeechend`
(onspeechstart this)
Property.
The onspeechstart property of the speech.SpeechRecognition
represents an event handler that will run when sound recognised
the speech recognition service as speech has been detected (when
speechstart event fires.)
mySpeechRecognition.onspeechstart = function() { ... };
See also: https://developer.mozilla.org/en-US/docs/Web/API/SpeechRecognition/onspeechstart
Property. The onspeechstart property of the `speech.SpeechRecognition` represents an event handler that will run when sound recognised the speech recognition service as speech has been detected (when speechstart event fires.) `mySpeechRecognition.onspeechstart = function() { ... };` See also: `https://developer.mozilla.org/en-US/docs/Web/API/SpeechRecognition/onspeechstart`
(onstart this)
Property.
The onstart property of the speech.SpeechRecognition
interface
an event handler that will run when the speech recognition service
begun listening to incoming audio with intent to recognize grammars
with the current SpeechRecognition (when the start event fires.)
mySpeechRecognition.onstart = function() { ... };
See also: https://developer.mozilla.org/en-US/docs/Web/API/SpeechRecognition/onstart
Property. The onstart property of the `speech.SpeechRecognition` interface an event handler that will run when the speech recognition service begun listening to incoming audio with intent to recognize grammars with the current SpeechRecognition (when the start event fires.) `mySpeechRecognition.onstart = function() { ... };` See also: `https://developer.mozilla.org/en-US/docs/Web/API/SpeechRecognition/onstart`
(service-uri this)
Property.
The serviceURI property of the speech.SpeechRecognition
interface
the location of the speech recognition service used by the current
to handle the actual recognition. The default is the user agent's
speech service.
var myServiceURI = mySpeechRecognition.serviceURI; mySpeechRecognition.serviceURI = 'path/to/my/service/';
See also: https://developer.mozilla.org/en-US/docs/Web/API/SpeechRecognition/serviceURI
Property. The serviceURI property of the `speech.SpeechRecognition` interface the location of the speech recognition service used by the current to handle the actual recognition. The default is the user agent's speech service. `var myServiceURI = mySpeechRecognition.serviceURI; mySpeechRecognition.serviceURI = 'path/to/my/service/';` See also: `https://developer.mozilla.org/en-US/docs/Web/API/SpeechRecognition/serviceURI`
(set-continuous! this val)
Property.
The continuous property of the speech.SpeechRecognition
interface
whether continuous results are returned for each recognition,
only a single result.
var myContinuous = mySpeechRecognition.continuous; mySpeechRecognition.continuous = true;
See also: https://developer.mozilla.org/en-US/docs/Web/API/SpeechRecognition/continuous
Property. The continuous property of the `speech.SpeechRecognition` interface whether continuous results are returned for each recognition, only a single result. `var myContinuous = mySpeechRecognition.continuous; mySpeechRecognition.continuous = true;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/SpeechRecognition/continuous`
(set-grammars! this val)
Property.
The grammars property of the speech.SpeechRecognition
interface
and sets a collection of speech.SpeechGrammar
objects that
the grammars that will be understood by the current SpeechRecognition.
var myGrammars = mySpeechRecognition.grammars; mySpeechRecognition.grammars = mySpeechGrammarList;
See also: https://developer.mozilla.org/en-US/docs/Web/API/SpeechRecognition/grammars
Property. The grammars property of the `speech.SpeechRecognition` interface and sets a collection of `speech.SpeechGrammar` objects that the grammars that will be understood by the current SpeechRecognition. `var myGrammars = mySpeechRecognition.grammars; mySpeechRecognition.grammars = mySpeechGrammarList;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/SpeechRecognition/grammars`
(set-interim-results! this val)
Property.
The interimResults property of the speech.SpeechRecognition
controls whether interim results should be returned (true) or
(false.) Interim results are results that are not yet final (e.g.
speech.SpeechRecognitionResult.isFinal
property is false.)
var myInterimResult = mySpeechRecognition.interimResults; mySpeechRecognition.interimResults = false;
See also: https://developer.mozilla.org/en-US/docs/Web/API/SpeechRecognition/interimResults
Property. The interimResults property of the `speech.SpeechRecognition` controls whether interim results should be returned (true) or (false.) Interim results are results that are not yet final (e.g. `speech.SpeechRecognitionResult.isFinal` property is false.) `var myInterimResult = mySpeechRecognition.interimResults; mySpeechRecognition.interimResults = false;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/SpeechRecognition/interimResults`
(set-lang! this val)
Property.
The lang property of the speech.SpeechRecognition
interface
and sets the language of the current SpeechRecognition. If not
this defaults to the HTML lang attribute value, or the user agent's
setting if that isn't set either.
var myLang = mySpeechRecognition.lang; mySpeechRecognition.lang = 'en-US';
See also: https://developer.mozilla.org/en-US/docs/Web/API/SpeechRecognition/lang
Property. The lang property of the `speech.SpeechRecognition` interface and sets the language of the current SpeechRecognition. If not this defaults to the HTML lang attribute value, or the user agent's setting if that isn't set either. `var myLang = mySpeechRecognition.lang; mySpeechRecognition.lang = 'en-US';` See also: `https://developer.mozilla.org/en-US/docs/Web/API/SpeechRecognition/lang`
(set-max-alternatives! this val)
Property.
The maxAlternatives property of the speech.SpeechRecognition
sets the maximum number of speech.SpeechRecognitionAlternative
s
per speech.SpeechRecognitionResult
.
var myMaxAlternativeNumber = mySpeechRecognition.maxAlternatives; mySpeechRecognition.maxAlternatives = 2;
See also: https://developer.mozilla.org/en-US/docs/Web/API/SpeechRecognition/maxAlternatives
Property. The maxAlternatives property of the `speech.SpeechRecognition` sets the maximum number of `speech.SpeechRecognitionAlternative`s per `speech.SpeechRecognitionResult`. `var myMaxAlternativeNumber = mySpeechRecognition.maxAlternatives; mySpeechRecognition.maxAlternatives = 2;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/SpeechRecognition/maxAlternatives`
(set-onaudioend! this val)
Property.
The onaudioend property of the speech.SpeechRecognition
interface
an event handler that will run when the user agent has finished
audio (when the audioend event fires.)
mySpeechRecognition.onaudioend = function() { ... };
See also: https://developer.mozilla.org/en-US/docs/Web/API/SpeechRecognition/onaudioend
Property. The onaudioend property of the `speech.SpeechRecognition` interface an event handler that will run when the user agent has finished audio (when the audioend event fires.) `mySpeechRecognition.onaudioend = function() { ... };` See also: `https://developer.mozilla.org/en-US/docs/Web/API/SpeechRecognition/onaudioend`
(set-onaudiostart! this val)
Property.
The onaudiostart property of the speech.SpeechRecognition
interface
an event handler that will run when the user agent has started
capture audio (when the audiostart event fires.)
mySpeechRecognition.onaudiostart = function() { ... };
See also: https://developer.mozilla.org/en-US/docs/Web/API/SpeechRecognition/onaudiostart
Property. The onaudiostart property of the `speech.SpeechRecognition` interface an event handler that will run when the user agent has started capture audio (when the audiostart event fires.) `mySpeechRecognition.onaudiostart = function() { ... };` See also: `https://developer.mozilla.org/en-US/docs/Web/API/SpeechRecognition/onaudiostart`
(set-onend! this val)
Property.
The onend property of the speech.SpeechRecognition
interface
an event handler that will run when the speech recognition service
disconnected (when the end event fires.)
mySpeechRecognition.onend = function() { ... };
See also: https://developer.mozilla.org/en-US/docs/Web/API/SpeechRecognition/onend
Property. The onend property of the `speech.SpeechRecognition` interface an event handler that will run when the speech recognition service disconnected (when the end event fires.) `mySpeechRecognition.onend = function() { ... };` See also: `https://developer.mozilla.org/en-US/docs/Web/API/SpeechRecognition/onend`
(set-onerror! this val)
Property.
The onerror property of the speech.SpeechRecognition
interface
an event handler that will run when a speech recognition error
(when the error event fires.)
mySpeechRecognition.onerror = function() { ... };
See also: https://developer.mozilla.org/en-US/docs/Web/API/SpeechRecognition/onerror
Property. The onerror property of the `speech.SpeechRecognition` interface an event handler that will run when a speech recognition error (when the error event fires.) `mySpeechRecognition.onerror = function() { ... };` See also: `https://developer.mozilla.org/en-US/docs/Web/API/SpeechRecognition/onerror`
(set-onnomatch! this val)
Property.
The onnomatch property of the speech.SpeechRecognition
interface
an event handler that will run when the speech recognition service
a final result with no significant recognition (when the nomatch
fires.)
mySpeechRecognition.onnomatch = function() { ... };
See also: https://developer.mozilla.org/en-US/docs/Web/API/SpeechRecognition/onnomatch
Property. The onnomatch property of the `speech.SpeechRecognition` interface an event handler that will run when the speech recognition service a final result with no significant recognition (when the nomatch fires.) `mySpeechRecognition.onnomatch = function() { ... };` See also: `https://developer.mozilla.org/en-US/docs/Web/API/SpeechRecognition/onnomatch`
(set-onresult! this val)
Property.
The onresult property of the speech.SpeechRecognition
interface
an event handler that will run when the speech recognition service
a result — a word or phrase has been positively recognized and
has been communicated back to the app (when the web.result
mySpeechRecognition.onresult = function() { ... };
See also: https://developer.mozilla.org/en-US/docs/Web/API/SpeechRecognition/onresult
Property. The onresult property of the `speech.SpeechRecognition` interface an event handler that will run when the speech recognition service a result — a word or phrase has been positively recognized and has been communicated back to the app (when the `web.result` `mySpeechRecognition.onresult = function() { ... };` See also: `https://developer.mozilla.org/en-US/docs/Web/API/SpeechRecognition/onresult`
(set-onsoundend! this val)
Property.
The onsoundend property of the speech.SpeechRecognition
interface
an event handler that will run when any sound — recognisable
or not — has stopped being detected (when the soundend event
mySpeechRecognition.onsoundend = function() { ... };
See also: https://developer.mozilla.org/en-US/docs/Web/API/SpeechRecognition/onsoundend
Property. The onsoundend property of the `speech.SpeechRecognition` interface an event handler that will run when any sound — recognisable or not — has stopped being detected (when the soundend event `mySpeechRecognition.onsoundend = function() { ... };` See also: `https://developer.mozilla.org/en-US/docs/Web/API/SpeechRecognition/onsoundend`
(set-onsoundstart! this val)
Property.
The onsoundstart property of the speech.SpeechRecognition
interface
an event handler that will run when any sound — recognisable
or not — has been detected (when the soundstart event fires.)
mySpeechRecognition.onsoundstart = function() { ... };
See also: https://developer.mozilla.org/en-US/docs/Web/API/SpeechRecognition/onsoundstart
Property. The onsoundstart property of the `speech.SpeechRecognition` interface an event handler that will run when any sound — recognisable or not — has been detected (when the soundstart event fires.) `mySpeechRecognition.onsoundstart = function() { ... };` See also: `https://developer.mozilla.org/en-US/docs/Web/API/SpeechRecognition/onsoundstart`
(set-onspeechend! this val)
Property.
The onspeechend property of the speech.SpeechRecognition
interface
an event handler that will run when speech recognised by the
recognition service has stopped being detected (when the speechend
fires.)
mySpeechRecognition.onspeechend = function() { ... };
See also: https://developer.mozilla.org/en-US/docs/Web/API/SpeechRecognition/onspeechend
Property. The onspeechend property of the `speech.SpeechRecognition` interface an event handler that will run when speech recognised by the recognition service has stopped being detected (when the speechend fires.) `mySpeechRecognition.onspeechend = function() { ... };` See also: `https://developer.mozilla.org/en-US/docs/Web/API/SpeechRecognition/onspeechend`
(set-onspeechstart! this val)
Property.
The onspeechstart property of the speech.SpeechRecognition
represents an event handler that will run when sound recognised
the speech recognition service as speech has been detected (when
speechstart event fires.)
mySpeechRecognition.onspeechstart = function() { ... };
See also: https://developer.mozilla.org/en-US/docs/Web/API/SpeechRecognition/onspeechstart
Property. The onspeechstart property of the `speech.SpeechRecognition` represents an event handler that will run when sound recognised the speech recognition service as speech has been detected (when speechstart event fires.) `mySpeechRecognition.onspeechstart = function() { ... };` See also: `https://developer.mozilla.org/en-US/docs/Web/API/SpeechRecognition/onspeechstart`
(set-onstart! this val)
Property.
The onstart property of the speech.SpeechRecognition
interface
an event handler that will run when the speech recognition service
begun listening to incoming audio with intent to recognize grammars
with the current SpeechRecognition (when the start event fires.)
mySpeechRecognition.onstart = function() { ... };
See also: https://developer.mozilla.org/en-US/docs/Web/API/SpeechRecognition/onstart
Property. The onstart property of the `speech.SpeechRecognition` interface an event handler that will run when the speech recognition service begun listening to incoming audio with intent to recognize grammars with the current SpeechRecognition (when the start event fires.) `mySpeechRecognition.onstart = function() { ... };` See also: `https://developer.mozilla.org/en-US/docs/Web/API/SpeechRecognition/onstart`
(set-service-uri! this val)
Property.
The serviceURI property of the speech.SpeechRecognition
interface
the location of the speech recognition service used by the current
to handle the actual recognition. The default is the user agent's
speech service.
var myServiceURI = mySpeechRecognition.serviceURI; mySpeechRecognition.serviceURI = 'path/to/my/service/';
See also: https://developer.mozilla.org/en-US/docs/Web/API/SpeechRecognition/serviceURI
Property. The serviceURI property of the `speech.SpeechRecognition` interface the location of the speech recognition service used by the current to handle the actual recognition. The default is the user agent's speech service. `var myServiceURI = mySpeechRecognition.serviceURI; mySpeechRecognition.serviceURI = 'path/to/my/service/';` See also: `https://developer.mozilla.org/en-US/docs/Web/API/SpeechRecognition/serviceURI`
(start this)
Method.
The start() method of the Web Speech API starts the speech recognition
listening to incoming audio with intent to recognize grammars
with the current speech.SpeechRecognition
.
mySpeechRecognition.start();
See also: https://developer.mozilla.org/en-US/docs/Web/API/SpeechRecognition/start
Method. The start() method of the Web Speech API starts the speech recognition listening to incoming audio with intent to recognize grammars with the current `speech.SpeechRecognition`. `mySpeechRecognition.start();` See also: `https://developer.mozilla.org/en-US/docs/Web/API/SpeechRecognition/start`
(stop this)
Method.
The stop() method of the Web Speech API stops the speech recognition
from listening to incoming audio, and attempts to return a speech.SpeechRecognitionResult
the audio captured so far.
mySpeechRecognition.stop();
See also: https://developer.mozilla.org/en-US/docs/Web/API/SpeechRecognition/stop
Method. The stop() method of the Web Speech API stops the speech recognition from listening to incoming audio, and attempts to return a `speech.SpeechRecognitionResult` the audio captured so far. `mySpeechRecognition.stop();` See also: `https://developer.mozilla.org/en-US/docs/Web/API/SpeechRecognition/stop`
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close