使用Google的服务器通过Chrome的HTML 5语音输入支持进行语音识别时,每次获得用户语音音频的6种可能解释时,您将获得大约6个结果。当我在我的Android应用程序中执行相同的操作时,我似乎只回来了一个。这只是它的方式还是有一个设置会导致Android识别器意图返回多个话语?
相关代码示例:
/**
* Fire an intent to start the voice recognition activity.
*/
private void startVoiceRecognitionActivity()
{
Intent intent = new Intent(RecognizerIntent.ACTION_RECOGNIZE_SPEECH);
intent.putExtra(RecognizerIntent.EXTRA_LANGUAGE_MODEL,
RecognizerIntent.LANGUAGE_MODEL_FREE_FORM);
intent.putExtra(RecognizerIntent.EXTRA_PROMPT, "Speech reco demo...");
startActivityForResult(intent, REQUEST_CODE);
}
/**
* Handle the results from the voice recognition activity.
*/
@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data)
{
if (requestCode == REQUEST_CODE && resultCode == RESULT_OK)
{
// Set the current global speech results to this latest session's.
ArrayList<String> matches = data.getStringArrayListExtra(
RecognizerIntent.EXTRA_RESULTS);
AndroidApplication andApp = AndroidApplication.getInstance();
andApp.speechRecoResults.setContents(matches);
}
super.onActivityResult(requestCode, resultCode, data);
} // onActivityResult()
更新:我将以下代码行添加到startVoiceRecognitionActivity()中| Z | Shadow | Z |就在startActivityForResult()调用之前,我现在得到了多个话语:
intent.putExtra(RecognizerIntent.EXTRA_MAX_RESULTS,5);
- roschler
答案 0 :(得分:2)
是的它可以返回多个话语我有一些实现这样做。你可以发布你正在使用的代码,这样我们可以帮助你更好吗?
回答评论:
是的,我可以将其设置为返回,但是很多服务器选择...我通常只将其设置为5.检查我之前的帖子,其中包含我的一个实现的代码。 Voice Recognition as a background service这个会禁用Google记录时弹出的对话框。该行获取要返回的结果数量:intent.putExtra(RecognizerIntent.EXTRA_MAX_RESULTS,5)