baluubas / voice-command

Node module for voice commands using native, offline speech recognition.
MIT License
24 stars 10 forks source link

Commands with variable input #1

Open c0d3rman opened 8 years ago

c0d3rman commented 8 years ago

Can voice-command currently listen for commands with a variable input? Like for example volume 5 vs volume 6.

baluubas commented 8 years ago

From what I can tell you have to provide all choices to the underlying SpeechRecognitionEngine in .NET (http://stackoverflow.com/questions/6493143/problem-in-recognition-of-numbers-in-system-speech) - so no variables unfortunately.

But you can try to create all possible choices.. as in the Stackoverflow question. Can't tell you how well it will work though.