Advertisement
Guest User

Untitled

a guest
Apr 26th, 2019
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. startSpeechRecognition() {
  2. try {
  3. SpeechRecognitionService.activate();
  4. SpeechRecognitionService.setNoMatchCallback((transcript) => {
  5. console.log(transcript);
  6. this.handleFormInputSubmit(transcript);
  7. });
  8. SpeechRecognitionService.setUnrecognizedCallback((transcript) => {
  9. console.log("I'm not sure, but I think you said, '" + transcript + "'");
  10. window.alert('info ' + "I'm not sure, but I think you said, '" + transcript + "'");
  11. });
  12.  
  13. SpeechRecognitionService.startRecognition();
  14. } catch (e) {
  15. console.log(e);
  16. window.alert('error ' + e.message);
  17. }
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement