私はこのコードを記録してコールを記録しました。 Android 2.1では正常に動作します。 Android 2.2では、0バイトの出力ファイルを作成します。Android 2.2でレコードコール
どうすれば解決できますか?
MediaRecorder _recorder = new MediaRecorder();
public void start() throws IOException {
try {
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(Environment.getExternalStorageDirectory().getAbsolutePath()
+ "/sam.wav").getParentFile();
if (!directory.exists() && !directory.mkdirs()) {
throw new IOException("Path to file could not be created.");
}
_recorder.setAudioSource(MediaRecorder.AudioSource.VOICE_CALL);
_recorder.setOutputFormat(MediaRecorder.OutputFormat.DEFAULT);
_recorder.setAudioEncoder(MediaRecorder.AudioEncoder.DEFAULT);
setOutputFile(Environment.getExternalStorageDirectory().getAbsolutePath()
+ "/test.wav");
_recorder.prepare();
_recorder.start();
} catch (Exception e) {
e.printStackTrace();
}
}
それが働いています。返信ありがとうございます。 –
少なくともドキュメンテーションによると、VOICE_UPLINKは定数2を持ち、VOICE_DOWNLINKは定数3を持っているので、それらをORして3を返します。おそらく動作しますが、DOWNLINKしか記録しないようです。 –