如何使用 Matplotlib 绘制 WAV 文件?
要使用 matplotlib 绘制 .wav 文件,我们可以按以下步骤操作 -
要读取 .wav 文件,我们可以使用 read() 方法。
读取 .wav 文件后,我们将得到一个元组。在第 0 个索引处,会有速率,在第 1 个索引处,会有数组样本数据。
使用 plot() 方法绘制 .wav 文件。
分别使用 ylabel 和 xlabel 设置 y 和 x 标签,标签为“振幅”和“时间”。
要显示图形,请使用 show() 方法。
示例
from scipy.io.wavfile import read import matplotlib.pyplot as plt plt.rcParams["figure.figsize"] = [7.50, 3.50] plt.rcParams["figure.autolayout"] = True input_data = read("my_audio.wav") audio = input_data[1] plt.plot(audio[0:1024]) plt.ylabel("Amplitude") plt.xlabel("Time") plt.show()
输出
广告