/SpeechSynthesisUtterance.js Secret
Last active
May 4, 2023 10:34
Star
You must be signed in to star a gist
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function speak(textToSpeech) { | |
var synUtterance = new SpeechSynthesisUtterance(textToSpeech); | |
if (voiceSelect.value) { | |
synUtterance.voice = speechSynthesis.getVoices().filter(function (voice) { return voice.name == voiceSelect.value; })[0]; | |
} | |
synUtterance.lang = langSelect.value; | |
synUtterance.volume = parseFloat(volumeRange.value); | |
synUtterance.rate = parseFloat(rateRange.value); | |
synUtterance.pitch = parseFloat(pitchRange.value); | |
const eventList = ["start", "end", "mark", "pause", "resume", "error", "boundary"]; | |
eventList.forEach((event) => { | |
synUtterance.addEventListener(event, (speechSynthesisEvent) => { | |
log(`Fired '${speechSynthesisEvent.type}' event at time '${speechSynthesisEvent.elapsedTime}' and character '${speechSynthesisEvent.charIndex}'.`); | |
}); | |
}); | |
window.speechSynthesis.speak(synUtterance); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment