gpt4 book ai didi

python - 如何获取Python中wave模块不支持的.WAV文件的持续时间?

转载 作者:行者123 更新时间:2023-12-01 05:41:59 25 4
gpt4 key购买 nike

我正在编写一个程序来注释 .wav 文件,因此我需要播放它们并了解它们的持续时间。我可以使用 winsound 模块来播放(使用 SND_ASYNC),但我无法使用 wave 模块来读取文件,因为不支持我使用的文件的压缩。

我应该使用另一个模块来获取 .WAV 文件的持续时间,还是应该使用一个模块来播放和获取有关文件的信息?我应该使用哪些模块?

最佳答案

查看评论,这有效(我为了自己的可读性做了一些更改)。谢谢@Aya!

import os
path="c:\\windows\\system32\\loopymusic.wav"
f=open(path,"rb")

# read the ByteRate field from file (see the Microsoft RIFF WAVE file format)
# https://ccrma.stanford.edu/courses/422/projects/WaveFormat/
# ByteRate is located at the first 28th byte
f.seek(28)
a = f.read(4)

# convert string a into integer/longint value
# a is little endian, so proper conversion is required
byteRate = 0
for i in range(4):
byteRate += a[i] * pow(256, i)

# get the file size in bytes
fileSize = os.path.getsize(path)

# the duration of the data, in milliseconds, is given by
ms = ((fileSize - 44) * 1000)) / byteRate

print "File duration in miliseconds : " % ms
print "File duration in H,M,S,mS : " % ms / (3600 * 1000) % "," % ms / (60 * 1000) % "," % ms / 1000 % "," ms % 1000
print "Actual sound data (in bytes) : " % fileSize - 44
f.close()

关于python - 如何获取Python中wave模块不支持的.WAV文件的持续时间?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17298944/

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