-
-
Save NickFoden/f825b88baed6a0135f48a0f42516394a 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 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