audiogen
audiogen copied to clipboard
Python generator based audio tools.
Running Python **3.6.9** The following script: ``` #!/usr/bin/env python3 import audiogen audiogen.sampler.play(audiogen.tone(440)) ``` Generates the error: ``` jeff@machine:~$ ./test_audio.py Traceback (most recent call last): File "./test_audio.py", line 3, in import...
Works for python 3.6!
Hello, It would be nice to make audiogen compatible with python 3.x installing it with pip generates syntax errors : ``` Running setup.py install for audiogen File "/usr/local/lib/python3.4/dist-packages/audiogen/util.py", line 28...
Hi I would like to generate 1 khz sine wave which I can do fine with this code ```python import math #import needed modules import pyaudio #sudo apt-get install python-pyaudio...