vote up 1 vote down star
1

How to I properly parameterize the speech recognizer so that it can more easily recognize the words that the user will probably say?

As far as I can tell there is no way.

I believe this site is wrong: http://www.4feets.com/2009/04/speech-recognition-in-android-sdk-15/

According to the site, this code: ArrayList< String > potentialResults = new ArrayList< String >();
potentialResults.add("yellow");
potentialResults.add("green");
potentialResults.add("blue");
potentialResults.add("red");

// Create Intent  
Intent intent = new Intent("android.speech.action.RECOGNIZE_SPEECH");

Will give a hint to the recognizer that you might say those words. However, it appears to do absolutely nothing. It also conflicts with the google documentation which says:

"An ArrayList of the potential results when performing ACTION_RECOGNIZE_SPEECH. Only present when RESULT_OK is returned." This hints that the array is a return value NOT an input.

To test this out try adding: ArrayList< String > potentialResults = new ArrayList< String >();
potentialResults.add("cumin"); and try to get the speech recognizer to recognize it. You will find it very difficult.

Does any one have insight into how to properly control the speech recognizer?

flag

75% accept rate

1 Answer

vote up 2 vote down check

If by "control" you mean "supply a list of possible results", I suspect you don't.

I believe you are correct vis a vis the linked-to blog post being wrong. However, AFAIK, the only control you have over the speech is to indicate if it is LANGUAGE_MODEL_FREE_FORM or LANGUAGE_MODEL_WEB_SEARCH.

EXTRA_RESULTS are the outputs, as you indicate, with the possible matches for the spoken prose. You can see the results used in an API sample.

link|flag
I was afraid you would say that. Hopefully they will improve the API in the next version of Android. This API they have in version 3 is hard to use. – gregm Aug 2 at 17:32

Your Answer

Get an OpenID
or

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