8

我能够使用以下代码运行一个使用 Android 语音到文本的示例项目:

   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, "Voice recognition Demo...");
        startActivityForResult(intent, REQUEST_CODE);
    }

这工作正常,但我想知道,是否可以使用音频样本(字节数组?)而不是录制的语音来使用语音到文本?

亲切的问候

4

1 回答 1