Hi,

This is most certainly due to the fact that liquidsoap is caught off guard when 
the moderator disconnects and doesn't have any buffered data for the transition.

The other issue you will run into is that the harbor input cannot pre-buffer 
any data since it is coming in real time. 

One thing you could try is to use the `buffer` operator. I cannot test right 
now but something like this is worth trying:

```
s = input.harbor(...)
s = mksafe(s)
s = buffer(s)
```

This will plug the harbor input into a buffered source, I believe that, when 
using it in a `fallback` it could work as intended.

I'll test later, let us know if that works.

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

Reply via email to