gpt4 book ai didi

python - 如何使用 eyed3 从 python 中的 .mp3 文件中获取详细信息(标题、艺术家)

转载 作者:太空宇宙 更新时间:2023-11-04 07:38:03 32 4
gpt4 key购买 nike

这是我的代码

import eyed3

audiofile = eyed3.load("19 Calvin Harris - Summer.mp3")

print(audiofile.tag.artist)

这是一个错误

Traceback (most recent call last):
File "C:\Python34\testmp3.py", line 5, in <module>
print(audiofile.tag.artist)
AttributeError: 'NoneType' object has no attribute 'artist'

Visual Studio 中显示了属性。但是当我运行它时发生了错误

当我编写 print(audiofile) 时,它起作用了。我不知道为什么附言。 Python 3.4。

最佳答案

试试这个代码,它对我有用

import eyed3

def show_info():
audio = eyed3.load("[PATH_TO_MP3]")
print audio.tag.artist
print audio.tag.album
print audio.tag.title

show_info()

关于python - 如何使用 eyed3 从 python 中的 .mp3 文件中获取详细信息(标题、艺术家),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29702179/

32 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com