Burmese speech to convert text to android?

Can I add a custom language for RecognizerIntent?

I have a search in many SO Question like https://stackoverflow.com/questions/2080401/is-there-a-speech-to-text-api-by-google

This solves my problem of using a limited number of languages โ€‹โ€‹while converting speech to text.

My problem is that I need to use Burmese (local language of Burma) Speech and convert it to text. any other help could be appreciated.

UPDATE:

Google servers currently support English, Chinese, and Japanese. Speech Input API for Android

+8
android speech-recognition google-api speech-to-text recognizer-intent
source share
2 answers

Google is unlikely to support small languages โ€‹โ€‹anytime soon. The only way to customize the language is to prepare the CMUSphinx model and use it with Pocketsphinx:

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

http://cmusphinx.sourceforge.net/2011/05/building-pocketsphinx-on-android/

+8
source share

I donโ€™t know for sure, but have you tried using RecognizerIntent?

See reference , there is a section where you can specify the IETF language, see section.

There is also this api demo code that you can try: http://developer.android.com/resources/samples/ApiDemos/src/com/example/android/apis/app/VoiceRecognition.html

I really don't know if Burmese is supported, as it is certainly not listed as one of the default locations, but speech recognition is different.

Just found this project: http://code.google.com/p/recognizer-intent/ , it is probably unlikely that Burmese will be supported out of the box, but I think it's worth trying a demo of the api code and see what it says in the drop-down list, good luck.

+3
source share

All Articles