```
#!/usr/bin/liquidsoap

set("log.file.path","/opt/radio/basic-radio.log")

music = playlist(mode="randomize", reload=1, reload_mode="rounds",  
"/opt/radio/music")
music = smart_crossfade(music)
jingles = playlist(mode="random", reload=10, reload_mode="seconds",  
"/opt/radio/jingles")
error = single("/opt/radio/error.ogg")

radio = music

radio = random([jingles, radio])

radio = fallback(track_sensitive = false, 
[input.https("https://icecast.nsa.ovh/live.ogg";), radio, error])

output.icecast(%vorbis,
  host = "localhost", port = 8524,
  password = "***********", mount = "radio.ogg",
  radio)

```

I can't understand why liquidsoap crashes with "Invalid value at line 15, char 
56-89: invalid URL.".

Liquidsoap version : 1.3.3
Debian 9

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/savonet/liquidsoap/issues/593
------------------------------------------------------------------------------
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
_______________________________________________
Savonet-users mailing list
Savonet-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/savonet-users

Reply via email to