我正在尝试使用 440hz 到 600hz 的音调编写音频文件。该文件应从 440hz 开始,然后播放每个频率(按递增顺序)1 秒,以 600hz 结束。我想出了python的wave模块,但是在这里做错了,因为我最终得到了一个没有声音的文件。(如果有人有更好的建议,我真的不在乎它是否在 python 中。我正在使用 Linux,任何可以在该平台上运行的东西都可以。我只需要创建一个具有上述规格的音频文件。谢谢!)
frequencies = range(440,600)
data_size = len(frequencies)
fname = "WaveTest.wav"
frate = 11025.0 # framerate as a float
amp = 64000.0 # multiplier for amplitude
sine_list_x = []
for f in frequencies:
for x in range(data_size):
sine_list_x.append(math.sin(2*math.pi*f*(x/frate)))
wav_file = wave.open(fname, "w")
nchannels = 1
sampwidth = 2
framerate = int(frate)
nframes = data_size
comptype = "NONE"
compname = "not compressed"
wav_file.setparams((nchannels, sampwidth, framerate, nframes,
comptype, compname))
for s in sine_list_x:
# write the audio frames to file
wav_file.writeframes(struct.pack('h', int(s*amp/2)))
wav_file.close()