Posts with the tag synthesizing audio
Generating Sound with Python
With Python Standard Library Methods
http://www.swharden.com/blog/2011-07-08-create-mono-and-stereo-wave-files-with-python/
from struct import pack from math import sin, pi import wave import random RATE=44100 ## GENERATE MONO FILE ## wv = wave.open('test_mono.wav', <span...