A Android Equalizer Library depend on JUCE.
Subproject :app is an example of how to use in Exoplayer. Run gradlew :app:build to build example.
- Enable PCM processer interface of equalizer
- Enable 10 frequencies control interface
- To encapsulate an equalizer class for easier audio adjustment
- To add other Audio Effect
- Clone this project to
<your_path>.
git clone https://github.com/SinnyLang/AndroidJuceDspInterface.git
cd AndroidJuceDspInterface
git submodule update --init --recursive- Export this library. In your project
settings.gradleadd
include ':AndroidJuceDspInterface:dsp-lib'then add
implementation project(':dsp-lib')in your build.gradle.
- Clone this project and enter this project root path.
- Run gradle build.
git clone https://github.com/SinnyLang/AndroidJuceDspInterface.git
cd AndroidJuceDspInterface
git submodule update --init --recursive
gradlew :mylibrary:build- The
.aarfiles will be generated indsp-lib/build/outputs/aar/<xxx>.aarand copy an AAR file to your project.