I used Openears which needs dictionary.it is usefull when we mention the word in dictionary. I wanted to convert all words we speak.so I used Nuanceās speech to recognition dragaon SDK.but it communicates with webserver.but I want to avoid server communication because of My Application security.Is it possible to convert speech to text for all words we speak as it is in windows mobile without communicating server only in offlinemode?
|
feedback
|
|
Speech recognition with unlimited vocabulary requires very big computational and memory resources (terabytes of memory) and thus it's impossible to do that in IPhone on other embedded device. Because of that most of the solutions running on small devices use limited vocabulary. Though this vocabulary can be large enough so you will not notice that. Usually 10000 words is enough to cover most practical situations. You can use OpenEars with such vocabulary and corresponding language model to support free form text entry for your device. You can find example of the same technology running on Nokia N800 here: http://www.youtube.com/watch?v=OEUeJb6Pwt4 You can learn more about speech recognition concepts in CMUSphinx tutorial: | |||
|
feedback
|
|
It could be done, but if you are looking for an unlimited vocabulary speech to text convertor, then it is best if the computations are done on a server. The requirements for such a system are probably too great for a system such as a smartphone. The main areas where you will have huge requirements are as follows:
I believe this is the reason why companies like Google run their speech recognition services over a server and not on the phone. But if the application was a limited word speech to text, then it might be worth giving it a try. All the best! | |||||
feedback
|
|
Doesn't pocketsphinx work on iPhone without network connectivity? Aren't there some demo apps floating around like VocalKit http://www.rajeevan.co.uk/pocketsphinx_in_iphone/ may be helpful. | |||||
feedback
|
|
| |||
feedback
|