Closed nosy-b closed 5 years ago
Like an unrestricted speech recognizer?
Yes, without having to set a dictionary (limited array of words)
That should work, with the speech recognizer in dictation mode. I'll add it to develop/next as an option to a new SpeechRecognizer API.
This is fixed in develop/next. Use it like this:
speechRecognizer = new SpeechRecognizer();
speechRecognizer.onresult = function (result) {
console.log(result.text);
}
speechRecognizer.start();
See the https://github.com/Microsoft/HoloJS/wiki/SpeechRecognizer for more details.
Hello! I'm using with success the voice commands but I wanted to use speech recognition without having to specify commands. Is it possible to easily modify HoloJS for that?
Thanks!