Skip to content

Instantly share code, notes, and snippets.

@dstecholution
dstecholution / liquidsoap.liq
Created May 31, 2022 18:21 — forked from cburmeister/liquidsoap.liq
An example `liquidsoap` configuration file with two input streams and two output streams to `icecast`.
#!/usr/bin/liquidsoap
# Activate the live stream input
set('harbor.bind_addr', '0.0.0.0')
# Configure input A
input_a = input.harbor(
'input_a',
port=8001,
password='bigproblem'
@dstecholution
dstecholution / gist:42a1712d5f24b0321d1c844aabe948fd
Last active May 17, 2022 15:14 — forked from moxuse/gist:4077236
icecast config example
<icecast>
<location>{{location}}</location>
<admin>{{person_of_interest_email}}</admin>
<limits>
<clients>{{maxclients}}</clients>
<sources>2</sources>
<threadpool>5</threadpool>
<queue-size>524288</queue-size>
<client-timeout>30</client-timeout>
@dstecholution
dstecholution / mopidy.conf
Created May 13, 2022 15:17 — forked from mrpjevans/mopidy.conf
Sample mopidy.conf file for MagPi tutorials
[http]
# Make sure the web interface can be accessed by the local network
hostname = 0.0.0.0
[audio]
# Direct audio to the DAC, not HDMI
output = alsasink
# The File extension isn't of much use, so we can disable it
[file]