I use Android Audio Effect/Equalizer API for my app. However, it limits to 5 bands. Is there any document/library that helps to tune more bands for a finer equalizer implementation?
相关问题
- How can I create this custom Bottom Navigation on
- Can we recover audio from MFCC coefficients?
- Bottom Navigation View gets Shrink Down
- How to make that the snackbar action button be sho
- Is there a way to play audio on a mobile browser w
相关文章
- android开发 怎么把图片放入drawable的文件夹下
- android上如何获取/storage/emulated/下的文件列表
- androidStudio有个箭头不认识
- SQLite不能创建表
- Windows - Android SDK manager not listing any plat
- Animate Recycler View grid when number of columns
- Why is the app closing suddenly without showing an
- Android OverlayItem.setMarker(): Change the marker
You can try having a try with sasken-player, it's a reimplementation of the equalizer that will give you 10 bands
Also have a look at this
The number of bands and their center frequencies are dependent upon the handset. The equalizer implementation is baked into the ROM.
This question was asked long ago. Here is a solution for people seeking answer in future. I have found this library for android that provides 10band Equalizer.
Using Android's Equalizer Api on three different devices I was able to get the following result:
1) Samsung Galaxy Note 3 (5 Bands)
2) Huawei Mate 8 (5 Bands)
3) Nexus 5 (5 bands)
using this library I am able to get 10bands on all of the above devices. I have tested it and it is working great.
Include this library in your project. And use the following code to have an Equalizer with 10 bands.
This library has is documentation that you can refer as-well. Hope this helps.