Record phone calls on android phone?

前端 未结 5 1482
执笔经年
执笔经年 2020-12-01 02:39

I tried it and use the following code for recording outgoing calls but it does not..

  @Override
  public void onReceive(Context context, Intent intent) 
  {         


        
5条回答
  •  暖寄归人
    2020-12-01 02:56

    This can be solved with API level 8+. Set your audio source for media recorder as phone uplink, downlink, or both.

    recorder.setAudioSource(MediaRecorder.AudioSource.VOICE_CALL); //Voice downlink/ Uplink
    recorder.setOutputFormat(MediaRecorder.OutputFormat.THREE_GPP);
    recorder.setAudioEncoder(AudioEncoder.AAC );
    

    But beware of the law and regulations before doing this.

提交回复
热议问题