Hello,

I'm emailing the list after a couple unsuccessful attempts at contacting 
someone through the IRC channel. I have a CentOS 5.4 64-bit server 
running on an AMD X2 processor, with cPanel/WHM installed. Took me about 
half a day to finally get LiquidSoap to compile properly *without* the 
following packages:
ocaml-ogg
ocaml-vorbis
ocaml-speex
ocaml-theora
ocaml-faac
ocaml-faad

Once I had liquidsoap installed, I generated a playlist.pls via the 
following command:
find . -name *.mp3 > playlist.pls

If I check any of the files in this list using the Linux command 'file' 
here is the result I see:
/home/liquidsoap/Brad Smith - Pump It Up.mp3: Audio file with ID3 
version 22.0 tag, MP3 encoding

I next created a startup script:
liquidsoap 'output.shoutcast.mp3(bitrate=128,host="65.110.47.202", port 
= 8008, password = "password", mksafe(playlist("playlist.pls")))'

It is important to know that I currently use sc_trans_posix from 
shoutcast.com to stream at 128kbps to the same IP above, however to a 
different port. The sc_trans_posix application isa ble to stream 
consistently and flawlessly.

Now when I execute my startup script for liquidsoap, here is a s nippet 
of the output I see in the console:
liquids...@albion [~]# ./start.sh
2010/03/02 23:24:23 >>> LOG START
2010/03/02 23:24:22 [protocols.external:3] Didn't find "ufetch"
2010/03/02 23:24:22 [protocols.external:3] Found "/usr/bin/wget"
2010/03/02 23:24:23 [main:3] Liquidsoap 0.9.2
2010/03/02 23:24:23 [threads:3] Created thread "generic queue #1".
2010/03/02 23:24:23 [threads:3] Created thread "root" (1 total).
2010/03/02 23:24:23 [root:3] Waking up active nodes...
2010/03/02 23:24:23 [playlist(dot)pls:3] Loading playlist...
2010/03/02 23:24:23 [playlist(dot)pls:3] No mime type specified, trying 
autodetection.
2010/03/02 23:24:23 [playlist(dot)pls:3] Playlist treated as format 
audio/x-mpegurl
2010/03/02 23:24:23 [playlist(dot)pls:3] Successfully loaded a playlist 
of 3090 tracks.
2010/03/02 23:24:23 [output(dot)shoutcast(dot)mp3:3] Connecting mount / 
for [email protected]...
2010/03/02 23:24:23 [decoder:3] Decoder MP3 chosen for 
"/home/liquidsoap/Bee Gees - Stayin Alive (Ultimix Remix).mp3".
2010/03/02 23:24:23 [output(dot)shoutcast(dot)mp3:3] Connection setup 
was successful.
2010/03/02 23:24:23 [root:3] Broadcast starts up!
2010/03/02 23:24:23 [mksafe:3] Switch to safe_blank.
2010/03/02 23:24:23 [playlist(dot)pls:3] Prepared "/home/liquidsoap/Bee 
Gees - Stayin Alive (Ultimix Remix).mp3" (RID 1).
2010/03/02 23:24:23 [mksafe:3] Switch to playlist(dot)pls with transition.

Now when I tune in to the SHOUTcast stream with Winamp, I hear it 
'hiccup' about once every 10-15 seconds. It sounds like a blip for a 
fraction of a second, and the audio pauses for that brief fraction of a 
second and then continues. It does not appear to matter if I specify a 
bitrate to stream at in the startup script or not. The end result is the 
same.

I've read on the mailing list that I should set my log level to 5 to 
collect further information. This requires me to change the format of my 
startup script to something like this:
liquidsoap 'set("log.level",5);set("root.sync", 
false);output.shoutcast.mp3(bitrate=128,host="65.110.47.202", port = 
8008, password = "password", mksafe(playlist("playlist.pls")))'

