1
0
mirror of https://xfnw.ttm.sh/git/radio.git synced 2024-06-22 08:47:07 +00:00
radio/tr-play.liq

17 lines
348 B
Plaintext
Raw Normal View History

2020-07-06 20:25:34 +00:00
#!/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=user,port=8005,password=password,
2020-07-06 20:25:34 +00:00
mount="/",
on_blank(shutdown,radio),
on_stop=shutdown,
fallible=true
)