我开发了一个应用程序可以记录一段特定时间的音频,另一个应用程序使用网络将语音转换为文本。有没有可能这两件事可以同时进行?我的意思是录制音频并将录制的音频文件中可用的语音转换为文本?
问问题
2088 次
1 回答
0
您执行此操作的方式可能不是很准确,因为语音输入有许多不同的建议。但是你可以给它一个打击。
据我了解,您应该在后台服务中运行音频并启动语音检测。
对于后台服务,这就是您使用它们的方式。您也可以在此处查看完整的应用程序。
语音识别可以参考这里。
这就是您创建服务的方式。
最好将您的媒体代码投入使用。这是在后台播放媒体的最佳方式。
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);
}
于 2014-11-30T09:47:29.973 回答