gpt4 book ai didi

python - 有没有办法从音频文件中删除/编辑名为 "tag"的元数据条目,而无需安装任何其他内容?

转载 作者:太空宇宙 更新时间:2023-11-03 20:37:34 25 4
gpt4 key购买 nike

我想删除音频文件的数据片段,例如iTunes 用于显示歌曲列表。它还使用这段数据对它们进行排序。我相信这段数据是文件元数据的一部分,称为标签

我想使用自己编写的 Python 脚本来完成此操作。我不想手动执行此操作或通过更改计算机上的任何内容来执行此操作。

我发现无法使用 stat 模块来做到这一点。我正在使用 Python 2.7.10

我目前对 2 种文件格式感兴趣:mp3 和 mp4。我在这里阅读了一些有关 mp3 格式的文章:https://en.wikipedia.org/wiki/ID3 。其中写道:“ID3v1 标记占用 128 个字节,从距离文件末尾 128 个字节的字符串 TAG 开始。”所以我尝试用 0 覆盖它们来删除这些字节。

感谢 martineau,我改进了我的脚本:

import os
import sys

# had to use a different file which really contains a tag
vPath = "/Users/klausdorsch/Desktop/wegdamit/Armada.01.mp3"
with open(vPath, "r+b") as vFile: # Open existing file for reading and writing.
vFile.seek(-128, os.SEEK_END) # Seek 128 bytes before end of file.
# Verify ID3v1 tag header starts there.
tag = vFile.read(3)
if tag == 'TAG':
print 'found a tag!'
# had to add brackets in the line below to avoid TypeError:
# unsupported operand type(s) for -: 'str' and 'int'
vFile.write('\x00' * (128-3)) # Zero-out tag's contents.

sys.exit()

当我第一次运行它时,它输出:“找到一个标签!”,因此已经找到一个标签。当我第二次运行它时,没有这样的输出,因此标签应该已被删除。但是当我用 iTunes 打开该文件时,标签的内容仍然存在。

最佳答案

我认为主要问题是您以首先截断文件的模式打开文件。您 seek() 的方式和位置似乎也不正确 - 而且它只需要执行一次,因为读取和写入文件会自动前进其内部当前位置。

尝试这样做,这会保持文件的其余部分完好无损,并且仅在找到 ID3v1 标记的内容时将其清零。

import os
import sys

vPath = "/Users/klausdorsch/Desktop/wegdamit/08ICanMakeYouAManReprise.mp3"
with open(vPath, "r+b") as vFile: # Open existing file for reading and writing.
vFile.seek(-128, os.SEEK_END) # Seek 128 bytes before end of file.
# Verify ID3v1 tag header starts there.
tag = vFile.read(3)
if tag == 'TAG':
vFile.write('\x00' * 128-3) # Zero-out tag's contents.

sys.exit()

关于python - 有没有办法从音频文件中删除/编辑名为 "tag"的元数据条目,而无需安装任何其他内容?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57072936/

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