cheatsheets/js-speech.md

507 B

title category layout weight
JavaScript speech synthesis JavaScript 2017/sheet -1

SpeechSynthesisUtterance

{: .-one-column}

function speak (message) {
  var msg = new SpeechSynthesisUtterance(message)
  var voices = window.speechSynthesis.getVoices()
  msg.voice = voices[0]
  window.speechSynthesis.speak(msg)
}
speak('Hello, world')

See: SpeechSynthesisUtterance (developer.mozilla.org)