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

player.py « examples « python « bindings « audaspace « extern - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8acf4ac833fab367f53d538f6dea1baf7a57140a (plain)
1
2
3
4
5
6
7
#!/usr/bin/python
import aud, sys, time
device = aud.Device()
sound = aud.Sound.file(sys.argv[1])
handle = device.play(sound)
while handle.status:
	time.sleep(0.1)