Simple noise (audio) generation and playback in Python.
Tested in Python 3.7, but probably works in 2.7 as well.
numpy is required for generating the sound files. numpy and sounddevice are required for playback.
git clone https://github.com/Terrabits/make-noise.git
cd make-noise
pip install -r requirements.txtTo create noise files in export/:
python export.py
To play noise:
python . [color]
Where color options are white, pink, blue, brown, violet.
The default color is pink.
This project was based on the Github repo scivision/soothing-sounds, adapted for my use case.