欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

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)
相关标签: python mp3