我正在尝试在Android模拟器中录制语音(android 4.1)。
但是当我按下按钮开始录制时,它会立即从该功能返回并执行下一行,记录一条消息“Recorded”。
然后,我按下停止按钮,在Logcat消息中显示媒体记录器因未处理的事件而离开。
如果我再次按下按钮开始录制,那么我收到一条错误消息,说明致命信号11.我不知道如何访问SD卡以查看文件是否已创建。
以下是我在教程中使用的logCat代码:
}
public void start() throws IOException {
String state = android.os.Environment.getExternalStorageState();
if(!state.equals(android.os.Environment.MEDIA_MOUNTED)) {
throw new IOException("SD Card is not mounted. It is " + state + ".");
}
// make sure the directory we plan to store the recording in exists
File directory = new File(path).getParentFile();
if (!directory.exists() && !directory.mkdirs()) {
throw new IOException("Path to file could not be created.");
}
recorder.setAudioSource(MediaRecorder.AudioSource.MIC);
recorder.setOutputFormat(MediaRecorder.OutputFormat.THREE_GPP);
recorder.setAudioEncoder(MediaRecorder.AudioEncoder.AMR_NB);
recorder.setOutputFile(path);
try{
recorder.prepare();
}
catch(IOException e){
Log.e("Recorder","Recording failed");
}
recorder.start();
}
/**
* Stops a recording that has been previously started.
*/
public void stop() throws IOException {
recorder.stop();
recorder.release();
}
logCat是:
08-08 16:09:39.713:D / gralloc_goldfish(743):未检测到GPU仿真的仿真器。
08-08 16:09:42.674:D / Recorder(743):录制
08-08 16:09:48.764:W / MediaRecorder(743):mediarecorder因未处理的事件而离开
08-08 16:13:01.613:A / libc(743):致命信号11(SIGSEGV)位于0x00000010(代码= 1),线程743(xample.recorder)
答案 0 :(得分:3)
我在释放之前通过静止录音机解决了这个问题。
recorder.stop();//stop recording
recorder.reset();
recorder.release();
答案 1 :(得分:1)
每次创建一个新的记录器实例,你都不会收到任何错误。
recorder.stop();
recorder.release();
recorder=null;
让以下内容成为startRecording()方法的第一行 -
recorder=new MediaRecorder();
了解更多信息 - http://developer.android.com/guide/topics/media/audio-capture.html