When I do this, I'm receiving segmentation faults. If I run the script 
several times in a row, maybe one out of 6 or 7 tries it will 'stick' 
and start streaming instead of crashing. I did find that if I remove the 
set("root.sync", false) part, it is much more stable and does not 
segmentation faul, however I'm still stuck with the skipping/hiccup problem.

Here is the console output I see without the root.sync false option:
liquids...@albion [~]# ./start.sh
2010/03/02 23:47:54 >>> LOG START
2010/03/02 23:47:54 [protocols.external:3] Didn't find "ufetch"
2010/03/02 23:47:54 [protocols.external:3] Found "/usr/bin/wget"
2010/03/02 23:47:54 [main:3] Liquidsoap 0.9.2
2010/03/02 23:47:54 [video.converter:4] Couldn't find prefered video 
converter: gavl
2010/03/02 23:47:54 [audio.converter:4] Using prefered samplerate 
converter: libsamplerate
2010/03/02 23:47:54 [threads:3] Created thread "generic queue #1".
2010/03/02 23:47:54 [threads:3] Created thread "root" (1 total).
2010/03/02 23:47:54 [root:3] Waking up active nodes...
2010/03/02 23:47:54 [source:4] output(dot)shoutcast(dot)mp3 gets up
2010/03/02 23:47:54 [source:4] mksafe gets up
2010/03/02 23:47:54 [source:4] src_4567 gets up
2010/03/02 23:47:54 [playlist(dot)pls:3] Loading playlist...
2010/03/02 23:47:54 [playlist(dot)pls:3] No mime type specified, trying 
autodetection.
2010/03/02 23:47:54 [playlist parser:4] Trying application/rss+xml parser
2010/03/02 23:47:54 [parser.xml:5] Parsing failed: xml error: expected 
root element
2010/03/02 23:47:54 [playlist parser:4] Trying application/xspf+xml parser
2010/03/02 23:47:54 [parser.xml:5] Parsing failed: xml error: expected 
root element
2010/03/02 23:47:54 [playlist parser:4] Trying application/smil parser
2010/03/02 23:47:54 [parser.xml:5] Parsing failed: xml error: expected 
root element
2010/03/02 23:47:54 [playlist parser:4] Trying application/xml parser
2010/03/02 23:47:54 [parser.xml:5] Parsing failed: xml error: expected 
root element
2010/03/02 23:47:54 [playlist parser:4] Trying text/xml parser
2010/03/02 23:47:54 [parser.xml:5] Parsing failed: xml error: expected 
root element
2010/03/02 23:47:54 [playlist parser:4] Trying video/x-ms-asf parser
2010/03/02 23:47:54 [parser.xml:5] Parsing failed: xml error: expected 
root element
2010/03/02 23:47:54 [playlist parser:4] Trying audio/x-scpls parser
2010/03/02 23:47:54 [playlist parser:4] Trying audio/x-mpegurl parser
2010/03/02 23:47:54 [playlist(dot)pls:3] Playlist treated as format 
audio/x-mpegurl
2010/03/02 23:47:54 [playlist(dot)pls:3] Successfully loaded a playlist 
of 3090 tracks.
2010/03/02 23:47:54 [playlist(dot)pls:4] Activations changed: static=[], 
dynamic=[mksafe:output(dot)shoutcast(dot)mp3:output(dot)shoutcast(dot)mp3].
2010/03/02 23:47:54 [source:4] safe_blank gets up
2010/03/02 23:47:54 [decoder:4] Trying WAV decoder for 
"/home/liquidsoap/Biochip C - Go Bang (Biochip's Version 3).mp3"...
2010/03/02 23:47:54 [format.wav:5] open "/home/liquidsoap/Biochip C - Go 
Bang (Biochip's Version 3).mp3"
2010/03/02 23:47:54 [safe_blank:4] Activations changed: static=[], 
dynamic=[mksafe:output(dot)shoutcast(dot)mp3:output(dot)shoutcast(dot)mp3].
2010/03/02 23:47:54 [mksafe:4] Activations changed: 
static=[output(dot)shoutcast(dot)mp3:output(dot)shoutcast(dot)mp3], 
dynamic=[].
2010/03/02 23:47:54 [playlist(dot)pls:5] Queue is empty!
2010/03/02 23:47:54 [playlist(dot)pls:5] Failed to prepare track: no file.
2010/03/02 23:47:54 [output(dot)shoutcast(dot)mp3:4] Activations 
changed: static=[output(dot)shoutcast(dot)mp3], dynamic=[].
2010/03/02 23:47:54 [output(dot)shoutcast(dot)mp3:4] Enabling caching 
mode (active source)
2010/03/02 23:47:54 [output(dot)shoutcast(dot)mp3:3] Connecting mount / 
for [email protected]...
2010/03/02 23:47:54 [format.wav:5] Could not decode file.
2010/03/02 23:47:54 [decoder:4] Trying MP3 decoder for 
"/home/liquidsoap/Biochip C - Go Bang (Biochip's Version 3).mp3"...
2010/03/02 23:47:54 [format.mp3:5] open "/home/liquidsoap/Biochip C - Go 
Bang (Biochip's Version 3).mp3"
2010/03/02 23:47:54 [format.mp3:5] close "/home/liquidsoap/Biochip C - 
Go Bang (Biochip's Version 3).mp3"
2010/03/02 23:47:54 [decoder:3] Decoder MP3 chosen for 
"/home/liquidsoap/Biochip C - Go Bang (Biochip's Version 3).mp3".
2010/03/02 23:47:54 [output(dot)shoutcast(dot)mp3:3] Connection setup 
was successful.
2010/03/02 23:47:54 [root:3] Broadcast starts up!
2010/03/02 23:47:54 [playlist(dot)pls:4] Remaining: 0, queued: 0, 
adding: 1323000 (RID 1)
2010/03/02 23:47:54 [mksafe:3] Switch to safe_blank.
2010/03/02 23:47:54 [safe_blank:4] Activations changed: 
static=[mksafe:output(dot)shoutcast(dot)mp3:output(dot)shoutcast(dot)mp3], 
dynamic=[mksafe:output(dot)shoutcast(dot)mp3:output(dot)shoutcast(dot)mp3].
2010/03/02 23:47:54 [playlist(dot)pls:4] Remaining: 0, queued: 1323000, 
taking: 1323000
2010/03/02 23:47:54 [format.mp3:5] open "/home/liquidsoap/Biochip C - Go 
Bang (Biochip's Version 3).mp3"
2010/03/02 23:47:54 [playlist(dot)pls:3] Prepared 
"/home/liquidsoap/Biochip C - Go Bang (Biochip's Version 3).mp3" (RID 1).
2010/03/02 23:47:54 [mksafe:3] Switch to playlist(dot)pls with transition.
2010/03/02 23:47:54 [safe_blank:4] Activations changed: static=[], 
dynamic=[mksafe:output(dot)shoutcast(dot)mp3:output(dot)shoutcast(dot)mp3].
2010/03/02 23:47:54 [playlist(dot)pls:4] Activations changed: 
static=[mksafe:output(dot)shoutcast(dot)mp3:output(dot)shoutcast(dot)mp3], 
dynamic=[mksafe:output(dot)shoutcast(dot)mp3:output(dot)shoutcast(dot)mp3].

With the root.sync FALSE option on, here is what I saw in the console. 
It's important to note that with this option turned on, it seemed to 
only play xx seconds of each song before skipping to the next song. It 
was not playing anywhere near the entire song, and the skipping / hiccup 
problem was significantly worse:
liquids...@albion [~]# ./start.sh
2010/03/02 23:51:19 >>> LOG START
2010/03/02 23:51:19 [protocols.external:3] Didn't find "ufetch"
2010/03/02 23:51:19 [protocols.external:3] Found "/usr/bin/wget"
2010/03/02 23:51:19 [main:3] Liquidsoap 0.9.2
2010/03/02 23:51:19 [video.converter:4] Couldn't find prefered video 
converter: gavl
2010/03/02 23:51:19 [audio.converter:4] Using prefered samplerate 
converter: libsamplerate
2010/03/02 23:51:19 [threads:3] Created thread "generic queue #1".
2010/03/02 23:51:19 [threads:3] Created thread "root" (1 total).
2010/03/02 23:51:19 [root:3] Waking up active nodes...
2010/03/02 23:51:19 [source:4] output(dot)shoutcast(dot)mp3 gets up
2010/03/02 23:51:19 [source:4] mksafe gets up
2010/03/02 23:51:19 [source:4] src_4567 gets up
2010/03/02 23:51:19 [playlist(dot)pls:3] Loading playlist...
2010/03/02 23:51:19 [playlist(dot)pls:3] No mime type specified, trying 
autodetection.
2010/03/02 23:51:19 [playlist parser:4] Trying application/rss+xml parser
2010/03/02 23:51:19 [parser.xml:5] Parsing failed: xml error: expected 
root element
2010/03/02 23:51:19 [playlist parser:4] Trying application/xspf+xml parser
2010/03/02 23:51:19 [parser.xml:5] Parsing failed: xml error: expected 
root element
2010/03/02 23:51:19 [playlist parser:4] Trying application/smil parser
2010/03/02 23:51:19 [parser.xml:5] Parsing failed: xml error: expected 
root element
2010/03/02 23:51:19 [playlist parser:4] Trying application/xml parser
2010/03/02 23:51:19 [parser.xml:5] Parsing failed: xml error: expected 
root element
2010/03/02 23:51:19 [playlist parser:4] Trying text/xml parser
2010/03/02 23:51:19 [parser.xml:5] Parsing failed: xml error: expected 
root element
2010/03/02 23:51:19 [playlist parser:4] Trying video/x-ms-asf parser
2010/03/02 23:51:19 [parser.xml:5] Parsing failed: xml error: expected 
root element
2010/03/02 23:51:19 [playlist parser:4] Trying audio/x-scpls parser
2010/03/02 23:51:19 [playlist parser:4] Trying audio/x-mpegurl parser
2010/03/02 23:51:19 [playlist(dot)pls:3] Playlist treated as format 
audio/x-mpegurl
2010/03/02 23:51:19 [playlist(dot)pls:3] Successfully loaded a playlist 
of 3090 tracks.
2010/03/02 23:51:19 [playlist(dot)pls:4] Activations changed: static=[], 
dynamic=[mksafe:output(dot)shoutcast(dot)mp3:output(dot)shoutcast(dot)mp3].
2010/03/02 23:51:19 [source:4] safe_blank gets up
2010/03/02 23:51:19 [decoder:4] Trying WAV decoder for 
"/home/liquidsoap/Unnamed Old School breakbeat 3 track 8.mp3"...
2010/03/02 23:51:19 [safe_blank:4] Activations changed: static=[], 
dynamic=[mksafe:output(dot)shoutcast(dot)mp3:output(dot)shoutcast(dot)mp3].
2010/03/02 23:51:19 [format.wav:5] open "/home/liquidsoap/Unnamed Old 
School breakbeat 3 track 8.mp3"
2010/03/02 23:51:19 [mksafe:4] Activations changed: 
static=[output(dot)shoutcast(dot)mp3:output(dot)shoutcast(dot)mp3], 
dynamic=[].
2010/03/02 23:51:19 [playlist(dot)pls:5] Queue is empty!
2010/03/02 23:51:19 [playlist(dot)pls:5] Failed to prepare track: no file.
2010/03/02 23:51:19 [output(dot)shoutcast(dot)mp3:4] Activations 
changed: static=[output(dot)shoutcast(dot)mp3], dynamic=[].
2010/03/02 23:51:19 [output(dot)shoutcast(dot)mp3:4] Enabling caching 
mode (active source)
2010/03/02 23:51:19 [output(dot)shoutcast(dot)mp3:3] Connecting mount / 
for [email protected]...
2010/03/02 23:51:19 [format.wav:5] Could not decode file.
2010/03/02 23:51:19 [decoder:4] Trying MP3 decoder for 
"/home/liquidsoap/Unnamed Old School breakbeat 3 track 8.mp3"...
2010/03/02 23:51:19 [format.mp3:5] open "/home/liquidsoap/Unnamed Old 
School breakbeat 3 track 8.mp3"
2010/03/02 23:51:19 [format.mp3:5] close "/home/liquidsoap/Unnamed Old 
School breakbeat 3 track 8.mp3"
2010/03/02 23:51:19 [decoder:3] Decoder MP3 chosen for 
"/home/liquidsoap/Unnamed Old School breakbeat 3 track 8.mp3".
2010/03/02 23:51:19 [output(dot)shoutcast(dot)mp3:3] Connection setup 
was successful.
2010/03/02 23:51:19 [root:3] Broadcast starts up!
2010/03/02 23:51:19 [mksafe:3] Switch to safe_blank.
2010/03/02 23:51:19 [safe_blank:4] Activations changed: 
static=[mksafe:output(dot)shoutcast(dot)mp3:output(dot)shoutcast(dot)mp3], 
dynamic=[mksafe:output(dot)shoutcast(dot)mp3:output(dot)shoutcast(dot)mp3].
2010/03/02 23:51:19 [playlist(dot)pls:5] Queue is empty!
2010/03/02 23:51:19 [playlist(dot)pls:5] Failed to prepare track: no file.
2010/03/02 23:51:19 [playlist(dot)pls:5] Queue is empty!
2010/03/02 23:51:19 [playlist(dot)pls:5] Failed to prepare track: no file.
2010/03/02 23:51:19 [playlist(dot)pls:5] Queue is empty!
2010/03/02 23:51:19 [playlist(dot)pls:5] Failed to prepare track: no file.
2010/03/02 23:51:19 [playlist(dot)pls:5] Queue is empty!
2010/03/02 23:51:19 [playlist(dot)pls:5] Failed to prepare track: no file.
2010/03/02 23:51:19 [playlist(dot)pls:5] Queue is empty!
2010/03/02 23:51:19 [playlist(dot)pls:5] Failed to prepare track: no file.
2010/03/02 23:51:19 [playlist(dot)pls:5] Queue is empty!
2010/03/02 23:51:19 [playlist(dot)pls:5] Failed to prepare track: no file.
2010/03/02 23:51:19 [playlist(dot)pls:5] Queue is empty!
2010/03/02 23:51:19 [playlist(dot)pls:5] Failed to prepare track: no file.
2010/03/02 23:51:19 [playlist(dot)pls:5] Queue is empty!
2010/03/02 23:51:19 [playlist(dot)pls:5] Failed to prepare track: no file.
2010/03/02 23:51:19 [playlist(dot)pls:5] Queue is empty!
2010/03/02 23:51:19 [playlist(dot)pls:5] Failed to prepare track: no file.
2010/03/02 23:51:19 [playlist(dot)pls:5] Queue is empty!
2010/03/02 23:51:19 [playlist(dot)pls:5] Failed to prepare track: no file.
2010/03/02 23:51:19 [playlist(dot)pls:5] Queue is empty!
2010/03/02 23:51:19 [playlist(dot)pls:5] Failed to prepare track: no file.
2010/03/02 23:51:19 [playlist(dot)pls:5] Queue is empty!
2010/03/02 23:51:19 [playlist(dot)pls:5] Failed to prepare track: no file.
2010/03/02 23:51:19 [playlist(dot)pls:5] Queue is empty!
2010/03/02 23:51:19 [playlist(dot)pls:5] Failed to prepare track: no file.
2010/03/02 23:51:19 [playlist(dot)pls:5] Queue is empty!
2010/03/02 23:51:19 [playlist(dot)pls:5] Failed to prepare track: no file.
2010/03/02 23:51:19 [playlist(dot)pls:5] Queue is empty!
2010/03/02 23:51:19 [playlist(dot)pls:5] Failed to prepare track: no file.
2010/03/02 23:51:19 [playlist(dot)pls:5] Queue is empty!
2010/03/02 23:51:19 [playlist(dot)pls:5] Failed to prepare track: no file.
2010/03/02 23:51:19 [playlist(dot)pls:5] Queue is empty!
2010/03/02 23:51:19 [playlist(dot)pls:5] Failed to prepare track: no file.
2010/03/02 23:51:19 [playlist(dot)pls:5] Queue is empty!
2010/03/02 23:51:19 [playlist(dot)pls:5] Failed to prepare track: no file.
2010/03/02 23:51:19 [playlist(dot)pls:5] Queue is empty!
2010/03/02 23:51:19 [playlist(dot)pls:5] Failed to prepare track: no file.
2010/03/02 23:51:19 [playlist(dot)pls:5] Queue is empty!
2010/03/02 23:51:19 [playlist(dot)pls:5] Failed to prepare track: no file.
2010/03/02 23:51:19 [playlist(dot)pls:5] Queue is empty!
2010/03/02 23:51:19 [playlist(dot)pls:5] Failed to prepare track: no file.
2010/03/02 23:51:19 [playlist(dot)pls:5] Queue is empty!
2010/03/02 23:51:19 [playlist(dot)pls:5] Failed to prepare track: no file.
2010/03/02 23:51:19 [playlist(dot)pls:5] Queue is empty!
2010/03/02 23:51:19 [playlist(dot)pls:5] Failed to prepare track: no file.
2010/03/02 23:51:19 [playlist(dot)pls:5] Queue is empty!
2010/03/02 23:51:19 [playlist(dot)pls:5] Failed to prepare track: no file.
2010/03/02 23:51:19 [playlist(dot)pls:5] Queue is empty!
2010/03/02 23:51:19 [playlist(dot)pls:5] Failed to prepare track: no file.
2010/03/02 23:51:19 [playlist(dot)pls:5] Queue is empty!
2010/03/02 23:51:19 [playlist(dot)pls:5] Failed to prepare track: no file.
2010/03/02 23:51:19 [playlist(dot)pls:5] Queue is empty!
2010/03/02 23:51:19 [playlist(dot)pls:5] Failed to prepare track: no file.
2010/03/02 23:51:19 [playlist(dot)pls:5] Queue is empty!
2010/03/02 23:51:19 [playlist(dot)pls:5] Failed to prepare track: no file.
2010/03/02 23:51:19 [playlist(dot)pls:5] Queue is empty!
2010/03/02 23:51:19 [playlist(dot)pls:5] Failed to prepare track: no file.
2010/03/02 23:51:19 [playlist(dot)pls:5] Queue is empty!
2010/03/02 23:51:19 [playlist(dot)pls:5] Failed to prepare track: no file.
2010/03/02 23:51:19 [playlist(dot)pls:4] Remaining: 0, queued: 0, 
adding: 1323000 (RID 1)
2010/03/02 23:51:19 [playlist(dot)pls:4] Remaining: 0, queued: 1323000, 
taking: 1323000
2010/03/02 23:51:19 [format.mp3:5] open "/home/liquidsoap/Unnamed Old 
School breakbeat 3 track 8.mp3"
2010/03/02 23:51:19 [playlist(dot)pls:3] Prepared 
"/home/liquidsoap/Unnamed Old School breakbeat 3 track 8.mp3" (RID 1).
2010/03/02 23:51:19 [mksafe:3] Switch to playlist(dot)pls with transition.
2010/03/02 23:51:19 [safe_blank:4] Activations changed: static=[], 
dynamic=[mksafe:output(dot)shoutcast(dot)mp3:output(dot)shoutcast(dot)mp3].
2010/03/02 23:51:19 [playlist(dot)pls:4] Activations changed: 
static=[mksafe:output(dot)shoutcast(dot)mp3:output(dot)shoutcast(dot)mp3], 
dynamic=[mksafe:output(dot)shoutcast(dot)mp3:output(dot)shoutcast(dot)mp3].
2010/03/02 23:51:45 [decoder:4] Trying WAV decoder for 
"/home/liquidsoap/Liquid Child - Diving Faces (Icey's Arctic Bass 
Mix).mp3"...
2010/03/02 23:51:45 [format.wav:5] open "/home/liquidsoap/Liquid Child - 
Diving Faces (Icey's Arctic Bass Mix).mp3"
2010/03/02 23:51:45 [format.wav:5] Could not decode file.
2010/03/02 23:51:45 [decoder:4] Trying MP3 decoder for 
"/home/liquidsoap/Liquid Child - Diving Faces (Icey's Arctic Bass 
Mix).mp3"...
2010/03/02 23:51:45 [format.mp3:5] open "/home/liquidsoap/Liquid Child - 
Diving Faces (Icey's Arctic Bass Mix).mp3"
2010/03/02 23:51:45 [format.mp3:5] close "/home/liquidsoap/Liquid Child 
- Diving Faces (Icey's Arctic Bass Mix).mp3"
2010/03/02 23:51:45 [decoder:3] Decoder MP3 chosen for 
"/home/liquidsoap/Liquid Child - Diving Faces (Icey's Arctic Bass Mix).mp3".
2010/03/02 23:51:45 [playlist(dot)pls:4] Remaining: 407088, queued: 0, 
adding: 1323000 (RID 2)
2010/03/02 23:51:46 [playlist(dot)pls:3] Finished with 
"/home/liquidsoap/Unnamed Old School breakbeat 3 track 8.mp3".
2010/03/02 23:51:46 [format.mp3:5] close "/home/liquidsoap/Unnamed Old 
School breakbeat 3 track 8.mp3"
2010/03/02 23:51:46 [playlist(dot)pls:4] Remaining: 0, queued: 1323000, 
taking: 1323000
2010/03/02 23:51:46 [format.mp3:5] open "/home/liquidsoap/Liquid Child - 
Diving Faces (Icey's Arctic Bass Mix).mp3"
2010/03/02 23:51:46 [playlist(dot)pls:3] Prepared 
"/home/liquidsoap/Liquid Child - Diving Faces (Icey's Arctic Bass 
Mix).mp3" (RID 2).
2010/03/02 23:52:09 [decoder:4] Trying WAV decoder for 
"/home/liquidsoap/Icey - Love.mp3"...
2010/03/02 23:52:09 [format.wav:5] open "/home/liquidsoap/Icey - Love.mp3"
2010/03/02 23:52:09 [format.wav:5] Could not decode file.
2010/03/02 23:52:09 [decoder:4] Trying MP3 decoder for 
"/home/liquidsoap/Icey - Love.mp3"...
2010/03/02 23:52:09 [format.mp3:5] open "/home/liquidsoap/Icey - Love.mp3"
2010/03/02 23:52:09 [format.mp3:5] close "/home/liquidsoap/Icey - Love.mp3"
2010/03/02 23:52:09 [decoder:3] Decoder MP3 chosen for 
"/home/liquidsoap/Icey - Love.mp3".
2010/03/02 23:52:09 [playlist(dot)pls:4] Remaining: 419544, queued: 0, 
adding: 1323000 (RID 3)
./start.sh: line 1: 32144 Segmentation fault      (core dumped) 
liquidsoap 'set("log.level",5);set("root.sync", 
false);output.shoutcast.mp3(bitrate=128,host="65.110.47.202", port = 
8008, password = "password", mksafe(playlist("playlist.pls")))'

Sorry about the ridiculously long post. I wanted to provide as much 
information as I could. I didn't want to use a pastebin type site in 
case someone else searches google on text in my output.

Any help or guidance that can be provided would be greatly appreciated.

thank you

Respectfully,
Max Rathbone

------------------------------------------------------------------------------
Download Intel® Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
_______________________________________________
Savonet-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/savonet-users

Reply via email to