Created
June 6, 2018 15:03
-
-
Save capfsb/beffaad515ed518863a83bf125d5869d to your computer and use it in GitHub Desktop.
js.js
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 recognition = new (window.SpeechRecognition || window.webkitSpeechRecognition || window.mozSpeechRecognition || window.msSpeechRecognition)(); | |
recognition.lang = 'en-US'; | |
recognition.interimResults = false; | |
recognition.maxAlternatives = 5; | |
recognition.start(); | |
recognition.onresult = function(event) { | |
console.log('You said: ', event); | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment