Created
March 22, 2015 22:15
-
-
Save weiland/9a285a2284ec23c16680 to your computer and use it in GitHub Desktop.
Web Speech API - Speech Synthesis Example
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
speechSynthesis.getVoices().forEach(function(voice) { | |
utterance = new SpeechSynthesisUtterance('PENIS'); | |
utterance.voice = voice; | |
speechSynthesis.speak(utterance); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment