I am stuck in one of my offline Android Application, where in I need Offline Speech Recognition and Speech to Text API.

Kindly share your views and input if anyone has worked on Offline Speech to Text and Speech Recognition.

link|improve this question
possible duplicate of Speech to Text Include speech engine in apk – Mat Jan 4 at 11:52
feedback

1 Answer

You could include your own engine, like the CMU Sphinx Engine. This has also the advantage of working without a data connection.

See this post on how to install it on Android - however you have to change the Android.mk : Reverse the order of LOCAL_STATIC_LIBRARIES so the line looks like this:

LOCAL_STATIC_LIBRARIES := pocketsphinx sphinxlm sphinxfeat sphinxfe sphinxutil

Otherwise the NDK will fail to build the package.

link|improve this answer
The accuracy level of CMU Sphinx is very low... i have tried that.... but it was unable to recognize the speech... – user1129823 Jan 27 at 7:49
well, don't expect to have good results with the included 3MB pronounciation file. on the CMU site are files more than 100MB big and they work pretty good (on a desktop, a mobile phone cannot handle them yet). However CMU Sphinx is great for commands; you can create a language model with a few commands and the recognition rate is at about 99 per cent – Force Jan 27 at 11:01
feedback

Your Answer

 
or
required, but never shown

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