Python波形到WAV文件转换器

时间:2018-11-24 17:09:24

标签: python wav waveform

我正在寻找一种将x轴上的时间和y轴上的振幅组成的波形转换为wav或任何其他音频文件的方法。代码或python库非常受欢迎

Here is the waveform that I want to convert

1 个答案:

答案 0 :(得分:1)

您可以使用标准的wave库。这是我使用的功能。如果您需要更多的通道或不同的样本宽度,则可以进行进一步修改。

import wave
import struct

def signal_to_wav(signal, fname, Fs):
    """Convert a numpy array into a wav file.

     Args
     ----
     signal : 1-D numpy array
         An array containing the audio signal.
     fname : str
         Name of the audio file where the signal will be saved.
     Fs: int
        Sampling rate of the signal.

    """
    data = struct.pack('<' + ('h'*len(signal)), *signal)
    wav_file = wave.open(fname, 'wb')
    wav_file.setnchannels(1)
    wav_file.setsampwidth(2)
    wav_file.setframerate(Fs)
    wav_file.writeframes(data)
    wav_file.close()

一些链接到文档:

https://docs.python.org/3/library/wave.html

https://docs.python.org/2/library/wave.html