Created
January 5, 2017 23:12
-
-
Save Yuffster/67c3e5c3d47bfa569cf4e4425e2bf24b 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
function getSpeech(cb) { | |
if (!webkitSpeechRecognition) return false; | |
var recognition = new webkitSpeechRecognition(); | |
recognition.interimResults = true; | |
recognition.onresult = (event) => { | |
var transcript = event.results[0][0].transcript; | |
cb(transcript); | |
} | |
recognition.start(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment