Android - 录音机 FileNotFound
我正在尝试录制音频
this.recorder = new android.media.MediaRecorder();
this.recorder.setAudioSource(android.media.MediaRecorder.AudioSource.MIC); this.recorder.setOutputFormat(android.media.MediaRecorder.OutputFormat.DEFAULT);
this.recorder.setAudioEncoder(android.media.MediaRecorder.AudioEncoder.DEFAULT);
this.recorder.setOutputFile("pruebaAudioRecorder.mp4");
**this.recorder.prepare();**
this.recorder.start();
,但是当我调用准备方法时会抛出 FileNotFound 异常。
- 我应该在准备方法之前创建文件吗?类似于
new File(...)
- 如果是这样,文件路径应该是哪个?
非常感谢。
I'm trying to record audio
this.recorder = new android.media.MediaRecorder();
this.recorder.setAudioSource(android.media.MediaRecorder.AudioSource.MIC); this.recorder.setOutputFormat(android.media.MediaRecorder.OutputFormat.DEFAULT);
this.recorder.setAudioEncoder(android.media.MediaRecorder.AudioEncoder.DEFAULT);
this.recorder.setOutputFile("pruebaAudioRecorder.mp4");
**this.recorder.prepare();**
this.recorder.start();
but when i call prepare method throws the FileNotFound exception.
- Should I create the file before prepare method? something like
new File(...)
- If so, which should be the file path?
thx a lot.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是一个很好的解决方案,请记住添加 WRITE_EXTERNAL_STORAGE 权限
http://www .benmccann.com/blog/android-audio-recording-tutorial/
here is a great solution, remember to add the WRITE_EXTERNAL_STORAGE permission
http://www.benmccann.com/blog/android-audio-recording-tutorial/