python读取.wav音频并绘制波形图

import numpy as np
from matplotlib import pyplot as plt
original = np.memmap(target_path, dtype='h', mode='r')
plt.plot(original)
plt.show()

猜你喜欢

转载自blog.csdn.net/ljl86400/article/details/109721184