AudioLazy
Real-time expressive DSP package for Python built on lazy streams, filters and synthesis.
| Language | Python |
|---|---|
| Category | Synthesis & DSP |
| License | GPL-3.0 |
| Platforms | macOS Windows Linux |
| Install | pip install audiolazy |
| First released | 2012 |
| Maintained | Not actively maintained (last activity 2022) |
| Links | Source |
Strengths
- Elegant lazy Stream abstraction for real-time DSP
- Pure Python with expressive filter/z-transform syntax
- Good for teaching DSP concepts
Limitations
- Effectively unmaintained (last activity 2022)
- Pure-Python performance limits and a small ecosystem
Best for
Learning and prototyping DSP and stream processing in Python.
Minimal example
from audiolazy import Stream
a = Stream(2, -2, -1)
b = Stream(3, 7, 5, 4)
(a + b).take(8)