Skip to content

Instantly share code, notes, and snippets.

@yjaaidi
Last active October 11, 2018 09:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yjaaidi/f4ec7d12dad932d2edb3b040d52e286b to your computer and use it in GitHub Desktop.
Save yjaaidi/f4ec7d12dad932d2edb3b040d52e286b to your computer and use it in GitHub Desktop.
Speech Recognition Playground
recognition = new webkitSpeechRecognition();
recognition.continuous = true;
recognition.lang = 'fr-FR';
recognition.onresult = console.log;
recognition.start();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment