2010/2/9 Scott Robinson <syst...@radiosonar.co.uk>:
> Am i doing something wrong here?

Yes, let me explain this simple misunderstanding.

> studioInput1 = input.jack(id="studioInput1")

Your studioInput1 is a continuous stream of audio, it never fails,
although it might be silent. Also, it's not split into tracks like a
playlist() would be.

> Automation = smart_crossfade(fade_out=1.0,fade_in=1.0,Automation)

This source is also continuous, unless the underlying playlist fails.
This is because smart_crossfade merges tracks, and hence removes track
limits.

> LiveStream =
>     switch([({ 8h59-23h30 }, studioInput1),({ 23h30-8h59 }, Automation)])

A normal switch() never switches in the middle of a track, and as
we've seen you have no tracks. Simply add
switch(track_sensitive=true,[...]) and it will switch whenever
possible.

Have fun!
-- 
David

------------------------------------------------------------------------------
SOLARIS 10 is the OS for Data Centers - provides features such as DTrace,
Predictive Self Healing and Award Winning ZFS. Get Solaris 10 NOW
http://p.sf.net/sfu/solaris-dev2dev
_______________________________________________
Savonet-users mailing list
Savonet-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/savonet-users

Reply via email to