kngtrr
kngtrr

Reputation: 31

Android - Can I get the audio data for playback from the audio mixer?

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

Answers (1)

CommonsWare
CommonsWare

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

Related Questions