radio/tr-test.liq

17 lines
358 B
Plaintext
Raw Permalink Normal View History

2020-07-06 20:17:38 +00:00
#!/usr/bin/liquidsoap
# Log dir
set("log.file.path","/tmp/xfnw-basic-radio.log")
%include "passwords.liq"
2020-07-06 20:25:34 +00:00
radio = crossfade(normalize(random([playlist.once(argv(1),random=true)])))
2020-07-06 20:17:38 +00:00
output.icecast(%vorbis,
host="radio.tildeverse.org",user="lickthecheese",port=8015,password=password,
mount="/",
on_blank(shutdown,radio),
on_stop=shutdown,
fallible=true
)