Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #!/usr/bin/liquidsoap
- set("server.telnet.port",1277)
- set("server.telnet",true)
- set("log.file.path","/tmp/azuracast_allesradio6.log")
- security = single("/home/radio/azuracast/leer.mp3")
- v = interactive.float("volume", 1.)
- s = input.http("http://localhost:8040/radio.mp3", buffer=1.1, max=4.1)
- s = amplify(v, s)
- #programm generieren
- full3 = fallback(track_sensitive=false,[request.queue(id="request"), s, security])
- # Stream it out
- output.icecast(
- %mp3.cbr(bitrate=192, id3v2=true ),
- host = "alles-radio6.stream.laut.fm", port = 8080,
- password = "xxx", mount = "alles-radio6",encoding="UTF-8",
- full3)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement