我厌倦了使用MediaRecorder录制通话电话 我正在测试的所有设置
this.mediaRecorder = new MediaRecorder();
this.mediaRecorder.setAudioChannels(1);
this.mediaRecorder.setAudioSamplingRate(44100);
this.mediaRecorder.setAudioEncodingBitRate(64000);
this.mediaRecorder.setAudioSource(MediaRecorder.AudioSource.MIC);
this.mediaRecorder.setOutputFormat(MediaRecorder.OutputFormat.MPEG_4);
this.mediaRecorder.setOutputFile(path);
this.mediaRecorder.setAudioEncoder(MediaRecorder.AudioEncoder.AMR_WB);
但录音仅来自麦克风
我想像Android应用程序一样记录双方通话 Automatic Call Recorder