Created
July 20, 2016 07:54
-
-
Save LewisGet/3ff17fb945f9e565c9546d77bba91518 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
var msg = new SpeechSynthesisUtterance('Hello World'); | |
window.speechSynthesis.speak(msg); | |
voices = speechSynthesis.getVoices(); | |
msg.voice = voices[index]; | |
window.speechSynthesis.speak(msg); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment