Metadata-Version: 2.4
Name: audio-workbench
Version: 0.5.5
Summary: Python wrapper for Audio Workbench Player (HTML/Streamlit embedding)
Author: LimitlessGreen
License-Expression: AGPL-3.0-only
Project-URL: Homepage, https://github.com/LimitlessGreen/Audio-Workbench
Project-URL: Repository, https://github.com/LimitlessGreen/Audio-Workbench
Project-URL: Issues, https://github.com/LimitlessGreen/Audio-Workbench/issues
Keywords: audio,player,streamlit,jupyter,embed,waveform,spectrogram
Classifier: Development Status :: 4 - Beta
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.9
Classifier: Operating System :: OS Independent
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Provides-Extra: widget
Requires-Dist: anywidget>=0.9; extra == "widget"
Requires-Dist: traitlets>=5.0; extra == "widget"
Provides-Extra: streamlit
Requires-Dist: streamlit>=1.30; extra == "streamlit"
Provides-Extra: gradio
Requires-Dist: gradio>=4.0; extra == "gradio"
Dynamic: license-file


# audio-workbench (Python wrapper)

<p align="center">
  <img src="https://raw.githubusercontent.com/LimitlessGreen/Audio-Workbench/main/docs/img/screenshot.png" alt="Audio Workbench Screenshot" width="900" />
</p>

<p align="center">
    <a href="https://pypi.org/project/audio-workbench/">
        <img src="https://img.shields.io/pypi/v/audio-workbench.svg" alt="PyPI">
    </a>
    <a href="https://github.com/LimitlessGreen/Audio-Workbench">
        <img src="https://img.shields.io/github/stars/LimitlessGreen/Audio-Workbench?style=social" alt="GitHub stars">
    </a>
</p>

Python package to embed the Audio Workbench DAW player in Streamlit, Jupyter, Gradio, and any HTML-capable UI. Supports waveform & spectrogram visualization, annotation, and custom player layouts.

**Live demo:** https://limitlessgreen.github.io/Audio-Workbench/

---

## Installation




```bash
pip install audio-workbench
```

Optional for demos:

```bash
pip install "audio-workbench[streamlit]"
pip install "audio-workbench[gradio]"
```




## Example: Load and Display Your Own Audio

You can load your own audio file (WAV, MP3, etc.) and display it as a spectrogram or waveform in any supported environment. Just read the file as bytes and pass it to `render_daw_player`:

**Jupyter Notebook:**

```python
from audio_workbench import render_daw_player

with open("your_audio.wav", "rb") as f:
    audio_bytes = f.read()

html = render_daw_player(audio_bytes, viewMode="spectrogram")

# Display in Jupyter:
from IPython.display import HTML
HTML(html)
```

**Streamlit:**

```python
import streamlit as st
from audio_workbench import render_daw_player
import streamlit.components.v1 as components

uploaded = st.file_uploader("Choose an audio file", type=["wav", "mp3", "ogg", "flac"])
if uploaded is not None:
    html = render_daw_player(uploaded.read(), viewMode="spectrogram")
    components.html(html, height=620, scrolling=False)
```

You can use all other options as described above to customize the player.

## Quickstart

Embed a DAW player for your own audio in Streamlit, Jupyter, or any HTML UI:

```python
from audio_workbench import render_daw_player
html = render_daw_player(
        audio_bytes,  # bytes (WAV/MP3)
        viewMode="spectrogram",   # 'both' | 'waveform' | 'spectrogram'
        transportStyle="hero",    # 'default' | 'hero'
        showOverview=False,        # Hide overview navigator
        showFileOpen=False,        # Hide file open button
        showStatusbar=False,       # Hide status bar
        labelTaxonomy=[{"name": "Species", "color": "#0ea5e9"}],
        # ...any other BirdNETPlayer option
)
```

**Display in Streamlit:**

```python
import streamlit.components.v1 as components
components.html(html, height=620, scrolling=False)
```

**Display in Jupyter:**

```python
from IPython.display import HTML
HTML(html)
```

---

## Player Options

| Option | Example | Description |
|---|---|---|
| `viewMode` | `'spectrogram'` | Show only the spectrogram |
| `transportStyle` | `'hero'` | Large centered play button |
| `showOverview` | `False` | Hide overview navigator |
| `showFileOpen` | `False` | Hide file open button |
| `showStatusbar` | `False` | Hide status bar |
| `labelTaxonomy` | `[{'name': 'Species', 'color': '#0ea5e9'}]` | Custom label presets |
| `iframe_height` | `320` | Set iframe height (default: 620) |

For all options, see the [Web API docs](https://github.com/LimitlessGreen/Audio-Workbench#player-options).

---

## Presets & Layouts

The package includes several ready-to-use presets (see `demo_streamlit.py`):

- **Full DAW**: All controls, waveform & spectrogram, annotation
- **Compact**: Minimal controls, no overview/statusbar
- **Preview Waveform Hero**: Large play button, waveform only
- **Preview Spectrogram Hero**: Large play button, spectrogram only
- **Ultra Compact Hero**: Smallest possible embed

You can combine or override any option for your use case.

---

## Advanced: Custom Spectrograms

You can inject your own pre-computed spectrogram data or images:

- `spectrogram_data`: 2D numpy array (nFrames × nMels, float32)
- `spectrogram_image`: PNG/JPEG bytes, data-URL, matplotlib Figure, PIL Image, or numpy uint8 array

See the [Web API](https://github.com/LimitlessGreen/Audio-Workbench#external-spectrogram-injection) for details.

---


## Demos

**Streamlit:**

```bash
streamlit run demo_streamlit.py
```

**Gradio:**

```bash
pip install gradio
python demo_gradio.py
```

**Google Colab:**

[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/LimitlessGreen/Audio-Workbench/blob/main/python-wrapper/demo_colab.ipynb)

Try the interactive notebook demo directly in your browser—no setup required!

---

## License

GNU AGPL-3.0
