很久以前就有人问过这个问题,但我发现自己也遇到了同样的问题。
经过一番繁重的谷歌搜索,我找到了这个答案,它使用ffmpeg编码器来修复不正确的元数据。
这是一个解决方案,希望可以节省一些时间。
我们可以使用ffmpeg复制文件并使用以下命令自动修复错误的元数据:
ffmpeg -v quiet -i "sound.mp3" -acodec copy "fixed_sound.mp3"
-v quiet
修饰符阻止它将命令的详细信息打印到控制台。
要检查您是否已经拥有ffmpeg,ffmpeg -version
请在命令行上运行。(如果没有,你可以从这里下载:https ://ffmpeg.org/ )
我在下面写了一个函数,应该可以解决问题!
import os
def fix_duration(filepath):
## Create a temporary name for the current file.
## i.e: 'sound.mp3' -> 'sound_temp.mp3'
temp_filepath = filepath[ :len(filepath) - len('.mp3')] + '_temp' + '.mp3'
## Rename the file to the temporary name.
os.rename(filepath, temp_filepath)
## Run the ffmpeg command to copy this file.
## This fixes the duration and creates a new file with the original name.
command = 'ffmpeg -v quiet -i "' + temp_filepath + '" -acodec copy "' + filepath + '"'
os.system(command)
## Remove the temporary file that had the wrong duration in its metadata.
os.remove(temp_filepath)