Metadata-Version: 2.4
Name: loudstream
Version: 0.2.0
Summary: Python wrapper for libebur128 with streaming support
Author-email: Matt Hosack <hosack.matt@gmail.com>
License-Expression: MIT
Project-URL: homepage, https://github.com/hosackm/loudstream
Project-URL: source, https://github.com/hosackm/loudstream
Requires-Python: >=3.12
Description-Content-Type: text/markdown
Requires-Dist: cffi
Requires-Dist: soundfile
Provides-Extra: dev
Requires-Dist: bump-my-version==1.2.1; extra == "dev"
Requires-Dist: pytest>=8.0.0; extra == "dev"

# loudstream

A file-streaming Python API around [libebur128](https://github.com/jiixyj/libebur128/tree/master/ebur128).

## Install

```bash
uv sync
```

## Usage

```python
from loudstream import Meter

lufs, peak = Meter().measure("some-file.wav")
```

## Running Tests

```bash
uv run pytest
```

