Quick Start
Desktop Quick Start
Section titled “Desktop Quick Start”- Launch brūhi from your Applications folder
- Create a new project via
File → New Project - Add an audio source: Drag a file into the timeline, or connect a live input via
Settings → Audio Devices - Configure output: Select your output protocol (local playback, SRT stream, or NDI)
- Press Play — audio is now flowing through the brūhi engine
Cloud Quick Start
Section titled “Cloud Quick Start”After installing the Docker image:
# Verify the engine is runningcurl http://localhost:8080/health
# Expected response:# {"status":"healthy","version":"2.1.0","uptime":"12s"}Create your first audio pipeline
Section titled “Create your first audio pipeline”curl -X POST http://localhost:8080/api/v1/pipelines \ -H "Content-Type: application/json" \ -d '{ "name": "studio-a", "input": { "type": "srt", "port": 9000 }, "processing": [ { "plugin": "loudness-normalize", "target": -14 } ], "output": { "type": "rtp", "host": "239.0.0.1", "port": 5004 } }'