Тема: Liquidsoap conf
Не запускаеться liquidsoap, вот сам конфинг.
#!/usr/bin/liquidsoap
# Log dir
set(("log.file.path","/tmp/basic-radio.log")
# Music
myplaylist = playlist("/home/radio/playlist.m3u")
# Some jingles
jingles = playlist("~/radio/jingles.m3u")
# If something goes wrong, we'll play this
security = single("~/radio/sounds/default.ogg")
# Start building the feed with music
radio = myplaylist
# Now add some jingles
radio = random(weights = [1, 4],[jingles, radio])
# And finally the security
radio = fallback(track_sensitive = false, [radio, security])
# Stream it out
output.icecast(%mp3,
host = "localhost", port = 8000,
password = "hackme", mount = "/live")
Вот скриншот ошибки.
http://screenshot.su/show.php?img=47cce … 679f52.jpg
В чем проблема?