如何使用Android'语音文本与音频样本文件

时间:2013-09-17 12:04:09

标签: android audio speech-to-text

我能够运行一个使用此代码使用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);
    }

这很好用,但我想知道,是否可以使用语音文本和音频样本(字节数组?)而不是录制语音?

亲切的问候