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
431 B
Plaintext
15 lines
431 B
Plaintext
#!/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.ogg",
|
|
mksafe(playlist("playlist.m3u")))
|