Is it possible in android to record the call during incoming or outgoing calls

前端 未结 5 1527
青春惊慌失措
青春惊慌失措 2021-02-10 13:47

In android is it possible to record voice call during incoming/outgoing calls without open the speaker of mobile. I had seen a application in the android market. It does not cor

5条回答
  •  隐瞒了意图╮
    2021-02-10 14:38

    You need use MediaRecorder class as follows,

    recorder = new MediaRecorder();
    int audioSource = MediaRecorder.AudioSource.VOICE_CALL;
    recorder.setAudioSource(audioSource);
    recorder.setOutputFormat(MediaRecorder.OutputFormat.THREE_GPP);
    recorder.setAudioEncoder(MediaRecorder.AudioEncoder.AMR_NB);
    final String filePath = Environment.getExternalStorageDirectory() + "/record.3gpp";
    final File file = new File(filePath);
    file.getParentFile().mkdirs();
    recorder.setOutputFile(filePath);
    recorder.prepare();
    recorder.start(); // Recording is now started
    

提交回复
热议问题