Created
January 19, 2018 21:25
-
-
Save eric-wood/b9f50517c5d103bcc773be85ed9f0a6d to your computer and use it in GitHub Desktop.
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
var voice; | |
for(v of window.speechSynthesis.getVoices()) { | |
if(v.name === 'Fred') { | |
voice = v; | |
break; | |
} | |
} | |
const utterance = new SpeechSynthesisUtterance('Fitter. Happier. More productive.'); | |
utterance.voice = voice; | |
window.speechSynthesis.speak(utterance) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment