Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there any way I can have NSSpeechRecognizer recognize any command I throw at it. I know I could just have a massive array, but that's too much work and it'll take up a lot of memory.

share|improve this question

1 Answer

up vote 1 down vote accepted

Simply put: No.

NSSpeechRecognizer isn't designed to work this way. It's designed only to listen for a specific list of commands.

"Any command" is a massive list even if each is one word; imagine various combinations of different words that could be a "command". Impractical and unlikely to work.

share|improve this answer
well I wanted to make a speech to text application, so it doesn't matter if commands interfere – Matt S. Feb 18 '10 at 2:57
Same answer: It's not designed to do this. To match against, say, a list of every word in the English language, would be extremely slow and very inaccurate. NSSpeechRecognizer is not the solution to your problem. – Joshua Nozzi Feb 18 '10 at 2:59
darn. Do you know of anything that can be the solution – Matt S. Feb 18 '10 at 19:56
There are open-source speech recognition libraries out there. They all trade some accuracy for being able to recognize any voice or vice-versa (ie, require "training" to a voice for better accuracy). Google "open source speech recognition". – Joshua Nozzi Feb 18 '10 at 20:04
thanks! I was able to find some – Matt S. Feb 19 '10 at 19:55

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.