Romain Beauxis a écrit :
        Hi Thomas !

Le vendredi 4 décembre 2009 10:26:12, noser...@no-log.org a écrit :
thanks for your quick reply.

The swap happens only at the launch of the scripts and decrease after.
This can be a problem with the computing of the file length ?

Hmmm... this could be the cause. However, I think that length is not computed by default for mp3 files.

Would you have a minimal scenario to share so that we can try to reproduce your issue ?

Yep, I start every day 10 or 15 liquidsoap scripts at the same time, playing each 1 big file once, around 600 and 700Mo or more.
The files are different every days.

Here's the script :

#!/usr/local/bin/liquidsoap

# === Liquidsoap Settings ===

set("log.file.path","/var/log/liquidsoap/2009/12/03/mountpoint_e1.log")
set("init.daemon",true)
set("init.daemon.pidfile.path","/home/recordings/liquidsoap/mountpoint_e1.pid")
set("server.telnet",true)
set("server.telnet.port",2016)
set("log.level",4)

# === Re-Source Settings ===

server="XX.XX.XX.XX"
port=8000
mountpoint="mountpoint_e1"
pass="password"
name="myname"
city="Paris"
info="2009-12-03 09:00:00"
website="http://test.com";

agc0 = once(single("/home/recordings/streams/2009/12/03/090000-mountpoint.mp3"))

# === FX ===

agc1 = eat_blank(length=100.,threshold=-80.,agc0)
agc2 = normalize(threshold=-35.,gain_max=18.,target=-7.,agc1)
agc3 = compress(threshold=-15.,ratio=3.,gain=0.,agc2)
agcx = agc3

# === Output ===

output = output.icecast.mp3 (
       agcx,
       host=server,
       port=port,
       password=pass,
       mount=mountpoint,
       id=mountpoint,
       samplerate=44100,
       bitrate=128,
       quality=5,
       name=name,
       genre=city,
       url=website,
       description=info,
       public=false,
       restart=true,
       restart_delay=10,
       fallible=true,
       on_stop=shutdown
)

------------------------------------------------------------------------------
Join us December 9, 2009 for the Red Hat Virtual Experience,
a free event focused on virtualization and cloud computing. 
Attend in-depth sessions from your desk. Your couch. Anywhere.
http://p.sf.net/sfu/redhat-sfdev2dev
_______________________________________________
Savonet-users mailing list
Savonet-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/savonet-users

Reply via email to