소스 검색

Inverted commas

master
Pete Shadbolt 9 년 전
부모
커밋
110824f724
1개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  1. +3
    -3
      spectrogram.py

+ 3
- 3
spectrogram.py 파일 보기

@@ -19,8 +19,8 @@ def make_wav(image_filename):
image = np.sum(image, axis = 2).T[:, ::-1]
image = image**2

output_file = wave.open(image_filename+'.wav', 'w')
output_file.setparams((1, 2, 44100, 0, 'NONE', 'not compressed'))
output_file = wave.open(image_filename+".wav", "w")
output_file.setparams((1, 2, 44100, 0, "NONE", "not compressed"))

pb = ProgressBar().start()
n = float(len(image))
@@ -32,7 +32,7 @@ def make_wav(image_filename):
print "Wrote %s.wav" % image_filename


if __name__ == '__main__':
if __name__ == "__main__":
import sys
make_wav(sys.argv[1])


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