As you probably know, implementing speech-to-text is pretty easy with the Android API. All you have to do is just call up the API's intent and it will return text for you. My case is a bit different, I have a prerecorded 3GPP sound file that I've recorded from the user and is saved on the SD card. I want to know if it's possible to transcribe that into text like any other speech recognition. Does the speech-to-text API allow for uploading you're own sound files to be processed? Or is this impossible?

link|improve this question

feedback

1 Answer

up vote 0 down vote accepted

The API does not allow it, but see this blog post and its comments for a potential workaround. Also make sure that your file contains high quality audio (at least 16 bit and 16 kHz) to get a better transcription.

See also:

link|improve this answer
Hmm that article does prove that it sends a sound file to the server and waits for JSON to come back. So I guess all you need to do on the client end is convert the 3GPP file into FLAC and post it to the server. Hopefully it's that simple. :) – Brian Sep 27 '11 at 21:53
feedback

Your Answer

 
or
required, but never shown

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