Android 上的 MediaPlayer.snoop
我在 访问中找到了函数 MediaPlayer.snoop(short[], int)用于音频可视化的 Android 媒体流,但我无法使用它。
我想知道 MediaPlayer.class 中有一个方法 snoop 。 看起来它不是公共方法,而是 MediaPlayer 的私有方法。 如果有的话我怎样才能从该方法获取音频流。
谢谢。
I found the function MediaPlayer.snoop(short[], int) in Accessing the Android media stream for audio visualization but I couldn't use it.
I am wondering there is a method snoop in MediaPlayer.class.
Looks it is not public method but private one of MediaPlayer.
If there is how can i get audio stream from that method.
Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看看这个开源壁纸应用程序的 GrabAudio 类,
https://bitbucket.org/Metastable/deadmau5-audio-visualizer/src/249150da7cfa2c20e8d1456a31aaabd46df6d26d/src/com/metastable/deadmau5?at=default
这是一个神奇的课程,将会获得大量的音频数据。非常有用的来源。
这是您可以查看的另一个开源应用程序,但它似乎没有从输出中获取音频数据,它只是加载一个媒体播放器并分析该播放器。
https://github.com/felixpalmer/android-visualizer
Look at the GrabAudio class of this open source wallpaper app,
https://bitbucket.org/Metastable/deadmau5-audio-visualizer/src/249150da7cfa2c20e8d1456a31aaabd46df6d26d/src/com/metastable/deadmau5?at=default
This is a magic class that will get tons of audio data. Very useful source.
This is the other open source app that you can look at but it doesn't seem to get audio data from the output, it just loads a media player and analyzes that one.
https://github.com/felixpalmer/android-visualizer