Extracting beats out of MP3 music with Python
What kind of solutions are there to analyze beats out of MP3 music in Py开发者_开发问答thon? 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()
精彩评论