同时录制音频并转换为文本

时间:2013-04-24 09:31:51

标签: android speech-to-text

我开发了一个应用程序,用于记录特定持续时间的音频,另一个应用程序使用Web将语音转换为文本。 这两件事可以同时完成吗?我的意思是录制音频并将录制的音频文件中的语音转换为文本?

1 个答案:

答案 0 :(得分:0)

您执行此操作的方式可能不太准确,因为对语音输入有许多不同的建议。但你可以给它一个打击 根据我的理解,你应该在后台服务中运行音频并开始语音检测 对于后台服务this是您使用它们的方式。您也可以看到完整的应用here 对于语音识别,您可以参考here

这是您创建服务的方式 最好将您的媒体代码投入使用。这是在后台播放媒体的最佳方式。

public class serv extends Service{

    MediaPlayer mp;
    @Override
    public IBinder onBind(Intent intent) {
        // TODO Auto-generated method stub
        return null;
    }
    public void onCreate()
    {   
        mp = MediaPlayer.create(this, R.raw.b);
        mp.setLooping(false);
    }
    public void onDestroy()
    {       
        mp.stop();
    }
    public void onStart(Intent intent,int startid){

        Log.d(tag, "On start");
        mp.start();
    }
}

其中raw是在资源中创建的文件夹。和R.raw.b是一个mp3文件 在您触发此意图之前调用此服务。

/**
 * 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, "Voice recognition 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)
    {
        // Populate the wordsList with the String values the recognition engine thought it heard
        ArrayList<String> matches = data.getStringArrayListExtra(
                RecognizerIntent.EXTRA_RESULTS);
        wordsList.setAdapter(new ArrayAdapter<String>(this, android.R.layout.simple_list_item_1,
                matches));
    }
    super.onActivityResult(requestCode, resultCode, data);
}