Fix audaspace mess in 2.8

All these files were removed since accidental commit, revert and merge in 2.8.

ea31f0ac3b + 0a4e170c28 + 11f9a23a28 + 7b27b10fa6
This commit is contained in:
Dalai Felinto
2018-02-01 09:11:04 -02:00
parent cd317fab65
commit 781dd5edb5
197 changed files with 27519 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
#!/usr/bin/python
import aud, sys, time, multiprocessing
device = aud.Device()
ir = aud.ImpulseResponse(aud.Sound.file(sys.argv[2]))
threadPool = aud.ThreadPool(multiprocessing.cpu_count())
sound = aud.Sound.file(sys.argv[1]).convolver(ir, threadPool)
handle = device.play(sound)
handle.volume = 0.1
while handle.status:
time.sleep(0.1)