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

前端 未结 5 1531
青春惊慌失措
青春惊慌失措 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:43

    Setting the audio source to MIC worked for me..

    CallRecorder.setAudioSource(MediaRecorder.AudioSource.MIC);
    

    But not all devices provide the hardware support for call recording. Refer this [link]: http://forum.xda-developers.com/showthread.php?t=926498.

    The outcome was that in some phones both the caller and callee's voice got recorded whereas in others only the speaker's voice was recorded.

提交回复
热议问题