1.7 KiB
1.7 KiB
EVS Mumble Bridge
Single-device UDP-to-Mumble bridge.
Purpose
This service receives PCM16LE mono audio over UDP from one EVS client and forwards it as a dedicated Mumble user.
Deploy one container per EVS client so every device appears as its own Mumble user.
Required ENV
MUMBLE_HOST: Mumble server host/IPMUMBLE_PORT: default64738MUMBLE_USERNAME: username for this EVS client (example:EVS-esp32-evs-1)MUMBLE_PASSWORD: optionalUDP_LISTEN_PORT: UDP port this client will stream to
Optional ENV
DEVICE_ID: label for logs (defaultesp32-evs-1)MUMBLE_CHANNEL: move bot to channel name after connect- nested path is supported:
KHNM/EVS
- nested path is supported:
MUMBLE_CHANNEL_ID: move bot by numeric channel ID (takes precedence overMUMBLE_CHANNEL)MUMBLE_CONNECT_TIMEOUT_SEC: wait time for ready state (default30)MUMBLE_CONNECT_STRICT:true|false(defaultfalse)false: continue even ifis_ready()does not become true in timetrue: fail and reconnect on timeout
INPUT_SAMPLE_RATE: default16000MUMBLE_SAMPLE_RATE: default48000MUMBLE_FRAME_MS: default20MUMBLE_AUDIO_GAIN: default1.0
Example docker compose service
services:
evs-mumble-esp32-1:
image: git.khnm-zimmerling.de/kai/evs-mumble-bridge:latest
container_name: evs-mumble-esp32-1
restart: unless-stopped
ports:
- "5004:5004/udp"
environment:
DEVICE_ID: "esp32-evs-1"
UDP_LISTEN_HOST: "0.0.0.0"
UDP_LISTEN_PORT: "5004"
INPUT_SAMPLE_RATE: "16000"
MUMBLE_HOST: "10.100.3.50"
MUMBLE_PORT: "64738"
MUMBLE_USERNAME: "EVS-esp32-evs-1"
MUMBLE_PASSWORD: ""
MUMBLE_CHANNEL: "Bots"