Call-Recorder
Call-Recorder copied to clipboard
not working call recorder 7.1.1 others side person voice not recording
i have some problems with android version 7.1.1 neither call recorder does not record voice calls other side person .please advise me which recorder goes or works on android 7.1.1 thanks
Hi Rahul, I am aware of the issue and I have mentioned this in the description of my app also. This is due to security protocols in android 7. Since these protocols have been implemented in java layer, the only solution I know is using ndk to bypass the those protocols.
But, in my code, other side voice is not totally mute, it can be heard if volume be put on max. Currently I cant work on ndk, but i will soon update my app with fully compatibility with Android 7.
Did you fixed it ? Or can you guide how to resolve this issue with NDK ?
Sorry, I did not fix it. But with ndk, you have to access the mic and incoming stream of voice using. You have to put the recording code at c level, so that it does not reach the java layer and spoil the recording.
Sent from Yahoo Mail on Android
On Tue, 14 Aug 2018 at 19:12, Harsh Bhavsar[email protected] wrote:
Did you fixed it ? Or can you guide how to resolve this issue with NDK ?
— You are receiving this because you commented.
Reply to this email directly, view it on GitHub, or mute the thread.
Please, can you update your working code and upload it here or give working snippet
Hi,Sorry I am working on some other technology for now. But, I will definitely fix it, which might take a few weeks.
Sent from Yahoo Mail on Android
On Tue, 14 Aug 2018 at 21:41, ablito19[email protected] wrote:
Please, can you update your working code and upload it here or give working snippet
— You are receiving this because you commented.
Reply to this email directly, view it on GitHub, or mute the thread.
ok. But explain me please what are you talking about " You have to put the recording code at c level .... " I just want to khow how and where i edit code to get working.
thanks you
change this line to recorder.setAudioSource(MediaRecorder.AudioSource.MIC); in your recording service to recorder.setAudioSource(MediaRecorder.AudioSource.VOICE_CALL); and try again.
I was facing the same issue, this solved the problem in my case at least.
@hfarhanahmed since VOICE_CALL is using Capture Audio Output permission which is not available for third parties now we cant use this audio source