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

binaural.py « examples « python « bindings « audaspace « extern - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e7a2f6cf6d9c02fc711729c39842b33021edfe02 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/python
import aud, sys, time, multiprocessing
device = aud.Device()
hrtf = aud.HRTF().loadLeftHrtfSet(".wav", sys.argv[2])
threadPool = aud.ThreadPool(multiprocessing.cpu_count())
source = aud.Source(0, 0, 0)
sound = aud.Sound.file(sys.argv[1]).rechannel(1).binaural(hrtf, source, threadPool)
handle = device.play(sound)

while handle.status:
    source.azimuth += 1
    print("Azimuth: " + str(source.azimuth))
    time.sleep(0.1)