Welcome to mirror list, hosted at ThFree Co, Russian Federation.

simple.py « examples « python « bindings « audaspace « extern - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7aa45b410425be5ddf9ec40e1eace11f1251cb6f (plain)
1
2
3
4
5
6
7
#!/usr/bin/python
import aud, time
device = aud.Device()
sine = aud.Sound.sine(440)
square = sine.threshold()
handle = device.play(square)
time.sleep(3)