xDeathwing
xDeathwing

Reputation: 139

Android recording an apps sound output

Hello guys I have a question

I have to admit before I ask my question I never used Android Sdk before but I have coded java for couple of years.

I have a fm radio app.It's an internet radio and I want to record it's output. Is it possible to use an external app to record some other app's output? And if yes, It also has some pre recorded shows which you can listen within the app. They do not get saved into my device when I listen however is it possible to download those shows? Like finding source of the audio and downloading it using my external app.

I'm pretty sure that the recorded shows are downloaded from the internet. I know some audio grabbers as browser extensions in Pc. So I'm asking, if such thing is possible in Android as well.

Upvotes: 1

Views: 685

Answers (1)

Stanley Ko
Stanley Ko

Reputation: 3497

See below:

https://stackoverflow.com/a/25741006/850347 Seems to be currently there is no way to achieve this. I have read this article and it suggests to recompile the Android source code with some changes.

Or, you can use visualizer.

https://stackoverflow.com/a/25816052/850347 The closest API available to you for these purposes is Visualizer. Which only captures "partial and low quality audio content".

Upvotes: 1

Related Questions