mirror of
https://xfnw.ttm.sh/git/radio.git
synced 2024-09-09 22:13:15 +00:00
17 lines
359 B
Plaintext
Executable File
17 lines
359 B
Plaintext
Executable File
#!/usr/bin/liquidsoap
|
|
# Log dir
|
|
set("log.file.path","/tmp/xfnw-basic-radio.log")
|
|
|
|
%include "passwords.liq"
|
|
|
|
radio = crossfade(normalize(random([playlist.once(argv(1),random=false)])))
|
|
|
|
output.icecast(%vorbis,
|
|
host="radio.tildeverse.org",user="lickthecheese",port=8005,password=password,
|
|
mount="/",
|
|
on_blank(shutdown,radio),
|
|
on_stop=shutdown,
|
|
fallible=true
|
|
)
|
|
|