How to capture output stream of audio in Android?
Asked Answered
S

1

3

I am a newbie in development and I trying to create an equalizer on Android platform.

How I can capture output audio stream on android? I just need to take audio information that goes out from my application. (I already searched www.developers.android.com and i have not found any information)

Synopsize answered 24/1, 2013 at 7:1 Comment(0)
R
5

There's currently no functionality in Android for recording audio output (well, there's the Visualizer API that let's you grab partial, low-quality audio for audio visualization purposes).
If you only need to apply the effect to the audio from your own app then you could do the "recording" internally. I.e., in your app, send the decoded audio data to your effect to be processed, and then send the processed data to your AudioTrack or OpenSL ES buffer queue.

Retard answered 24/1, 2013 at 7:14 Comment(1)
i have an app this app intercept any audio playing on the phone and apply Equalizer play.google.com/store/apps/details?id=hr.podlanicaIneradicable

© 2022 - 2024 — McMap. All rights reserved.