Skip to content

Quick Start

  1. Launch brūhi from your Applications folder
  2. Create a new project via File → New Project
  3. Add an audio source: Drag a file into the timeline, or connect a live input via Settings → Audio Devices
  4. Configure output: Select your output protocol (local playback, SRT stream, or NDI)
  5. Press Play — audio is now flowing through the brūhi engine

After installing the Docker image:

Terminal window
# Verify the engine is running
curl http://localhost:8080/health
# Expected response:
# {"status":"healthy","version":"2.1.0","uptime":"12s"}
Terminal window
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 }
}'