如何在android中从mp3的标题中获取其bpm
我正在尝试计算歌曲的 BPM。通常在 iPhone 中,用户使用从 iTune 获取歌曲,其中歌曲与预先计算的 bpm 一起列出,而在 Android 设备中如何才能做到这一点,是否有任何网站可以提供所有这些详细信息。
是否有任何算法可以从歌曲的标题中获取歌曲的节拍数。任何人都可以给我该算法的示例代码吗?
i m trying to calculate the bpm of a song. Normally in iPhone the user use to get the song from iTune where the songs are been listed out along with the pre calculated bpm whereas in android devices how can it be done is there any site to give all those details.
Is there any algorithm to get the bpm of a song from its header. Can any one give me a sample code for that algorithm.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Mp3 有不同的标签,其中包含有关 MP3 BPM 的各种信息,包含在 ID3 v2.3 中,因此您必须手动编写解析器来解析标签字节并找出 BPM,在这里您将找到有关 MP3 标签
Mp3 have different tags which contain various info about the MP3 BPM is included in ID3 v2.3 so you have to manually write your parser that will parse the byte of Tag and find out BPM here you will find more info about MP3 Tags