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?

link|improve this question

feedback

4 Answers

up vote 3 down vote accepted

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:

http://cmusphinx.sourceforge.net/wiki/tutorial

link|improve this answer
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:

  1. Dictionary to map input speech into text.
  2. Computations for speech recognition algorithms to run.

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!

link|improve this answer
is there any application in appstore which uses offline mode?doesvgoogle search iphone application communicate with server? – mirdad Jul 21 '11 at 8:24
yes. google voice search application on every smart phone does communicate with a server. i am not familiar with the app store and have not heard of any application that does what you want on the phone. but do not take my word for it. you should do a little research on this. – Sriram Jul 21 '11 at 8:51
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.

link|improve this answer
levy,pocketsphinx needs dictionary,we have to mention the word in coding for our speaking.will it work without dictionary? – mirdad Jul 22 '11 at 3:31
Sorry, I was focusing on the "no network" part of you question and not the "no dictionary". – Michael Levy Jul 22 '11 at 13:04
feedback

best answer

https://bitbucket.org/sfoster/iphone-tts/src

you can change speed pitch everythng

link|improve this answer
is this not the exact opposite of what the OP asked? The OP asked for a speech to text solution. the above link refers to a text to speech solution. i think the two are different. – Sriram Jul 22 '11 at 12:27
feedback

Your Answer

 
or
required, but never shown

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