Reputation: 31
I want to capture the audio playing on android phones.
As for voice call audio source, I can do it by using AudioRecord. But I don't know are there any ways to get other audio sources (for example, the music other app is playing).
Thanks in advance.
Upvotes: 0
Views: 342
Reputation: 1007524
As for voice call audio source, I can do it by using AudioRecord
Only if by "voice call audio source" you mean the microphone.
But I don't know are there any ways to get other audio sources (for example, the music other app is playing).
If the device is in speakerphone mode, you can capture it via the microphone.
Otherwise, you have no rights to access other apps' audio output.
Upvotes: 1