Deleting the old internal audaspace. Major changes from there are: - The whole library was refactored to use C++11. - Many stability and performance improvements. - Major Python API refactor: - Most requested: Play self generated sounds using numpy arrays. - For games: Sound list, random sounds and dynamic music. - Writing sounds to files. - Sequencing API. - Opening sound devices, eg. Jack. - Ability to choose different OpenAL devices in the user settings.
8 lines
153 B
Python
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)
|