hi,
here is what the log outputs:
2011/08/09 12:48:50 [threads:3] Created thread "wallclock_main" (2 total).
2011/08/09 12:48:50 [    _main:3] Streaming loop starts, 
synchronized with wallclock.
2011/08/09 12:48:50 [fallback_4467:3] Switch to mksafe.
2011/08/09 12:48:50 [mksafe:3] Switch to safe_blank.
here is the script of which that happens to:
#!/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
# NO FALLBACK! It is useless..
music = switch( [ ( {3h-12h}, smooth),
                          ( {12h-21h}, pop),
                          ( {21h-3h}, techno) ] )
# Adding normalization and compression
# ISSUE WAS HERE! You need to write:
music = nrj(music)
# Instead of:
# nrj(music)
#
# In the second case, you do nothing with the result, which is then
# "lost".. That's what the log message is telling you..
# Adding smart_crossfade transitions
# SAME ISSUE HERE
music = smart_crossfade(music)
# add some thing to make sure that it doesnt fail when loding.
# AGAIN..
music = 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
# YOU DONT NEED o = HERE,
# We do nothing with the output afterward..
output.icecast(%mp3,
                      host='localhost',
                      password='****',
                      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.
output.icecast(%vorbis,
                      host='localhost',
                      password='***',
                      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)
------------------------------------------------------------------------------
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