By the way, a useful script for the who want to try simple liquidsoap
one-liners:
cat <<EOF | liquidsoap --
set log.dir = "/dev"
set log.file = "null"
set log.stdout = true
set server = false
mksafe = fun (s) -> fallback(track_sensitive=false,[s,blank()])
out = fun (s) -> output.ao(mksafe(s))
$*
EOF
I named it "oneliq". For example I can use:
oneliq 'out(input.http("http://dolebrai.net:8000/dolebrai.ogg"))'
I also have a "twoliq" script which is the same but without the server
disabled, to be able to skip tracks. By the way the "server" setting
allowing one to disable the server requires the last SVN version.
--
David