Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .python-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
3.13
41 changes: 41 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,3 +40,44 @@ much -- than I do about python. It started out as my typical "google
and do the monkey-see-monkey-do" kind of programming, but then I cut out
the middle-man -- me -- and just used Google Antigravity to do the audio
sample visualizer.

---

## Developer Setup

This section is intended for developers who want to build, run, or
experiment with the digital effects locally.

### Prerequisites

Install basic build tools and audio utilities:

```bash
sudo apt-get install build-essential ffmpeg
```

Optional: Python dependencies for visualization tools.
```bash
uv sync
```

Or using pip:
```bash
pip3 install numpy matplotlib
```

### Building and running effects

Each effect can be built and run independently via make. The build
system handles compilation and execution automatically.

```bash
make flanger
make echo
make phaser
make fm
make discont
```

These targets generate and process audio samples using the corresponding
effect implementation.
10 changes: 10 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
[project]
name = "audionoisefork"
version = "0.1.0"
description = "A Python toolkit to visualize noise characteristics in audio signals"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"matplotlib>=3.10.8",
"numpy>=2.4.1",
]
Loading