I am using the following code for a custom crossfade what supports jingles:

def my_crossfade(s) =
  def f(_,_, old_m, new_m, old, new) =
    if old_m["genre"] != "myradio" and new_m["genre"] != "myradio" then
      add([fade.initial(new), fade.final(old)])
    else
      log("Old or new file is a jingle: sequenced transition.")
      sequence([old,new])
    end
 end
 smart_cross(f,s)
end

This works perfectly on liquidsoap 1.3.3, however, on liquidsoap 1.3.4, the 
jingles are detected in the logs but when they are played, silence happens 
instead?



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

Reply via email to