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.
15 lines
436 B
Plaintext
15 lines
436 B
Plaintext
5 years ago
|
#!/usr/bin/liquidsoap -v
|
||
|
|
||
|
# You need to include these two lines in any standalone
|
||
|
# liquidsoap script (otherwise you get permissions errors)
|
||
|
|
||
|
set("log.file.path","/tmp/<script>.log")
|
||
|
set("log.stdout",true)
|
||
|
|
||
|
%include "passwords.liq"
|
||
|
|
||
|
output.icecast(%vorbis,
|
||
|
host = ICECAST_SERVER_HOST, port = ICECAST_SERVER_PORT,
|
||
|
password = ICECAST_SERVER_PASSWORD, mount = "radioimplicancies_live.ogg",
|
||
|
mksafe(playlist("playlist.m3u")))
|