【发布时间】:2018-09-02 12:11:03
【问题描述】:
我厌倦了使用 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);
但录音只有麦克风的声音
我想像安卓应用一样记录双方通话 Automatic Call Recorder
【问题讨论】: