Liking cljdoc? Tell your friends :D

speech.SpeechRecognition

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.
raw docstring

abortcljs

(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`
sourceraw docstring

constructorcljs

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`
sourceraw docstring

continuouscljs

(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`
sourceraw docstring

grammarscljs

(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`
sourceraw docstring

interim-resultscljs

(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`
sourceraw docstring

langcljs

(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`
sourceraw docstring

max-alternativescljs

(max-alternatives this)

Property.

The maxAlternatives property of the speech.SpeechRecognition sets the maximum number of speech.SpeechRecognitionAlternatives 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`
sourceraw docstring

onaudioendcljs

(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`
sourceraw docstring

onaudiostartcljs

(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`
sourceraw docstring

onendcljs

(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`
sourceraw docstring

onerrorcljs

(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`
sourceraw docstring

onnomatchcljs

(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`
sourceraw docstring

onresultcljs

(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`
sourceraw docstring

onsoundendcljs

(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`
sourceraw docstring

onsoundstartcljs

(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`
sourceraw docstring

onspeechendcljs

(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`
sourceraw docstring

onspeechstartcljs

(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`
sourceraw docstring

onstartcljs

(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`
sourceraw docstring

service-uricljs

(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`
sourceraw docstring

set-continuous!cljs

(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`
sourceraw docstring

set-grammars!cljs

(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`
sourceraw docstring

set-interim-results!cljs

(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`
sourceraw docstring

set-lang!cljs

(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`
sourceraw docstring

set-max-alternatives!cljs

(set-max-alternatives! this val)

Property.

The maxAlternatives property of the speech.SpeechRecognition sets the maximum number of speech.SpeechRecognitionAlternatives 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`
sourceraw docstring

set-onaudioend!cljs

(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`
sourceraw docstring

set-onaudiostart!cljs

(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`
sourceraw docstring

set-onend!cljs

(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`
sourceraw docstring

set-onerror!cljs

(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`
sourceraw docstring

set-onnomatch!cljs

(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`
sourceraw docstring

set-onresult!cljs

(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`
sourceraw docstring

set-onsoundend!cljs

(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`
sourceraw docstring

set-onsoundstart!cljs

(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`
sourceraw docstring

set-onspeechend!cljs

(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`
sourceraw docstring

set-onspeechstart!cljs

(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`
sourceraw docstring

set-onstart!cljs

(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`
sourceraw docstring

set-service-uri!cljs

(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`
sourceraw docstring

startcljs

(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`
sourceraw docstring

stopcljs

(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`
sourceraw docstring

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close