Android - 语音识别限制听力时间

时间:2016-04-26 14:34:15

标签: android speech-recognition recognizer-intent

我使用Google API进行语音识别,但希望限制收听时间。例如两秒钟。两秒钟后,即使用户继续说话,识别器仍应停止收听。我试过像

这样的EXTRA

EXTRA_SPEECH_INPUT_COMPLETE_SILENCE_LENGTH_MILLIS EXTRA_SPEECH_INPUT_MINIMUM_LENGTH_MILLIS EXTRA_SPEECH_INPUT_POSSIBLY_COMPLETE_SILENCE_LENGTH_MILLIS

但它没有帮助我。 我的完整代码在这里,如果有人可以帮助我,我将不胜感激

public void promptSpeechInput()
{
    //This intent recognize the peech
    Intent i = new Intent(RecognizerIntent.ACTION_RECOGNIZE_SPEECH);
    i.putExtra(RecognizerIntent.EXTRA_LANGUAGE_MODEL, RecognizerIntent.LANGUAGE_MODEL_FREE_FORM);
    i.putExtra(RecognizerIntent.EXTRA_LANGUAGE, Locale.getDefault());
    i.putExtra(RecognizerIntent.EXTRA_PROMPT, "Say Something");

    try {
        startActivityForResult(i, 100);
    }
    catch (ActivityNotFoundException a)
    {
        Toast.makeText(MainActivity.this,"Your device does not support",Toast.LENGTH_LONG).show();
    }
}

//For receiving speech input
public void onActivityResult(int request_code, int result_code, Intent i)
{
    super.onActivityResult(request_code, result_code, i);

    switch (request_code)
    {
        case 100: if(result_code == RESULT_OK && i != null)
        {
            ArrayList<String> result = i.getStringArrayListExtra(RecognizerIntent.EXTRA_RESULTS);
            resultTEXT.setText(result.get(0));
        }
            break;
    }
}

2 个答案:

答案 0 :(得分:2)

您无法限制识别器正在侦听的时间。只需设置他在关闭前需要听的最短时间,但不是最大时间。

我一直在寻找这个问题的解决方案,所以我希望你能找到更好的解决方案。我从另一个StackOverflow伙伴发现了这篇帖子:

SpeechRecognizer Time Limit

在那里,他提出了解决问题的下一个可能性:

  

你最好的选择是连接某种计时器,类似于   CountDownTimer:

 yourSpeechListener.startListening(yourRecognizerIntent);
 new CountDownTimer(2000, 1000) {

 public void onTick(long millisUntilFinished) {
     //do nothing, just let it tick
 }

 public void onFinish() {
     yourSpeechListener.stopListening();
 }   }.start();

另一方面,为了简化SpeechRecognition,您可以将下一个参数添加到Intent: 的 EXTRA_PARTIAL_RESULTS

这将使您从SpeechRecognizer获得部分结果,这意味着您的方法onActivityPartialResult将返回另一个具有匹配值的数组。在onActivityResults之前调用此方法并且它更快,但当然不如onActivityResult精确。如果您的倾听者正在寻找特定的单词,那么这只会对您有帮助。

希望这会对您的应用程序有所帮​​助!

祝你好运!

答案 1 :(得分:0)

我正在做相反的事情,我需要那个语音监听器在手动停止之前不要发现。我仍然没有选择使其不受限制。 (如果有人知道该怎么做,请告诉)。

关于您的限时问题。

for train_index, validation_index in kfold.split(X, y):
    # Fit the model
    X_train = X.iloc[train_index]
    y_train = y[train_index]
    clf.fit(X_train, y_train)

公共静态最终字符串EXTRA_MAX_RESULTS 可选的最大返回结果数限制。如果省略,识别器将选择返回多少结果。必须是整数。

常量值:“ android.speech.extra.MAX_RESULTS”
因此,如果将其设置为1,它将仅接受2-4个单词,等等。