The SpeechSynthesisVoice interface of the Web Speech API represents voice that the system supports. Every SpeechSynthesisVoice has own relative speech service including information about language, and URI.
The SpeechSynthesisVoice interface of the Web Speech API represents voice that the system supports. Every SpeechSynthesisVoice has own relative speech service including information about language, and URI.
(default this)
Property.
[Read Only] [Experimental]
The default read-only property of the web.speech.SpeechSynthesisVoice
returns a js.Boolean
indicating whether the voice is the default
for the current app (true), or not (false.)
var amIDefault = speechSynthesisVoiceInstance.default;
See also: https://developer.mozilla.org/en-US/docs/Web/API/SpeechSynthesisVoice/default
Property. [Read Only] [Experimental] The default read-only property of the `web.speech.SpeechSynthesisVoice` returns a `js.Boolean` indicating whether the voice is the default for the current app (true), or not (false.) `var amIDefault = speechSynthesisVoiceInstance.default;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/SpeechSynthesisVoice/default`
(lang this)
Property.
[Read Only] [Experimental]
The lang read-only property of the web.speech.SpeechSynthesisVoice
returns a BCP 47 language tag indicating the language of the
var myLang = speechSynthesisVoiceInstance.lang;
See also: https://developer.mozilla.org/en-US/docs/Web/API/SpeechSynthesisVoice/lang
Property. [Read Only] [Experimental] The lang read-only property of the `web.speech.SpeechSynthesisVoice` returns a BCP 47 language tag indicating the language of the `var myLang = speechSynthesisVoiceInstance.lang;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/SpeechSynthesisVoice/lang`
(local-service this)
Property.
[Read Only] [Experimental]
The localService read-only property of the web.speech.SpeechSynthesisVoice
returns a js.Boolean
indicating whether the voice is supplied
a local speech synthesizer service (true), or a remote speech
service (false.)
var amILocal = speechSynthesisVoiceInstance.localService;
See also: https://developer.mozilla.org/en-US/docs/Web/API/SpeechSynthesisVoice/localService
Property. [Read Only] [Experimental] The localService read-only property of the `web.speech.SpeechSynthesisVoice` returns a `js.Boolean` indicating whether the voice is supplied a local speech synthesizer service (true), or a remote speech service (false.) `var amILocal = speechSynthesisVoiceInstance.localService;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/SpeechSynthesisVoice/localService`
(name this)
Property.
[Read Only] [Experimental]
The name read-only property of the web.speech.SpeechSynthesisVoice
returns a human-readable name that represents the voice.
var voiceName = speechSynthesisVoiceInstance.name;
See also: https://developer.mozilla.org/en-US/docs/Web/API/SpeechSynthesisVoice/name
Property. [Read Only] [Experimental] The name read-only property of the `web.speech.SpeechSynthesisVoice` returns a human-readable name that represents the voice. `var voiceName = speechSynthesisVoiceInstance.name;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/SpeechSynthesisVoice/name`
(voice-uri this)
Property.
[Read Only] [Experimental]
The voiceURI read-only property of the web.speech.SpeechSynthesisVoice
returns the type of URI and location of the speech synthesis
for this voice.
var myVoiceURI = speechSynthesisVoiceInstance.voiceURI;
See also: https://developer.mozilla.org/en-US/docs/Web/API/SpeechSynthesisVoice/voiceURI
Property. [Read Only] [Experimental] The voiceURI read-only property of the `web.speech.SpeechSynthesisVoice` returns the type of URI and location of the speech synthesis for this voice. `var myVoiceURI = speechSynthesisVoiceInstance.voiceURI;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/SpeechSynthesisVoice/voiceURI`
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close