[android-developers] Re: Speech Recognition in Android

2012-07-20 Thread GregM
Hi, This code library helps you with speech recognition and in particular has some nice code to help handle matching hard to match words using Soundex and Stemming and other things. Check it out here: https://github.com/gast-lib/gast-lib To get started quickly, I suggest just extending this

[android-developers] Re: Speech Recognition in Android

2011-06-23 Thread Pent
I need build a small application about Speech Recognition based-on Android platform, such as: port speech input to text. Hence, is there a way/open source that to do for this? http://developer.android.com/reference/android/speech/RecognizerIntent.html Pent -- You received this message

[android-developers] Re: Speech Recognition in Android

2011-06-23 Thread Droid
The speech recogniser often makes mistakes, so you have to think about how to handle wrong words. Otherwise its quite easy to feed voice recognition to text. There is lots of code on Google to do that. I have a loop that asks if the text is correct or not. Well, it works fine, but most users do

[android-developers] Re: Speech Recognition in Android

2011-06-23 Thread davemac
Recognizing speech is really hard to do well. What you get with Google's Android Recognizer is pretty good. If you want to consider another, you could look at Sphinx. - dave www.androidbook.com/proandroid3 On Jun 23, 6:05 pm, Droid rod...@gmail.com wrote: The speech recogniser often makes