Skip to content

Instantly share code, notes, and snippets.

@msroot
Created April 22, 2015 04:25
Show Gist options
  • Save msroot/53ad5300c1dded09ce27 to your computer and use it in GitHub Desktop.
Save msroot/53ad5300c1dded09ce27 to your computer and use it in GitHub Desktop.
webkitSpeechRecognition
var recognition = new webkitSpeechRecognition();
recognition.lang = "en-GB";
recognition.continuous = true;
recognition.interimResults = true;
recognition.onresult = function(event) {
console.log(event)
}
recognition.start();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment