浏览代码

Update spectrogram.py

master
Pete Shadbolt 9 年前
父节点
当前提交
6b4499cfaf
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. +1
    -1
      spectrogram.py

+ 1
- 1
spectrogram.py 查看文件

@@ -16,7 +16,7 @@ def make_wav(image_filename):
# Fourier transform, normalize, remove DC bias
data = np.fft.irfft(image, h*2, axis=1).reshape((w*h*2))
data -= np.average(data)
data *= (2**15.-1)/np.amax(data)
data *= (2**15-1.)/np.amax(data)
data = array("h", np.int_(data)).tostring()

# Write to disk


正在加载...
取消
保存