Extracting beats out of MP3 music with Python

若如初见. 提交于 2020-01-13 09:12:33

问题


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.


回答1:


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()


来源:https://stackoverflow.com/questions/6203007/extracting-beats-out-of-mp3-music-with-python

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!