You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
529 B
Plaintext
19 lines
529 B
Plaintext
#!/usr/bin/liquidsoap -v
|
|
|
|
set("log.file.path","/tmp/<script>.log")
|
|
set("log.stdout",true)
|
|
|
|
%include "passwords.liq"
|
|
|
|
# Add the ability to relay live shows
|
|
liveorstatic =
|
|
fallback(track_sensitive=false,
|
|
[input.http("http://echo.lurk.org:999/radioimplicancies_live.ogg"),
|
|
single("brownnoise.mp3")])
|
|
|
|
output.icecast(%vorbis,
|
|
host = ICECAST_SERVER_HOST, port = ICECAST_SERVER_PORT,
|
|
password = ICECAST_SERVER_PASSWORD, mount = "radioimplicancies.ogg",
|
|
mksafe(liveorstatic))
|
|
|
|
# out(liveorstatic) |