The SpeechSynthesisUtterance interface of the Web Speech API a speech request. It contains the content the speech service read and information about how to read it (e.g. language, pitch volume.)
The SpeechSynthesisUtterance interface of the Web Speech API a speech request. It contains the content the speech service read and information about how to read it (e.g. language, pitch volume.)
Constructor.
The SpeechSynthesisUtterance() constructor of the speech.SpeechSynthesisUtterance
interface returns a new SpeechSynthesisUtterance object instance.
text
A dom.DOMString
containing the text that will be synthesised when the utterance is spoken..
See also: https://developer.mozilla.org/en-US/docs/Web/API/SpeechSynthesisUtterance/SpeechSynthesisUtterance
Constructor. The SpeechSynthesisUtterance() constructor of the `speech.SpeechSynthesisUtterance` interface returns a new SpeechSynthesisUtterance object instance. text A `dom.DOMString` containing the text that will be synthesised when the utterance is spoken.. See also: `https://developer.mozilla.org/en-US/docs/Web/API/SpeechSynthesisUtterance/SpeechSynthesisUtterance`
(lang this)
Property.
The lang property of the speech.SpeechSynthesisUtterance
interface
and sets the language of the utterance.
var myLang = speechSynthesisUtteranceInstance.lang; speechSynthesisUtteranceInstance.lang = 'en-US';
See also: https://developer.mozilla.org/en-US/docs/Web/API/SpeechSynthesisUtterance/lang
Property. The lang property of the `speech.SpeechSynthesisUtterance` interface and sets the language of the utterance. `var myLang = speechSynthesisUtteranceInstance.lang; speechSynthesisUtteranceInstance.lang = 'en-US';` See also: `https://developer.mozilla.org/en-US/docs/Web/API/SpeechSynthesisUtterance/lang`
(onboundary this)
Property.
The onboundary property of the speech.SpeechSynthesisUtterance
represents an event handler that will run when the spoken utterance
a word or sentence boundary (when the boundary event fires.)
speechSynthesisUtteranceInstance.onboundary = function() { ... };
See also: https://developer.mozilla.org/en-US/docs/Web/API/SpeechSynthesisUtterance/onboundary
Property. The onboundary property of the `speech.SpeechSynthesisUtterance` represents an event handler that will run when the spoken utterance a word or sentence boundary (when the boundary event fires.) `speechSynthesisUtteranceInstance.onboundary = function() { ... };` See also: `https://developer.mozilla.org/en-US/docs/Web/API/SpeechSynthesisUtterance/onboundary`
(onend this)
Property.
The onend property of the speech.SpeechSynthesisUtterance
interface
an event handler that will run when the utterance has finished
spoken (when the end event fires.)
speechSynthesisUtteranceInstance.onend = function() { ... };
See also: https://developer.mozilla.org/en-US/docs/Web/API/SpeechSynthesisUtterance/onend
Property. The onend property of the `speech.SpeechSynthesisUtterance` interface an event handler that will run when the utterance has finished spoken (when the end event fires.) `speechSynthesisUtteranceInstance.onend = function() { ... };` See also: `https://developer.mozilla.org/en-US/docs/Web/API/SpeechSynthesisUtterance/onend`
(onerror this)
Property.
The onerror property of the speech.SpeechSynthesisUtterance
represents an event handler that will run when an error occurs
prevents the utterance from being succesfully spoken (when the
event fires.)
speechSynthesisUtteranceInstance.onerror = function() { ... };
See also: https://developer.mozilla.org/en-US/docs/Web/API/SpeechSynthesisUtterance/onerror
Property. The onerror property of the `speech.SpeechSynthesisUtterance` represents an event handler that will run when an error occurs prevents the utterance from being succesfully spoken (when the event fires.) `speechSynthesisUtteranceInstance.onerror = function() { ... };` See also: `https://developer.mozilla.org/en-US/docs/Web/API/SpeechSynthesisUtterance/onerror`
(onmark this)
Property.
The onmark property of the speech.SpeechSynthesisUtterance
represents an event handler that will run when the spoken utterance
a named SSML mark tag (when the mark event fires.)
speechSynthesisUtteranceInstance.onmark = function() { ... };
See also: https://developer.mozilla.org/en-US/docs/Web/API/SpeechSynthesisUtterance/onmark
Property. The onmark property of the `speech.SpeechSynthesisUtterance` represents an event handler that will run when the spoken utterance a named SSML mark tag (when the mark event fires.) `speechSynthesisUtteranceInstance.onmark = function() { ... };` See also: `https://developer.mozilla.org/en-US/docs/Web/API/SpeechSynthesisUtterance/onmark`
(onpause this)
Property.
The onpause property of the speech.SpeechSynthesisUtterance
represents an event handler that will run when the utterance
paused part way through (when the pause event fires.)
speechSynthesisUtteranceInstance.onpause = function() { ... };
See also: https://developer.mozilla.org/en-US/docs/Web/API/SpeechSynthesisUtterance/onpause
Property. The onpause property of the `speech.SpeechSynthesisUtterance` represents an event handler that will run when the utterance paused part way through (when the pause event fires.) `speechSynthesisUtteranceInstance.onpause = function() { ... };` See also: `https://developer.mozilla.org/en-US/docs/Web/API/SpeechSynthesisUtterance/onpause`
(onresume this)
Property.
The onresume property of the speech.SpeechSynthesisUtterance
represents an event handler that will run when a paused utterance
resumed (when the resume event fires.)
speechSynthesisUtteranceInstance.onresume = function() { ... };
See also: https://developer.mozilla.org/en-US/docs/Web/API/SpeechSynthesisUtterance/onresume
Property. The onresume property of the `speech.SpeechSynthesisUtterance` represents an event handler that will run when a paused utterance resumed (when the resume event fires.) `speechSynthesisUtteranceInstance.onresume = function() { ... };` See also: `https://developer.mozilla.org/en-US/docs/Web/API/SpeechSynthesisUtterance/onresume`
(onstart this)
Property.
The onstart property of the speech.SpeechSynthesisUtterance
represents an event handler that will run when the utterance
begun to be spoken (when the start event fires.)
speechSynthesisUtteranceInstance.onstart = function() { ... };
See also: https://developer.mozilla.org/en-US/docs/Web/API/SpeechSynthesisUtterance/onstart
Property. The onstart property of the `speech.SpeechSynthesisUtterance` represents an event handler that will run when the utterance begun to be spoken (when the start event fires.) `speechSynthesisUtteranceInstance.onstart = function() { ... };` See also: `https://developer.mozilla.org/en-US/docs/Web/API/SpeechSynthesisUtterance/onstart`
(pitch this)
Property.
The pitch property of the speech.SpeechSynthesisUtterance
interface
and sets the pitch at which the utterance will be spoken at.
// default 1 speechSynthesisUtteranceInstance.pitch = 1.5;
See also: https://developer.mozilla.org/en-US/docs/Web/API/SpeechSynthesisUtterance/pitch
Property. The pitch property of the `speech.SpeechSynthesisUtterance` interface and sets the pitch at which the utterance will be spoken at. `// default 1 speechSynthesisUtteranceInstance.pitch = 1.5;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/SpeechSynthesisUtterance/pitch`
(rate this)
Property.
The rate property of the speech.SpeechSynthesisUtterance
interface
and sets the speed at which the utterance will be spoken at.
var myRate = speechSynthesisUtteranceInstance.rate; speechSynthesisUtteranceInstance.rate = 1.5;
See also: https://developer.mozilla.org/en-US/docs/Web/API/SpeechSynthesisUtterance/rate
Property. The rate property of the `speech.SpeechSynthesisUtterance` interface and sets the speed at which the utterance will be spoken at. `var myRate = speechSynthesisUtteranceInstance.rate; speechSynthesisUtteranceInstance.rate = 1.5;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/SpeechSynthesisUtterance/rate`
(set-lang! this val)
Property.
The lang property of the speech.SpeechSynthesisUtterance
interface
and sets the language of the utterance.
var myLang = speechSynthesisUtteranceInstance.lang; speechSynthesisUtteranceInstance.lang = 'en-US';
See also: https://developer.mozilla.org/en-US/docs/Web/API/SpeechSynthesisUtterance/lang
Property. The lang property of the `speech.SpeechSynthesisUtterance` interface and sets the language of the utterance. `var myLang = speechSynthesisUtteranceInstance.lang; speechSynthesisUtteranceInstance.lang = 'en-US';` See also: `https://developer.mozilla.org/en-US/docs/Web/API/SpeechSynthesisUtterance/lang`
(set-onboundary! this val)
Property.
The onboundary property of the speech.SpeechSynthesisUtterance
represents an event handler that will run when the spoken utterance
a word or sentence boundary (when the boundary event fires.)
speechSynthesisUtteranceInstance.onboundary = function() { ... };
See also: https://developer.mozilla.org/en-US/docs/Web/API/SpeechSynthesisUtterance/onboundary
Property. The onboundary property of the `speech.SpeechSynthesisUtterance` represents an event handler that will run when the spoken utterance a word or sentence boundary (when the boundary event fires.) `speechSynthesisUtteranceInstance.onboundary = function() { ... };` See also: `https://developer.mozilla.org/en-US/docs/Web/API/SpeechSynthesisUtterance/onboundary`
(set-onend! this val)
Property.
The onend property of the speech.SpeechSynthesisUtterance
interface
an event handler that will run when the utterance has finished
spoken (when the end event fires.)
speechSynthesisUtteranceInstance.onend = function() { ... };
See also: https://developer.mozilla.org/en-US/docs/Web/API/SpeechSynthesisUtterance/onend
Property. The onend property of the `speech.SpeechSynthesisUtterance` interface an event handler that will run when the utterance has finished spoken (when the end event fires.) `speechSynthesisUtteranceInstance.onend = function() { ... };` See also: `https://developer.mozilla.org/en-US/docs/Web/API/SpeechSynthesisUtterance/onend`
(set-onerror! this val)
Property.
The onerror property of the speech.SpeechSynthesisUtterance
represents an event handler that will run when an error occurs
prevents the utterance from being succesfully spoken (when the
event fires.)
speechSynthesisUtteranceInstance.onerror = function() { ... };
See also: https://developer.mozilla.org/en-US/docs/Web/API/SpeechSynthesisUtterance/onerror
Property. The onerror property of the `speech.SpeechSynthesisUtterance` represents an event handler that will run when an error occurs prevents the utterance from being succesfully spoken (when the event fires.) `speechSynthesisUtteranceInstance.onerror = function() { ... };` See also: `https://developer.mozilla.org/en-US/docs/Web/API/SpeechSynthesisUtterance/onerror`
(set-onmark! this val)
Property.
The onmark property of the speech.SpeechSynthesisUtterance
represents an event handler that will run when the spoken utterance
a named SSML mark tag (when the mark event fires.)
speechSynthesisUtteranceInstance.onmark = function() { ... };
See also: https://developer.mozilla.org/en-US/docs/Web/API/SpeechSynthesisUtterance/onmark
Property. The onmark property of the `speech.SpeechSynthesisUtterance` represents an event handler that will run when the spoken utterance a named SSML mark tag (when the mark event fires.) `speechSynthesisUtteranceInstance.onmark = function() { ... };` See also: `https://developer.mozilla.org/en-US/docs/Web/API/SpeechSynthesisUtterance/onmark`
(set-onpause! this val)
Property.
The onpause property of the speech.SpeechSynthesisUtterance
represents an event handler that will run when the utterance
paused part way through (when the pause event fires.)
speechSynthesisUtteranceInstance.onpause = function() { ... };
See also: https://developer.mozilla.org/en-US/docs/Web/API/SpeechSynthesisUtterance/onpause
Property. The onpause property of the `speech.SpeechSynthesisUtterance` represents an event handler that will run when the utterance paused part way through (when the pause event fires.) `speechSynthesisUtteranceInstance.onpause = function() { ... };` See also: `https://developer.mozilla.org/en-US/docs/Web/API/SpeechSynthesisUtterance/onpause`
(set-onresume! this val)
Property.
The onresume property of the speech.SpeechSynthesisUtterance
represents an event handler that will run when a paused utterance
resumed (when the resume event fires.)
speechSynthesisUtteranceInstance.onresume = function() { ... };
See also: https://developer.mozilla.org/en-US/docs/Web/API/SpeechSynthesisUtterance/onresume
Property. The onresume property of the `speech.SpeechSynthesisUtterance` represents an event handler that will run when a paused utterance resumed (when the resume event fires.) `speechSynthesisUtteranceInstance.onresume = function() { ... };` See also: `https://developer.mozilla.org/en-US/docs/Web/API/SpeechSynthesisUtterance/onresume`
(set-onstart! this val)
Property.
The onstart property of the speech.SpeechSynthesisUtterance
represents an event handler that will run when the utterance
begun to be spoken (when the start event fires.)
speechSynthesisUtteranceInstance.onstart = function() { ... };
See also: https://developer.mozilla.org/en-US/docs/Web/API/SpeechSynthesisUtterance/onstart
Property. The onstart property of the `speech.SpeechSynthesisUtterance` represents an event handler that will run when the utterance begun to be spoken (when the start event fires.) `speechSynthesisUtteranceInstance.onstart = function() { ... };` See also: `https://developer.mozilla.org/en-US/docs/Web/API/SpeechSynthesisUtterance/onstart`
(set-pitch! this val)
Property.
The pitch property of the speech.SpeechSynthesisUtterance
interface
and sets the pitch at which the utterance will be spoken at.
// default 1 speechSynthesisUtteranceInstance.pitch = 1.5;
See also: https://developer.mozilla.org/en-US/docs/Web/API/SpeechSynthesisUtterance/pitch
Property. The pitch property of the `speech.SpeechSynthesisUtterance` interface and sets the pitch at which the utterance will be spoken at. `// default 1 speechSynthesisUtteranceInstance.pitch = 1.5;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/SpeechSynthesisUtterance/pitch`
(set-rate! this val)
Property.
The rate property of the speech.SpeechSynthesisUtterance
interface
and sets the speed at which the utterance will be spoken at.
var myRate = speechSynthesisUtteranceInstance.rate; speechSynthesisUtteranceInstance.rate = 1.5;
See also: https://developer.mozilla.org/en-US/docs/Web/API/SpeechSynthesisUtterance/rate
Property. The rate property of the `speech.SpeechSynthesisUtterance` interface and sets the speed at which the utterance will be spoken at. `var myRate = speechSynthesisUtteranceInstance.rate; speechSynthesisUtteranceInstance.rate = 1.5;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/SpeechSynthesisUtterance/rate`
(set-text! this val)
Property.
The text property of the speech.SpeechSynthesisUtterance
interface
and sets the text that will be synthesised when the utterance
spoken.
var myText = speechSynthesisUtteranceInstance.text; speechSynthesisUtteranceInstance.text = 'Hello I am speaking';
See also: https://developer.mozilla.org/en-US/docs/Web/API/SpeechSynthesisUtterance/text
Property. The text property of the `speech.SpeechSynthesisUtterance` interface and sets the text that will be synthesised when the utterance spoken. `var myText = speechSynthesisUtteranceInstance.text; speechSynthesisUtteranceInstance.text = 'Hello I am speaking';` See also: `https://developer.mozilla.org/en-US/docs/Web/API/SpeechSynthesisUtterance/text`
(set-voice! this val)
Property.
The voice property of the speech.SpeechSynthesisUtterance
interface
and sets the voice that will be used to speak the utterance.
var myVoice = speechSynthesisUtteranceInstance.voice; speechSynthesisUtteranceInstance.voice = speechSynthesisVoiceInstance;
See also: https://developer.mozilla.org/en-US/docs/Web/API/SpeechSynthesisUtterance/voice
Property. The voice property of the `speech.SpeechSynthesisUtterance` interface and sets the voice that will be used to speak the utterance. `var myVoice = speechSynthesisUtteranceInstance.voice; speechSynthesisUtteranceInstance.voice = speechSynthesisVoiceInstance;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/SpeechSynthesisUtterance/voice`
(set-volume! this val)
Property.
The volume property of the speech.SpeechSynthesisUtterance
gets and sets the volume that the utterance will be spoken at.
var myVolume = speechSynthesisUtteranceInstance.volume; speechSynthesisUtteranceInstance.volume = 0.5;
See also: https://developer.mozilla.org/en-US/docs/Web/API/SpeechSynthesisUtterance/volume
Property. The volume property of the `speech.SpeechSynthesisUtterance` gets and sets the volume that the utterance will be spoken at. `var myVolume = speechSynthesisUtteranceInstance.volume; speechSynthesisUtteranceInstance.volume = 0.5;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/SpeechSynthesisUtterance/volume`
(text this)
Property.
The text property of the speech.SpeechSynthesisUtterance
interface
and sets the text that will be synthesised when the utterance
spoken.
var myText = speechSynthesisUtteranceInstance.text; speechSynthesisUtteranceInstance.text = 'Hello I am speaking';
See also: https://developer.mozilla.org/en-US/docs/Web/API/SpeechSynthesisUtterance/text
Property. The text property of the `speech.SpeechSynthesisUtterance` interface and sets the text that will be synthesised when the utterance spoken. `var myText = speechSynthesisUtteranceInstance.text; speechSynthesisUtteranceInstance.text = 'Hello I am speaking';` See also: `https://developer.mozilla.org/en-US/docs/Web/API/SpeechSynthesisUtterance/text`
(voice this)
Property.
The voice property of the speech.SpeechSynthesisUtterance
interface
and sets the voice that will be used to speak the utterance.
var myVoice = speechSynthesisUtteranceInstance.voice; speechSynthesisUtteranceInstance.voice = speechSynthesisVoiceInstance;
See also: https://developer.mozilla.org/en-US/docs/Web/API/SpeechSynthesisUtterance/voice
Property. The voice property of the `speech.SpeechSynthesisUtterance` interface and sets the voice that will be used to speak the utterance. `var myVoice = speechSynthesisUtteranceInstance.voice; speechSynthesisUtteranceInstance.voice = speechSynthesisVoiceInstance;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/SpeechSynthesisUtterance/voice`
(volume this)
Property.
The volume property of the speech.SpeechSynthesisUtterance
gets and sets the volume that the utterance will be spoken at.
var myVolume = speechSynthesisUtteranceInstance.volume; speechSynthesisUtteranceInstance.volume = 0.5;
See also: https://developer.mozilla.org/en-US/docs/Web/API/SpeechSynthesisUtterance/volume
Property. The volume property of the `speech.SpeechSynthesisUtterance` gets and sets the volume that the utterance will be spoken at. `var myVolume = speechSynthesisUtteranceInstance.volume; speechSynthesisUtteranceInstance.volume = 0.5;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/SpeechSynthesisUtterance/volume`
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close