소스 검색

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


불러오는 중...
취소
저장