We use Liquidsoap to manage moderator access and to compensate for failures of 
our automation through a backup list.

As an automation mAirList is used on an external server.

The moderators connect to Liquidsoap via
 ```input.harbor```

In order to make the transition between automation and moderator pleasant for 
the listeners, we try to build a transition between the two sources.

Currently the code is as follows:
```
def jtrans(j,old,new)
  old = fade.final(old)
  new = fade.initial(new)
  sequence([old,j,new])
end

s = fallback(id="Mod <-> 
mAirList",track_sensitive=false,transitions=[jtrans(j),jtrans(j)],[mod,mairlist])
```

When a moderator connects, the automation hides clean, the jingle is played, 
and the moderator cleanly fades in.

Unfortunately, this does not work backwards. The moderator is cut off with a 
hard cut, the jingle plays and the automation is faded in.

We have already tried many options on transitions (add, merge, sequence, etc.) 
unfortunately so far unsuccessful.

Is there a way to solve it?

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

Reply via email to