Hi, > The errors are: Invalid value at line 91, char 24-38: That source is > fallible. > > The version of LiquidSoap in Trisquel and debian is 0.9.2 and Parabola is > 0.9.3, apparently the error is due to the version. If compatibility issue, > does anyone could help me migrate?
Not much changed between 0.9.2 and 0.9.3, so I can't tell you how to quickly get rid of that error. However, it's probably worth noting that 0.9.3 is morally a beta version (and the 1.0.0 beta are morally release candidates) so you'd be better off switching to the latest releases, and (maybe with our help on specific issues) get your script running with the latest liquidsoap. I have also identified some likely mistakes in your script. First, you use mksafe everywhere, directly on playlists. This means that playlists never fail, but produce silence instead. It's useless because you use a fallback "default" source later in the script anyway -- which is usually a better idea. Second, your use of the "transicion" function is weird: as it is currently written, you call transicion(vivo,diferido) exactly once, so it's not a transition in the usual sense (it isn't ran for every new track) which might not be what you want. I hope that these small comments help. Don't hesitate to ask more questions, but please try to post small scripts that are just enough to show a problem -- I saw your mail on sunday evening, but the long attached script put me off until today. -- David ------------------------------------------------------------------------------ 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
