radio/tr-play.liq

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
)