hi all,
I tried to run my script once again, but I get the following:
At line 17, char 4-10: This term will evaluate to a (passive) source which
  will then be dropped. This is usually the sign of a misunderstanding:
  only active sources are animated on their own; dangling passive sources
  are just dead code.
which I found was the line with the nrj effect in this script:
#!/usr/local/bin/liquidsoap
# welcome to a script made by josh stirland
# we need to log things if anything goes rong we can check them.
set('log.file.path','/tmp/blind-lightradio.log')
# lets turn screen loging on.
set('log.stdout',true)
#lets add the music sorces
# pop music
pop = playlist(mode='randomize', reload=7200, '/home/blradio/radio/music/pop')
# dance/club/techno
techno = playlist(mode='randomize', reload=7200, 
'/home/blradio/radio/music/techno')
# smooth morning music
smooth = playlist(mode='randomize', reload=7200, 
'/home/blradio/radio/music/smooth')
# lets make this play at diffrent times of the day
music = 
fallback([switch([({3h-12h},smooth),({12h-21h},pop),({21h-3h},techno)])])
# Adding normalization and compression
nrj(music)
# Adding smart_crossfade transitions
smart_crossfade(music)
# add some thing to make sure that it doesnt fail when loding.
mksafe(music)
# Add the ability to relay live shows
live=input.http('http://s2.blind-light.net:8000/live')
full= fallback(track_sensitive=false,[live,music])
# time to stream all this to a server so people can listen
# MP3 icecast output
o = output.icecast(%mp3, host='localhost',
                   password='justtakenout', name='BL Radio', genre='pop, 
other.',
                   url='http://www.blind-light.net',description='blind light 
radio playing from 2008 pop to 
moddon pop.',
                   restart=true, mount='/blradio.mp3', port=8000,
                   full) 
# again, but in ogg format.
o = output.icecast(%vorbis, host='localhost',
                   password='justtakenout', name='BL Radio', genre='pop, 
other.',
                   url='http://www.blind-light.net',description='blind light 
radio playing from 2008 pop to 
moddon pop.',
                   restart=true, mount='/blradio.ogg', port=8000,
                   full) 

thanks for any help, josh.
------------------------------------------------------------------------------
uberSVN's rich system and user administration capabilities and model 
configuration take the hassle out of deploying and managing Subversion and 
the tools developers use with it. Learn more about uberSVN and get a free 
download at:  http://p.sf.net/sfu/wandisco-dev2dev
_______________________________________________
Savonet-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/savonet-users

Reply via email to