python 利用mutagen读取MP3 ID3信息
程序员文章站
2022-06-21 15:05:01
...
2018-10-25
from mutagen import File
afile = File(path)
artwork = afile.tags['APIC:'].data
author = afile.tags["TPE1"].text[0]
title = afile.tags["TIT2"].text[0]
album = afile.tags["TALB"].text[0]
with open(title.replace('/','-')+'.jpg', 'wb') as img:
img.write(artwork)
上一篇: 深入浅出JDK动态代理(二)
下一篇: java解析mp3工具