Octavio wrote:
> Now I need to put a random JINGLE playlist  _after_ this 5 seconds and
> _before_ playlist. It can be used to indentifying the radio or to
> announce the incomming playlist.

This can be scripted pretty much as you said it :) Transitions are a
good place for such jingles. Create a playlist for your jingles, and
use it within your transition, after the blank in the sequence. The
sequence will just play one track from the playlist, then go on to the
podcast source:

jingles = playlist("blah")
def delayed(live,podcasts)
  sequence([blank(duration=5.),jingles,podcasts])
end

It is important that the playlist is not created fresh with each
transition but is created once and for all, which is the case as
written above (but would not be the case by replacing jingles in the
sequence directly by playlist("blah"). Otherwise the playlist would
not necessarily have enough to for preparing itself, and the
randomization wouldn't be as good.

HTH
-- 
David

------------------------------------------------------------------------------
Download Intel® Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
_______________________________________________
Savonet-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/savonet-users

Reply via email to