• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

admin/H31-Oct-2018-1,1601,017

conf/H03-May-2022-991848

doc/H03-May-2022-4,6084,115

examples/H03-May-2022-492421

m4/H31-Oct-2018-10,0619,099

src/H31-Oct-2018-32,84325,342

web/H03-May-2022-1,3851,185

win32/H03-May-2022-822661

AUTHORSH A D17-Nov-2017269 87

COPYINGH A D31-Oct-201817.6 KiB341281

ChangeLogH A D31-Oct-2018175.4 KiB5,5963,849

HACKINGH A D31-Oct-2018235 64

Makefile.amH A D31-Oct-2018583 2415

Makefile.inH A D31-Oct-201828.9 KiB929826

NEWSH A D31-Oct-201826.2 KiB659512

READMEH A D31-Oct-20182.4 KiB5845

TODOH A D31-Oct-20181.7 KiB5033

aclocal.m4H A D31-Oct-201844 KiB1,2171,105

compileH A D28-Oct-20187.2 KiB349259

config.guessH A D24-Feb-201843.2 KiB1,4811,288

config.h.inH A D10-Jun-20185.2 KiB211141

config.subH A D24-Feb-201835.3 KiB1,8021,661

configureH A D31-Oct-2018486.3 KiB17,09514,315

configure.inH A D31-Oct-20184.7 KiB162138

depcompH A D28-Oct-201823 KiB792502

install-shH A D28-Oct-201815 KiB519337

ltmain.shH A D10-Oct-2018320.5 KiB11,2988,160

missingH A D28-Oct-20186.7 KiB216143

README

1icecast 2.x - README
2---------------------------------------------------------------------
3
4Icecast is a streaming media server which currently supports Ogg
5streaming including the vorbis and theora codecs. Also icecast can
6handle other streams like MP3/AAC/NSV.
7It can be used to create an Internet radio station or a privately
8running jukebox and many things in between. It is very versatile in
9that new formats can be added relatively easily and supports open
10standards for communication and interaction.
11
12Icecast is distributed under the GNU GPL, version 2. A copy of this
13license is included with this software in the COPYING file.
14
15Prerequisites
16---------------------------------------------------------------------
17icecast requires the following packages :
18
19* libxml2 - http://xmlsoft.org/downloads.html
20* libxslt - http://xmlsoft.org/XSLT/downloads.html
21* curl - http://curl.haxx.se/download.html (>= version 7.10 required)
22  NOTE: icecast may be compiled without curl, however this will
23        disable Stream Directory server interaction (YP) and URL based
24        authentication.
25* ogg/vorbis - http://www.vorbis.com/files (>= version 1.0 required)
26
27A note about prerequisite packages
28---------------------------------------------------------------------
29Most distributions have some sort of package management repository for
30pre-built packages (eg rpm, deb etc).  These setups often have a runtime
31package, which is usually installed for you by default, and enables you
32to run applications that depend on them.  However if you are building
33icecast from source then the runtime system is not enough. You will also
34need a development package named something like libxslt-devel
35
36Build/Install
37---------------------------------------------------------------------
38To build icecast on a Unix platform, perform the following :
39
40Run
41   ./configure
42   make
43   make install
44
45This is the typical procedure if you download the tar file.  If you retrive
46the code from subversion or want to rebuild the configure then run autogen.sh
47instead of the configure above. Most people do not need to run autogen.sh
48
49A sample config file will be placed in /usr/local/etc (on UNIX) or in
50the current working directory (on Win32) and is called icecast.xml
51
52Documentation for icecast is available in the doc directory, by
53viewing doc/index.html in a browser.
54
55Please email us at icecast@xiph.org or icecast-dev@xiph.org, or come and see
56us at irc.freenode.net, channel #icecast, if you have any troubles.
57
58