fb86d79930
op25-container/system.pa New PulseAudio config: auth-anonymous=1 so the edge-node can connect without group membership op25-container/Dockerfile Copies system.pa into /etc/pulse/system.pa drb-edge-node/Dockerfile Added libpulse0 — ffmpeg needs this runtime library to use -f pulse drb-edge-node/app/internal/call_recorder.py Switched recording from Icecast (burst-buffer overlap) to PulseAudio monitor (zero-delay, exact call boundaries)
17 lines
534 B
Plaintext
17 lines
534 B
Plaintext
# PulseAudio system daemon configuration for DRB containers.
|
|
# Allows anonymous connections so the edge-node container can read the audio monitor.
|
|
|
|
.nofail
|
|
|
|
# Native protocol with anonymous auth — required for inter-container access
|
|
load-module module-native-protocol-unix socket=/run/pulse/native auth-anonymous=1
|
|
|
|
# Always provide a default sink even without audio hardware
|
|
load-module module-always-sink
|
|
|
|
# Restore device/stream settings across restarts
|
|
load-module module-device-restore
|
|
load-module module-stream-restore
|
|
|
|
.fail
|