Dear List,

I'm using Liquidsoap version 0.9.0 on an Debian Lenny. I'm trying to
transcode an mp3 stream into an aac stream and forward it to an
icecast server. I've worked out the following configuration:

#!/usr/bin/liquidsoap -v

set("log.file.path","/tmp/basic-radio.log")
def highaacenc(_) = "faac - -o- -r -P -b64" end

# Input the stream,
# from an Icecast server or any other source
url = "http://localhost:8000/high";
input = mksafe(input.http(url))

# AAC+ output (64kbs CBR)
output.icecast.external( restart = true,
                         restart_on_crash = true,
                         process = highaacenc,
                         host = "localhost",
                         port = 8000,
                         password = "hackme",
                         mount = "high.aac",
                         header = true,
                         shout_raw = true,
                         bitrate = 64,
                         input )

This runs, but there is now sound, when I listen to the high.aac mount
on my icecast2 server. I've also tried to use aacplusenc instead of
faac, but I didn't succeed neither. I'm not shure if I'm doing
something wrong or if this future is not available in version 0.9.0.

I would appreciate your help!


Markus

------------------------------------------------------------------------------
Stay on top of everything new and different, both inside and 
around Java (TM) technology - register by April 22, and save
$200 on the JavaOne (SM) conference, June 2-5, 2009, San Francisco.
300 plus technical and hands-on sessions. Register today. 
Use priority code J9JMT32. http://p.sf.net/sfu/p
_______________________________________________
Savonet-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/savonet-users

Reply via email to