25 lines
607 B
Markdown
25 lines
607 B
Markdown
## Background
|
|
Included here is a simple python script to analyze and an manipulate an audio signal by working with individual frequency bands. By implementing this method of tone control (adjusting the amplitudes of different bands), we can improve percieve sound quality as an audio engineer would with a raw sound sample.
|
|
|
|
## Setup
|
|
Potential libraries needed for debian-based gnu+linux
|
|
```
|
|
sudo apt-get install libportaudio2
|
|
```
|
|
Install python libraries
|
|
```
|
|
pip install -r requirnments.txt
|
|
```
|
|
|
|
## Run
|
|
```
|
|
python3 main.py
|
|
```
|
|
|
|
## View Source
|
|
[main.py](./main.py)
|
|
|
|
|
|
|
|
## Reflections, Results, Analysis
|
|
TODO |