Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Please help me if you know how to record voice, and also to record the voice of both caller and calle during a phone call. If anybody knows then give me a hint.

share|improve this question
1  
pls refer this androidforums.com/t-mobile-g1/… – Sankar Ganesh Nov 16 '10 at 13:03

7 Answers

Check this out...

http://androidforums.com/android-lounge/181663-android-phone-call-recording-function.html

The short answer is... Get a Galaxy S, preferably the South Korean version.

share|improve this answer

You can't record a phone conversation on Android. The streams are in the lower level operating system and are not accessible in the application level. Sorry.

share|improve this answer

I dont know if its possible but as far as API goes

recorder.setAudioSource(MediaRecorder.AudioSource.VOICE_CALL);

this line compiles well in my code where recorder is an Object of MediaRecorder and I was once working on such project but later the project was dumped so not sure if it works or not

share|improve this answer

As far as I know, all the applications that record voice calls on Android have the same problem: they only work on some phones, while on other phones you can only hear one side of the conversation. Some of these apps try to solve this problem by recording from the microphone as well.

If you have root permissions on your Android phone, then I believe there are apps that work better because they have access to the lower level streams, as Emmanuel specified in his answer.

share|improve this answer
+1 for guiding..thanks... – Hulk Jul 17 '12 at 12:33

I am afraid of knowing android doesn't have a native api to record voice calls. even the streams are abstracted in Operating System and inaccessible in application layer as Emmanuel hase stated. I consider it as a Serious mistake of Android Devs. if a security Wall have one tiny Hole its not secure any more. So even if droid restricts or tries to restricts there exists other phones where one can have such kind of functionality. even a custom droid kernel can have such kind of functionality. This only makes droid Users poor nothing else.

share|improve this answer

The API is apparently there, but makers have disabled their radio firmware from being able to do this.

share|improve this answer

Depends on phone to phone e.g. You cannot record a call on nexus and motorola phones as they do not allow recording from mic till the call is on going. But the same recording from mic while on call works on most samsung and galaxy devices.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.