h6ah4i / android-openslmediaplayer

Re-implementation of Android's MediaPlayer and audio effect classes based on OpenSL ES APIs.
https://openslmediaplayer.h6ah4i.com
Apache License 2.0
418 stars 97 forks source link

Project status #12

Open laminsk opened 9 years ago

laminsk commented 9 years ago

Hi

Awesome project, gave me an opportunity to learn opensl library :) Just dropping by to see if the project is still alive?

Keep up the good job!

Cheers.

laminsk commented 9 years ago

Might I also ask whether it's possible to save the audio file while it's playing at the same time? Basically, what I'm trying to achieve is play the audio file from URL, access the buffer and save it to local storage for future use. Any pointers will be greatly appreciated. Thanks!

h6ah4i commented 9 years ago

Hi! Yep, this project is still alive, but recentry I am so busy and have no time to maintain my personal projects though :(

Basically, what I'm trying to achieve is play the audio file from URL, access the buffer and save it to local storage for future use.

For now this library does not provide such feature. If you want to access the output mixed sound data, need ti implement a new extension module like Visualizer or HQVisualizer.

On the other hand, if you want to access just decoded

h6ah4i commented 9 years ago

(Sorry, I have just closed and reopened this issue by mistake...)

On the other hand, if you want to access just decoded audio file data, I recommend you to use OpenSL APIs directly or to use MediaCodec in Java.