在一些特定的手机,如联想K6电源(K33A42)媒体录像机无法录制,我已经尝试更改所有的AudioSource,在VOICE_CALL上它不录制。在麦克风上,它会记录,但输出文件是静默的。
private void startRecording() {
mRecorder = new MediaRecorder();
mRecorder.setAudioSource(MediaRecorder.AudioSource.MIC);
mRecorder.setOutputFormat(MediaRecorder.OutputFormat.THREE_GPP);
mRecorder.setOutputFile(mFileName);
mRecorder.setAudioEncoder(MediaRecorder.AudioEncoder.AMR_NB);
https://stackoverflow.com/questions/44451680
复制相似问题