This is an experimental technology
Check the Browser compatibility table carefully before using this in production.
The voiceschanged
event of the Web Speech API is fired when the list of SpeechSynthesisVoice
objects that would be returned by the SpeechSynthesis.getVoices()
method has changed (when the voiceschanged
event fires.)
Bubbles | No |
Cancelable | No |
Target objects | SpeechSynthesis |
Interface | Event |
This could be used to repopulate a list of voices that the user can choose between when the event fires:
var synth = window.speechSynthesis; ... synth.onvoicechanged = function() { var voices = synth.getVoices(); for(i = 0; i < voices.length ; i++) { var option = document.createElement('option'); option.textContent = voices[i].name + ' (' + voices[i].lang + ')'; option.setAttribute('data-lang', voices[i].lang); option.setAttribute('data-name', voices[i].name); voiceSelect.appendChild(option); } }
The voicechanged
event implements the Event
interface — it has available the properties and methods defined on this interface.
Specification | Status | Comment |
---|---|---|
Web Speech API The definition of 'speech synthesis events' in that specification. | Draft |
We're converting our compatibility data into a machine-readable JSON format. This compatibility table still uses the old format, because we haven't yet converted the data it contains. Find out how you can help!
Feature | Chrome | Edge | Firefox (Gecko) | Internet Explorer | Opera | Safari (WebKit) |
---|---|---|---|---|---|---|
Basic support | 33 | (Yes) | 48 (48) [1] | No support | No support | No support |
Feature | Android | Chrome | Edge | Firefox Mobile (Gecko) | Firefox OS | IE Phone | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|---|---|---|
Basic support | (Yes) | (Yes) | (Yes) | ? | 2.5 | No support | No support | No support |
media.webspeech.synth.enabled
flag in about:config.
© 2005–2018 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/Events/voiceschanged