Android Recording Incoming and Outgoing Calls

后端 未结 4 1674
野趣味
野趣味 2020-11-27 11:16

I am trying to understand is there a way I can record calls incoming and outgoing on android phones 2.2 and above?

A client wants to record calls of the agents they

4条回答
  •  粉色の甜心
    2020-11-27 11:38

    I am using mic to record calls for better support and compatibility.

    MediaRecorder recorder = new MediaRecorder();
    recorder.reset();
    recorder.setAudioSource(MediaRecorder.AudioSource.MIC);
    recorder.setOutputFormat(MediaRecorder.OutputFormat.MPEG_4);
    recorder.setAudioEncoder(MediaRecorder.AudioEncoder.AAC);
    recorder.setOutputFile(your_desired_folder_path);
     try {
        recorder.prepare();
    } catch (java.io.IOException e) {
        recorder = null;
        return;
    }
    recorder.start();
    

提交回复
热议问题