gpt4 book ai didi

python - 删除音乐文件元数据标签

转载 作者:太空宇宙 更新时间:2023-11-03 18:54:44 30 4
gpt4 key购买 nike

如何从 FLAC 文件或 MP3 ID3 标签中删除元数据标签?我可以使用mutagen编辑信息,但如何删除部分信息?

我需要删除名为 fmps_playcount 的标签,但不需要删除其余元数据。

最佳答案

对于 ID3 标签,您可以使用 delall 删除框架。例如:

>>> print audio.pprint()
TPE1=Agalloch
TALB=The Mantle
TRCK=1/9
TIT2=A Celebration For The Death Of Man...
TCON=Metal
>>> audio.delall('TCON')
>>> print audio.pprint()
TPE1=Agalloch
TALB=The Mantle
TRCK=1/9
TIT2=A Celebration For The Death Of Man...

对于删除 FLAC 元数据(我没有任何 FLAC 文件来测试这一点),我有一个很好的感觉:

>>> del audio['tag_to_delete']

由于帮助文档中有:

 |  __delitem__(self, key)
| Delete a metadata tag key.
|
| If the file has no tags at all, a KeyError is raised.

您可以在此处阅读有关 delitem 魔术方法的更多信息:http://www.rafekettler.com/magicmethods.html

关于python - 删除音乐文件元数据标签,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17538328/

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