Hi Kyriakos! Le 6 septembre 2011 03:27, Kyriakos Tsoukalas <[email protected]> a écrit : > I have liquidsoap beta 1 running and a recipe for jingle scheduling like this: > > > ----- > pls_chillout = playlist(reload_mode = "rounds", mode = "randomize", reload > = 1, > "replay_gain:/home/ftp/hocaradio/schedule/chill_out") > jingle1 = single("/home/ftp/hocaradio/schedule/_jingles/jingle1.mp3") > > radio = fallback([switch([({ 0h-0h05m }, fallback([once(jingle1), > pls_chillout])), > ({ 0h05m-0h30m }, pls_chillout), > ... > ----- > > I want jingle1 played once between 0.00 and 0.05 and then go to the playlist > pls_chillout. What would be the best solution provided that i am using > [switch].
The most important issue you will face is to make sure your jingle actually plays at that time. For this, you may have to use track_sensitive=false in the switch. Also, in order to prevent the jingle for being played several time during the time-slot, you may want to use the delay operator. Romain ------------------------------------------------------------------------------ Doing More with Less: The Next Generation Virtual Desktop What are the key obstacles that have prevented many mid-market businesses from deploying virtual desktops? How do next-generation virtual desktops provide companies an easier-to-deploy, easier-to-manage and more affordable virtual desktop model.http://www.accelacomm.com/jaw/sfnl/114/51426474/ _______________________________________________ Savonet-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/savonet-users
