Hi Josh! 2011/7/14 Josh <[email protected]>: > hi, > this is the sgript i use which has some weird way to not have my = sines. > here it is: > #!/usr/local/bin/liquidsoap > #log directory > set("log.file.path","/temp/blradio.log") > #output of log on the screen > set("log.stdout",true) > #set the source > music = normalize(playlist.save(reload=7200,"/home/blradio/music")) > # Add the ability to relay live shows > live=input.http("http://localhost:8000/live) > full= fallback(track_sensitive=false,[live,music]) > #stream it out > output.icecast.mp3(samplerate=44100,bitrate=128,host=("localhost"),port=8000,password="removedforhackers",mount="blradio",name="BL > Radio",url="http://blind-light.net/",description="Blind Light > Radio.",restart=true,restart_delay=6,full)
On the surfacem your script looks fine. However, which version of liquidsoap are you using? If this is a recent (1.0-something) version, you need to replace output.icecast.mp3(samplerate=44100,bitrate=128,... by output.icecast(%mp3(samplerate=44100,bitrate=128),... By the way, in debian, you can try to install liq-contrib and try the simpleliq script, which should be able to produce a simple script that you can start playing with.. I've updated it in debian unstable recently for the latest liq version and I hope its not too buggy :) Romain ------------------------------------------------------------------------------ AppSumo Presents a FREE Video for the SourceForge Community by Eric Ries, the creator of the Lean Startup Methodology on "Lean Startup Secrets Revealed." This video shows you how to validate your ideas, optimize your ideas and identify your business strategy. http://p.sf.net/sfu/appsumosfdev2dev _______________________________________________ Savonet-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/savonet-users
