Re: [Savonet-users] Mix Problems

2009-07-07 Thread Romain Beauxis
Le mardi 07 juillet 2009 12:38:12, vous avez écrit : > Hello, > > I found the prob in our test environment, it was due to false mix > points. After fixing that, the conservative=true works perfectly ! > > Thanks for the help, it solved an old problem here ;-) Very nice to read !! :) Romain --

Re: [Savonet-users] Mix Problems

2009-07-07 Thread Jean-Francois Mauguit
Hello, I found the prob in our test environment, it was due to false mix points. After fixing that, the conservative=true works perfectly ! Thanks for the help, it solved an old problem here ;-) Jef On 07 Jul 2009, at 12:36, Romain Beauxis wrote: > Le mardi 07 juillet 2009 10:36:53, Jean-Fra

Re: [Savonet-users] Mix Problems

2009-07-07 Thread Jean-Francois Mauguit
Hello, Here is my new crossfade def our_crossfade(~start_next,~fade_in,~fade_out,s) s = fade.in(duration=fade_in,s) s = fade.out(duration=fade_out,s) fader = fun (a,b) -> add(normalize=false,[b,a]) cross(conservative=true,duration=start_next,minimum = -1.0,fader, s) end input2=our_cross

Re: [Savonet-users] liquidsoap

2009-07-07 Thread David Baelde
For your information, I have started a FAQ: http://savonet.rastageeks.org/wiki/FAQ For now it has only one entry but I plan to enrich it as I answer common questions. I encourage others devs and experienced users to contribute to it as well. -- David ---

Re: [Savonet-users] Mix Problems

2009-07-07 Thread Romain Beauxis
Le mardi 07 juillet 2009 10:36:53, Jean-Francois Mauguit a écrit : > Hello, Hi ! > Here is my new crossfade > > def our_crossfade(~start_next,~fade_in,~fade_out,s) >s = fade.in(duration=fade_in,s) s = fade.out(duration=fade_out,s) >fader = fun (a,b) -> add(normalize=false,[b,a])

Re: [Savonet-users] liquidsoap

2009-07-07 Thread David Baelde
It seems that your liquidsoap is not compiled with mp3 encoding support (liquidsoap uses liblame for that, which is non-free). Either re-compile liquidsoap, or use output.icecast.vorbis, or use output.icecast.lame if you have the lame binary available. -- David ---