Advertisement
Guest User

Untitled

a guest
Aug 28th, 2018
38
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. #!/usr/bin/liquidsoap
  2. set("server.telnet.port",1277)
  3. set("server.telnet",true)
  4. set("log.file.path","/tmp/azuracast_allesradio6.log")
  5. security = single("/home/radio/azuracast/leer.mp3")
  6.  
  7. v = interactive.float("volume", 1.)
  8.  
  9.  
  10.  
  11. s = input.http("http://localhost:8040/radio.mp3", buffer=1.1, max=4.1)
  12. s = amplify(v, s)
  13.  
  14.  
  15.  
  16. #programm generieren
  17. full3 = fallback(track_sensitive=false,[request.queue(id="request"), s, security])
  18.  
  19. # Stream it out
  20.  
  21. output.icecast(
  22. %mp3.cbr(bitrate=192, id3v2=true ),
  23. host = "alles-radio6.stream.laut.fm", port = 8080,
  24. password = "xxx", mount = "alles-radio6",encoding="UTF-8",
  25. full3)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement