Streaming Service with Icecast: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
|||
Line 1: | Line 1: | ||
Note: we will be using the <code>icecast-kh</code> fork that contains some extra stuff (FIXME: unpack stuff). | Note: we will be using the <code>icecast-kh</code> fork that contains some extra stuff (FIXME: unpack stuff). | ||
== Installation == | == Installation (Debian) == | ||
* Install dependencies | * Install dependencies | ||
apt install libxslt1-dev libogg-dev libvorbis-dev libtheora-dev libcurl4-gnutls-dev | |||
* Get the sources | * Get the sources | ||
cd /usr/src | cd /usr/src | ||
Line 8: | Line 9: | ||
* Compile and install | * Compile and install | ||
cd icecast-kh | cd icecast-kh | ||
./configure | |||
make |
Revision as of 16:31, 16 December 2019
Note: we will be using the icecast-kh
fork that contains some extra stuff (FIXME: unpack stuff).
Installation (Debian)
- Install dependencies
apt install libxslt1-dev libogg-dev libvorbis-dev libtheora-dev libcurl4-gnutls-dev
- Get the sources
cd /usr/src git clone https://github.com/karlheyes/icecast-kh
- Compile and install
cd icecast-kh ./configure make