Media Recorder To record calls is sometime unable to Record other side voice

前端 未结 1 1741
春和景丽
春和景丽 2020-12-15 23:07

In my application there is a feature to record voice calls and it works perfectly well. But when tested on (Samsung s7, s8 ) it doesn’t work well. The application is able to

相关标签:
1条回答
  • 2020-12-15 23:44

    AudioSource.VOICE_CALL is not working in some android devices so instead of VOICE_CALL use below

    First try MediaRecorder.AudioSource.CAMCORDER

     MediaRecd = new MediaRecorder();
            MediaRecd.setAudioSource(MediaRecorder.AudioSource.CAMCORDER
            );
    

    If above is not working than use MediaRecorder.AudioSource.MIC

    MediaRecd = new MediaRecorder();
            MediaRecd.setAudioSource(MediaRecorder.AudioSource.MIC
            );
    
    0 讨论(0)
提交回复
热议问题