Extracting beats out of MP3 music with Python

What kind of solutions are there to analyze beats out of MP3 music in Python? The purpose of this would be to use rhythm information to time the keyframes of generated animation, export animation as video file and and mix the video and audio together.


Check this:

The Echo Nest Remix API

# You can manipulate the beats in a song as a native python list
beats = audio_file.analysis.beats
beats.reverse()
链接地址: http://www.djcxy.com/p/52888.html

上一篇: 在Android 2.2中添加日历和事件

下一篇: 用Python提取MP3音乐的节拍