Hi.
It seems the urls in flows.liq are outdated. I got it working for my stream by 
changing them like this:

```
  # If the server is "", we get the server from sf.net
  server =
    if server == "" then
      server = http.get("http://liquidsoap.info/flows_server";)
      html_status = snd(fst(fst(fst(server))))
      if html_status == 200 then
        snd(server)
      else
        # If sf is down, we use the hardcoded server
        "http://savonet-flows.herokuapp.com/";
      end
    else
      server
    end
  log(level=4,"Flows server: #{server}")
```

-- 
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/696
_______________________________________________
Savonet-users mailing list
Savonet-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/savonet-users

Reply via email to