allow in-order testing

This commit is contained in:
vulpine 2020-07-06 20:50:08 +00:00
parent 05161e8fb2
commit f5108452be
2 changed files with 17 additions and 1 deletions

16
tr-test-random.liq Executable file
View File

@ -0,0 +1,16 @@
#!/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=true)])))
output.icecast(%vorbis,
host="radio.tildeverse.org",user="lickthecheese",port=8015,password=password,
mount="/",
on_blank(shutdown,radio),
on_stop=shutdown,
fallible=true
)

View File

@ -4,7 +4,7 @@ set("log.file.path","/tmp/xfnw-basic-radio.log")
%include "passwords.liq"
radio = crossfade(normalize(random([playlist.once(argv(1),random=true)])))
radio = crossfade(normalize(random([playlist.once(argv(1),random=false)])))
output.icecast(%vorbis,
host="radio.tildeverse.org",user="lickthecheese",port=8015,password=password,