Hi there

I'm trying to use the fallback feature

I have an icecast2 server on the server (same as liquidsoap running)

I have external sources streaming to the icecast montpoints

the mounts are

/live
/stream
/archive

My script is the following :

#!/usr/bin/liquidsoap


live = mksafe(input.http("http://localhost:8000/live";))
stream = mksafe(input.http("http://localhost:8000/stream";))
archive = mksafe(input.http("http://localhost:8000/archive";))
files = mksafe(playlist("playlist.txt"))

radio = fallback(track_sensitive=false,[live,stream,archive,files])

output.icecast(%mp3, host="localhost", port = 8000, password = "*", mount =
"highband", genre = "Du bonheur pur", url = "http://www.suggerebonheur.com";,
description = "Ca groove le positif !", name = "Radio Suggere Bonheur",
radio)
output.icecast(%mp3(bitrate=128), host="localhost", port = 8000, password =
"*", mount = "lowband", genre = "Du bonheur pur", url = "
http://www.suggerebonheur.com";, description = "Ca groove le positif !", name
= "Radio Suggere Bonheur", radio)


If live is not streaming, nothing happened :(

Any idea ? Surely a stupid error from my self

Cedric
------------------------------------------------------------------------------
Get a FREE DOWNLOAD! and learn more about uberSVN rich system, 
user administration capabilities and model configuration. Take 
the hassle out of deploying and managing Subversion and the 
tools developers use with it. http://p.sf.net/sfu/wandisco-d2d-2
_______________________________________________
Savonet-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/savonet-users

Reply via email to