Voice recognition on android with recorded sound clip? Voice recognition on android with recorded sound clip? android android

Voice recognition on android with recorded sound clip?


I got a solution that is working well to have speech recognizing and audio recording. Here is the link to a simple Android project I created to show the solution's working. Also, I put some print screens inside the project to illustrate the app.

I'm gonna try to explain briefly the approach I used. I combined two features in that project: Google Speech API and Flac recording.

Google Speech API is called through HTTP connections. Mike Pultz gives more details about the API:

"(...) the new [Google] API is a full-duplex streaming API. What this means, is that it actually uses two HTTP connections- one POST request to upload the content as a “live” chunked stream, and a second GET request to access the results, which makes much more sense for longer audio samples, or for streaming audio."

However, this API needs to receive a FLAC sound file to work properly. That makes us to go to the second part: Flac recording

I implemented Flac recording in that project through extracting and adapting some pieces of code and libraries from an open source app called AudioBoo. AudioBoo uses native code to record and play flac format.

Thus, it's possible to record a flac sound, send it to Google Speech API, get the text, and play the sound that was just recorded.

The project I created has the basic principles to make it work and can be improved for specific situations. In order to make it work in a different scenario, it's necessary to get a Google Speech API key, which is obtained by being part of Google Chromium-dev group. I left one key in that project just to show it's working, but I'll remove it eventually. If someone needs more information about it, let me know cause I'm not able to put more than 2 links in this post.


Unfortunately not at this time. The only interface currently supported by Android's voice recognition service is the RecognizerIntent, which doesn't allow you to provide your own sound data.

If this is something you'd like to see, file a feature request at http://b.android.com. This is also tangentially related to existing issue 4541.


As far as I know there is still no way to directly send an audio clip to Google for transcription. However, Froyo (API level 8) introduced the SpeechRecognizer class, which provides direct access to the speech recognition service. So, for example, you can start playback of an audio clip and have your Activity start the speech recognizer listening in the background, which will return results after completion to a user-defined listener callback method.

The following sample code should be defined within an Activity since SpeechRecognizer's methods must be run in the main application thread. Also you will need to add the RECORD_AUDIO permission to your AndroidManifest.xml.

    boolean available = SpeechRecognizer.isRecognitionAvailable(this);    if (available) {        SpeechRecognizer sr = SpeechRecognizer.createSpeechRecognizer(this);        sr.setRecognitionListener(new RecognitionListener() {            @Override            public void onResults(Bundle results) {                // process results here            }            // define your other overloaded listener methods here        });        Intent intent = new Intent(RecognizerIntent.ACTION_RECOGNIZE_SPEECH);        // the following appears to be a requirement, but can be a "dummy" value        intent.putExtra(RecognizerIntent.EXTRA_CALLING_PACKAGE, "com.dummy");        // define any other intent extras you want        // start playback of audio clip here        // this will start the speech recognizer service in the background        // without starting a separate activity        sr.startListening(intent);    }

You can also define your own speech recognition service by extending RecognitionService, but that is beyond the scope of this answer :)