vivek tiwari
vivek tiwari

Reputation: 645

How to record call in android

i want to record both incoming and outgoing calls. is it possible in android.

i don't want to use Speaker mode. want without MIC.

i search a lot of but there is nothing to seems work.

please give me suggestion.

Upvotes: 1

Views: 937

Answers (2)

stinepike
stinepike

Reputation: 54732

you can not record call in all handsets. Only in handsets which allowed the api to record voice call, you will be able to record a call. in those handsets you can set the audiosource of mediarecorder by using following.

MediaRecorder.setAudioSource(MediaRecorder.AudioSource.VOICE_DOWNLINK | MediaRecorder.AudioSource.VOICE_UPLINK )

Upvotes: 2

user4232
user4232

Reputation: 592

I think this links will help you...

link1

link2

link3

Thanks....

Upvotes: 0

Related Questions