Files
darkice/darkice/trunk
2006-07-16 16:46:40 +00:00
..
2006-01-26 22:14:08 +00:00
2004-02-23 20:03:09 +00:00
2006-01-26 22:14:08 +00:00
2004-02-23 19:12:52 +00:00
2006-05-19 13:35:41 +00:00
2006-05-18 07:05:37 +00:00
2006-05-19 12:40:59 +00:00
2006-05-19 13:11:33 +00:00
2004-02-15 22:30:08 +00:00

DarkIce live audio streamer, http://darkice.sourceforge.net
Copyright (c) 2000-2006, Tyrell Hungary, http://tyrell.hu


Contents
--------

1. What is DarkIce?
2. Compiling and installing
3. Reporting crashes


1. What is DarkIce?
-------------------

DarkIce is an IceCast, IceCast2 and ShoutCast live audio streamer. It
takes audio input from a sound card, encodes it into mp3 and/or Ogg Vorbis,
and sends the mp3 stream to one or more IceCast and/or ShoutCast servers,
the Ogg Vorbis stream to one or more IceCast2 servers.

DarkIce is hosted on SourceForge, at http://darkice.sourceforge.net/


2. Compiling and installing
---------------------------

On how to compile and install, please read the file INSTALL. If you're
impatient, try:

./configure
make

The executable built is src/darkice.
To install, try as root:

make install


For documentation, try:

man darkice


3. Reporting crashes
--------------------

When DarkIce core dumps, please send the backtrace along with your error
report to the darkice mailing list: darkice-list@lists.sourceforge.net
To get the backtrace information, you need gdb, the GNU debugger:

1. configure and compile using the --with-debug option:

./configure --with-debug=yes
make clean all

2. run darkice from within gdb:

gdb src/darkice

3. set parameters within gdb:

(gdb) set args -c darkice.cfg

4. run:

(gdb) run

5. after coredump, print the backtrace:

(gdb) bt