zee*_*kay 18
我推荐mutagen,它是一个没有其他依赖关系的纯python库,它支持许多不同的音频元数据格式/标签(MP3,FLAC,M4A,Monkey's Audio,Musepack等).要从使用iTunes保存的ID3 v2.4 MP3中提取艺术作品:
from mutagen import File
file = File('some.mp3') # mutagen can automatically detect format and type of tags
artwork = file.tags['APIC:'].data # access APIC frame and grab the image
with open('image.jpg', 'wb') as img:
img.write(artwork) # write artwork to new image
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
7878 次 |
| 最近记录: |