| # π΅ LOOP-STUDIO Audio-Generator |
|
|
| > Royalty-free audio generation with ethical guardrails & full provenance |
|
|
| ## β¨ Features |
| - β
Text-to-audio generation (sound effects, loops, ambient) |
| - β
WCAG-compliant output metadata (alt-text ready) |
| - β
Carbon-aware inference routing |
| - β
Provenance stamping (model, license, timestamp) |
| - β
Safety guardrails (no deepfakes, no copyrighted mimicry) |
|
|
| ## π Quick Start |
|
|
| ### Via Hugging Face Inference API |
| ```python |
| from huggingface_hub import InferenceClient |
| |
| client = InferenceClient(model="LOOP-STUDIO/Audio-Generator") |
| audio_bytes = client.text_to_audio( |
| inputs="upbeat electronic loop with synth bass", |
| parameters={"duration": 15, "guidance_scale": 3.5} |
| ) |
| # Save or stream audio_bytes |