https://github.com/terrabits/make-noise
Simple noise (audio) generation and playback in Python.
https://github.com/terrabits/make-noise
Last synced: 21 days ago
JSON representation
Simple noise (audio) generation and playback in Python.
- Host: GitHub
- URL: https://github.com/terrabits/make-noise
- Owner: Terrabits
- Created: 2019-01-03T19:43:14.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-01-03T19:56:56.000Z (over 7 years ago)
- Last Synced: 2025-08-13T21:45:25.997Z (10 months ago)
- Language: Python
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Make Noise
Simple noise (audio) generation and playback in Python.
## Requires
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.
## Install
```shell
git clone https://github.com/Terrabits/make-noise.git
cd make-noise
pip install -r requirements.txt
```
## Use
To 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`.
## References
This project was based on the Github repo [scivision/soothing-sounds](https://github.com/scivision/soothing-sounds), adapted for my use case.