Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试读取此文件的元数据
http://wormtune.com/test/1.mp3
使用 python 2.7 和 audiotools 2.19。
import audiotools a = audiotools.open('/tmp/1.mp3') a.get_metadata() # <-- dead hanging
python正在使用100%的cpu并且什么都不做......这是怎么回事?如何防止挂起?
该代码似乎有效。我在本地有两个文件(一个是 flac,另一个是 mp3),它们可以打印元数据。但是当我尝试您的文件时,它会引发错误“UnsupportedFile”。
也许您可以尝试 except block 以避免阻塞。
我正在使用最新的音频工具和 python 2.7。