2011/8/26 David Baelde <[email protected]>: > Hi Martin, > > That's funny but you just bumped into the same problem as Dave Pascoe.
Yes I saw his post with the same error msg but I wasn't able to see any link between the two... I deduced it was just a coincidence :D > As I just told him in another thread, this is a known issue (LS-551). > I think you can work around it by changing the order of your > if-then-else, which would be more readable anyway: > > On Fri, Aug 26, 2011 at 3:34 PM, Martin Hamant <[email protected]> wrote: >> s = >> if stream_metasource != "disabled" then >> > ... >> s >> else >> s0 >> end > > Change to: > s = if stream_metasource == "disabled" then s0 else .... end > > If it doesn't work, another solution (simpler, in fact) is to force > liquidsoap to see that the active source s0 can be considered as a > normal source, by writing (s0 : source) instead of just s0. > > Hope this helps, Of course it helps. I'll test that on monday. I also have realized another problem: enabling/disabling metadata insertion by url means remove/add the source; which implies a stream cut ! The question is, do you see any way to do the "stop polling" dynamically thru telnet ? Thanks ! ------------------------------------------------------------------------------ EMC VNX: the world's simplest storage, starting under $10K The only unified storage solution that offers unified management Up to 160% more powerful than alternatives and 25% more efficient. Guaranteed. http://p.sf.net/sfu/emc-vnx-dev2dev _______________________________________________ Savonet-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/savonet-users
