オーディオを録音しようとしています
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 例外がスローされます。
- prepare メソッドの前にファイルを作成する必要がありますか? 何かのようなもの
new File(...)
- もしそうなら、ファイルパスはどれですか?
ありがとう。