Files
blender/extern/audaspace/bindings/python/examples/simple.py
Germano ea31f0ac3b tmp
2018-01-31 22:11:01 -02:00

8 lines
153 B
Python

#!/usr/bin/python
import aud, time
device = aud.Device()
sine = aud.Sound.sine(440)
square = sine.threshold()
handle = device.play(square)
time.sleep(3)