python 波形到 WAV 文件转换器

python waveform to WAV file converter

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

Here is the waveform that I want to convert

您可以使用标准 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