Hello,

Concerning the input.harbor and the source.skip(next) to avoid getting the 
remaining sound before the harbor, it is working when I set the 
input.harbor(buffer=5.0, max=20.0, "/") but not when I set 
input.harbor(buffer=10.0, max=20.0, "/"). So it sounds buffer related.

My problem is with a 5 seconds buffer the connection drops from time to time.

Anyone has an idea ?

# This defines a source waiting on mount point /test-harbor
live = input.harbor(buffer=10.0, max=20.0, "/")
live = nrj(live)

# Define crossfade RM to Live
def livefade(previous,next)
  add([fade.in(duration=0.2,next),fade.final(duration=1.,previous)])
end

# Define crossfade Live to RM
def backlivefade(previous,next)
 source.skip(next)
 add([fade.in(duration=2.,type="exp",next), previous])
end

live = fallback (track_sensitive=false,transitions=[livefade,backlivefade], 
[live, input2])

The input2 source is a dynamic request.

TIA,

Jef



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

Reply via email to