如何在 openSL ES (Android) 中调节音量?
正如我从 openSL ES 的官方文档中读到的,可以从音频播放器设置音量级别。但如何呢?我尝试从音频播放器获取 VolumeItf 但得到:
SL_RESULT_FEATURE_UNSUPPORTED
我理解吗,此消息意味着 Android 中不支持配置文件。但如何获得音量控制呢?
提前致谢
As I read from the official docs for openSL ES, there are capabilities for setting volume level from Audio Player. But how? I tried to get VolumeItf from the audio player but got:
SL_RESULT_FEATURE_UNSUPPORTED
Is I understood, this message means that profiles are not suuported in Android. But how to get access to volume control?
Thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 IID_VOLUME 请求创建 AudioPlayer 对象。如果不这样做,API 将返回 SL_RESULT_FEATURE_UNSUPPORTED。
这个解决方法并不简单,但对我来说适用于 ndk r6。
Create AudioPlayer object with IID_VOLUME request. Without doing this, the API returns SL_RESULT_FEATURE_UNSUPPORTED.
This workaround is not straightforward but works for me on ndk r6.