Horizon
This project aims to provide pretty cool equaliser for any Android audio project. Made in [Yalantis]
Usage
For a working implementation, please have a look at the Sample Project - sample
-
Include the library as local library project.
compile 'com.yalantis:eqwaves:1.0.1'
-
Initialize Horizon object with params regarding to your sound
mHorizon = new Horizon(glSurfaceView, getResources().getColor(R.color.background), RECORDER_SAMPLE_RATE, RECORDER_CHANNELS, RECORDER_ENCODING_BIT); ```
-
To update Horizon call updateView method with chunk of sound data to proceed
byte[] buffer = new byte[bufferSize]; //here we put some sound data to the buffer mHorizon.updateView(buffer); ```
Compatibility
- Library - Android ICS 4.0+
- Sample - Android ICS 4.0+
Changelog
Version: 1.0.1
- Version update
Version: 1.0
- Initial Build