tr-test.liq (358B)
1 #!/usr/bin/liquidsoap 2 # Log dir 3 set("log.file.path","/tmp/xfnw-basic-radio.log") 4 5 %include "passwords.liq" 6 7 radio = crossfade(normalize(random([playlist.once(argv(1),random=true)]))) 8 9 output.icecast(%vorbis, 10 host="radio.tildeverse.org",user="lickthecheese",port=8015,password=password, 11 mount="/", 12 on_blank(shutdown,radio), 13 on_stop=shutdown, 14 fallible=true 15 ) 16