From 2031e879450aada0848360aae9d7be88367f8760 Mon Sep 17 00:00:00 2001 From: Adam French Date: Mon, 24 Nov 2025 16:16:25 +0000 Subject: [PATCH] adding template for streaming to icecast --- icecast/stream.liq.template | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 icecast/stream.liq.template diff --git a/icecast/stream.liq.template b/icecast/stream.liq.template new file mode 100644 index 0000000..91c8d57 --- /dev/null +++ b/icecast/stream.liq.template @@ -0,0 +1,13 @@ +# Microphone input +mic = input.pulseaudio() + +# Icecast output +output.icecast( + %mp3, + host = "$ICECAST_HOST", + port = "$ICECAST_PORT", + password = "$ICECAST_SOURCE_PASSWORD", + mount = "$ICECAST_MOUNT", + name = "Live DJ stream", + mic +)