<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.xiph.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=ToddShepard</id>
	<title>XiphWiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.xiph.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=ToddShepard"/>
	<link rel="alternate" type="text/html" href="https://wiki.xiph.org/Special:Contributions/ToddShepard"/>
	<updated>2026-04-24T23:23:49Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.45.1</generator>
	<entry>
		<id>https://wiki.xiph.org/index.php?title=Icecast_Server/Getting_Started&amp;diff=15097</id>
		<title>Icecast Server/Getting Started</title>
		<link rel="alternate" type="text/html" href="https://wiki.xiph.org/index.php?title=Icecast_Server/Getting_Started&amp;diff=15097"/>
		<updated>2014-11-27T20:22:09Z</updated>

		<summary type="html">&lt;p&gt;ToddShepard: First finished version, smaller fixes, removing Draft template, adding Icecast category&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This article describes how to get an [[Icecast]] server up and running. On this resulting server you can connect with a Source Client, like [[IceS]], and stream music or video to listener clients. To get started with using Icecast you should first understand how everything works together.&lt;br /&gt;
&lt;br /&gt;
== How it works ==&lt;br /&gt;
&lt;br /&gt;
[[File:Flowchart icecast.png|800px|center|Graphic showing the flow from source clients through Icecast to listeners]]&lt;br /&gt;
&lt;br /&gt;
The graphic above shows how Icecast basically works.&lt;br /&gt;
&lt;br /&gt;
A source client, for example IceS, connects to the server on a specified mountpoint. A mountpoint could be described as a file on a normal local file system.&amp;lt;br /&amp;gt;&lt;br /&gt;
The listener accesses the mountpoint – the &amp;quot;file&amp;quot; – and can listen to the content – the stream. The server now offers the stream it gets form the source client on that specified mountpoint.&lt;br /&gt;
Now listeners can connect to this mountpoint like they would to a normal file on a remote server.&lt;br /&gt;
&lt;br /&gt;
Icecast sends the data it receives from the source client to the listeners, to everyone the same bitstream in realtime.&amp;lt;br /&amp;gt;&lt;br /&gt;
It is not possible to use Icecast with static files (like ogg or mp3 files), Icecast always needs an source client which sends the bitstream!&lt;br /&gt;
&lt;br /&gt;
== Getting Icecast ==&lt;br /&gt;
&lt;br /&gt;
Before you can actually start to set up the server, you have to download the source code (or alternatively a binary package on Windows). This &amp;quot;Getting Started&amp;quot; is written for the server version &#039;&#039;&#039;2.4.1&#039;&#039;&#039;, but should work with at least every 2.4.x version.&lt;br /&gt;
&lt;br /&gt;
You can get the latest releases on [http://icecast.org/download/ icecast.org]&lt;br /&gt;
&lt;br /&gt;
Windows users should download the binary package, while others can download the source. There may be compiled versions on Homebrew (Mac OS) or apt-get (Debian, Ubuntu, …), but these could be outdated, so I will explain how to compile form source in the next step.&lt;br /&gt;
&lt;br /&gt;
Windows users who downloaded the binary package – and extracted it to some location – can skip the next step and continue with &amp;quot;The configuration&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
== Compiling ==&lt;br /&gt;
&lt;br /&gt;
After downloading the source package you like, you have to extract it. After that you will have to use your console and change directory (cd) to your extracted files.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
$ cd /path/to/icecast-source&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
After doing that you have to run the configuration tool, then compile and install it. You may have to install additional dependencies first, when done, run the following commands.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
$ ./configure&lt;br /&gt;
$ make&lt;br /&gt;
$ make install&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== The configuration ==&lt;br /&gt;
&lt;br /&gt;
After installing Icecast, you are just one step away from using it! You have to configure it. Icecast is shipped with a default configuration. The default configuration can be found&lt;br /&gt;
* on Linux here: &amp;lt;pre&amp;gt;/etc/icecast.xml&amp;lt;/pre&amp;gt; or &amp;lt;pre&amp;gt;/etc/icecast2/icecast.xml&amp;lt;/pre&amp;gt;&lt;br /&gt;
* on Mac OS here: &amp;lt;pre&amp;gt;/etc/icecast.xml&amp;lt;/pre&amp;gt; or &amp;lt;pre&amp;gt;/usr/local/etc/icecast.xml&amp;lt;/pre&amp;gt;&lt;br /&gt;
* on Windows here: &amp;lt;pre&amp;gt;/path/to/extracted/icecast/etc/icecast.xml&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You can now edit this file and save it to a location where you like it, or just leave it there, however you will need the full path to start the server, so you should remember it. To set up the server you should edit some fields in this xml file, like setting the right passwords, and hostname.&lt;br /&gt;
&lt;br /&gt;
It is never wrong to set up these values, especially if you plan running a public server.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;location&amp;gt;The server&#039;s location&amp;lt;/location&amp;gt;&lt;br /&gt;
&amp;lt;admin&amp;gt;admin@yourdomain.tld&amp;lt;/admin&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You always should change the passwords from &#039;&#039;hackme&#039;&#039; to something more secure.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;authentication&amp;gt;&lt;br /&gt;
    &amp;lt;!-- Sources log in with username &#039;source&#039; --&amp;gt;&lt;br /&gt;
    &amp;lt;source-password&amp;gt;myfancypassword&amp;lt;/source-password&amp;gt;&lt;br /&gt;
    &amp;lt;!-- Relays log in username &#039;relay&#039; --&amp;gt;&lt;br /&gt;
    &amp;lt;relay-password&amp;gt;youshallnotpass&amp;lt;/relay-password&amp;gt;&lt;br /&gt;
&lt;br /&gt;
    &amp;lt;!-- Admin logs in with the username given below --&amp;gt;&lt;br /&gt;
    &amp;lt;admin-user&amp;gt;admin&amp;lt;/admin-user&amp;gt;&lt;br /&gt;
    &amp;lt;admin-password&amp;gt;anotherfancypassword&amp;lt;/admin-password&amp;gt;&lt;br /&gt;
&amp;lt;/authentication&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If you plan to run a public server and/or a server with [[Yellow Pages]] listing, you should change the hostname to one where your server can be accessed from.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;!-- This is the hostname other people will use to connect to your server.&lt;br /&gt;
It affects mainly the urls generated by Icecast for playlists and yp&lt;br /&gt;
listings. --&amp;gt;&lt;br /&gt;
&amp;lt;hostname&amp;gt;streams.yourdomain.tld&amp;lt;/hostname&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Setting up more advanced things like relays, Yellow Pages listing and various other things will be explained in following in-depth parts of this Getting started.&lt;br /&gt;
&lt;br /&gt;
== Starting the server ==&lt;br /&gt;
&lt;br /&gt;
To start your first server, type&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
$ icecast -c /path/to/icecast.xml&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
into your console. If you did everything correctly Icecast should start and listen for connections on the default port. You can access it by typing http://127.0.0.1:8000/ into your web browser. If you see a page which says &#039;&#039;&#039;Icecast2 Status&#039;&#039;&#039; on top, you have done everything right and finished the basic part of this Getting started!&lt;br /&gt;
&lt;br /&gt;
== What next? ==&lt;br /&gt;
&lt;br /&gt;
If you want in-depth infos, you should look at the following articles.&lt;br /&gt;
&lt;br /&gt;
* If you want to start streaming, have a look at [[IceS/Getting Started]]&lt;br /&gt;
* If you want to go deeper into configuring your server, have a look at [[Icecast/Advanced Configuration]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Icecast]]&lt;/div&gt;</summary>
		<author><name>ToddShepard</name></author>
	</entry>
	<entry>
		<id>https://wiki.xiph.org/index.php?title=Icecast_Server/Getting_Started&amp;diff=15096</id>
		<title>Icecast Server/Getting Started</title>
		<link rel="alternate" type="text/html" href="https://wiki.xiph.org/index.php?title=Icecast_Server/Getting_Started&amp;diff=15096"/>
		<updated>2014-11-27T20:08:55Z</updated>

		<summary type="html">&lt;p&gt;ToddShepard: Finished article for review.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Draft}}&lt;br /&gt;
&lt;br /&gt;
This article describes how to get an [[Icecast]] server up and running. On this resulting server you can connect with a Source Client, like [[IceS]], and stream music or video to listener clients. To get started with using Icecast you should first understand how everything works together.&lt;br /&gt;
&lt;br /&gt;
== How it works ==&lt;br /&gt;
&lt;br /&gt;
[[File:Flowchart icecast.png|800px|center|Graphic showing the flow from source clients through Icecast to listeners]]&lt;br /&gt;
&lt;br /&gt;
The graphic above shows how Icecast basically works.&lt;br /&gt;
&lt;br /&gt;
A source client, for example IceS, connects to the server on a specified mountpoint. A mountpoint could be described as a file on a normal local file system.&amp;lt;br /&amp;gt;&lt;br /&gt;
The listener accesses the mountpoint – the &amp;quot;file&amp;quot; – and can listen to the content – the stream. The server now offers the stream it gets form the source client on that specified mountpoint.&lt;br /&gt;
Now listeners can connect to this mountpoint like they would to a normal file on a remote server.&lt;br /&gt;
&lt;br /&gt;
Icecast sends the data it receives from the source client to the listeners, to everyone the same bitstream in realtime.&amp;lt;br /&amp;gt;&lt;br /&gt;
It is not possible to use Icecast with static files (like ogg or mp3 files), Icecast always needs an source client which sends the bitstream!&lt;br /&gt;
&lt;br /&gt;
== Getting Icecast ==&lt;br /&gt;
&lt;br /&gt;
Before you can actually start to set up the server, you have to download the source code (or alternatively a binary package on Windows). This &amp;quot;Getting Started&amp;quot; is written for the server version &#039;&#039;&#039;2.4.1&#039;&#039;&#039;, but should work with at least every 2.4.x version.&lt;br /&gt;
&lt;br /&gt;
You can get the latest releases on [http://downloads.xiph.org/releases/icecast/ downloads.xiph.org]&lt;br /&gt;
&lt;br /&gt;
Windows users should download the binary package, while others can download the source. There may be compiled versions on Homebrew (Mac OS) or apt-get (Debian, Ubuntu, …), but these could be outdated, so I will explain how to compile form source in the next step.&lt;br /&gt;
&lt;br /&gt;
Windows users who downloaded the binary package – and extracted it to some location – can skip the next step and continue with &amp;quot;The configuration&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
== Compiling ==&lt;br /&gt;
&lt;br /&gt;
After downloading the source package you like, you have to extract it. After that you will have to use your console and change directory (cd) to your extracted files.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
$ cd /path/to/icecast-source&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
After doing that you have to run the configuration tool, then compile and install it. You may have to install additional dependencies first, when done, run the following commands.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
$ ./configure&lt;br /&gt;
$ make&lt;br /&gt;
$ make install&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== The configuration ==&lt;br /&gt;
&lt;br /&gt;
After installing Icecast, you are just one step away from using it! You have to configure it. Icecast is shipped with a default configuration. The default configuration can be found&lt;br /&gt;
* on Linux here: &amp;lt;pre&amp;gt;/etc/icecast.xml&amp;lt;/pre&amp;gt; or &amp;lt;pre&amp;gt;/etc/icecast2/icecast.xml&amp;lt;/pre&amp;gt;&lt;br /&gt;
* on Mac OS here: &amp;lt;pre&amp;gt;/etc/icecast.xml&amp;lt;/pre&amp;gt; or &amp;lt;pre&amp;gt;/usr/local/etc/icecast.xml&amp;lt;/pre&amp;gt;&lt;br /&gt;
* on Windows here: &amp;lt;pre&amp;gt;/path/to/extracted/icecast/etc/icecast.xml&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You can now edit this file and save it to a location where you like it, or just leave it there, however you will need the full path to start the server, so you should remember it. To set up the server you should edit some fields in this xml file, like setting the right passwords, and hostname.&lt;br /&gt;
&lt;br /&gt;
It is never wrong to set up these values, especially if you plan running a public server.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;location&amp;gt;The server&#039;s location&amp;lt;/location&amp;gt;&lt;br /&gt;
&amp;lt;admin&amp;gt;admin@yourdomain.tld&amp;lt;/admin&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You always should change the passwords from &#039;&#039;hackme&#039;&#039; to something more secure.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;authentication&amp;gt;&lt;br /&gt;
    &amp;lt;!-- Sources log in with username &#039;source&#039; --&amp;gt;&lt;br /&gt;
    &amp;lt;source-password&amp;gt;myfancypassword&amp;lt;/source-password&amp;gt;&lt;br /&gt;
    &amp;lt;!-- Relays log in username &#039;relay&#039; --&amp;gt;&lt;br /&gt;
    &amp;lt;relay-password&amp;gt;youshallnotpass&amp;lt;/relay-password&amp;gt;&lt;br /&gt;
&lt;br /&gt;
    &amp;lt;!-- Admin logs in with the username given below --&amp;gt;&lt;br /&gt;
    &amp;lt;admin-user&amp;gt;admin&amp;lt;/admin-user&amp;gt;&lt;br /&gt;
    &amp;lt;admin-password&amp;gt;anotherfancypassword&amp;lt;/admin-password&amp;gt;&lt;br /&gt;
&amp;lt;/authentication&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If you plan to run a public server and/or a server with [[Yellow Pages]] listing, you should change the hostname to the hostname/IP where your server can be accessed from.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;!-- This is the hostname other people will use to connect to your server.&lt;br /&gt;
It affects mainly the urls generated by Icecast for playlists and yp&lt;br /&gt;
listings. --&amp;gt;&lt;br /&gt;
&amp;lt;hostname&amp;gt;streams.yourdomain.tld&amp;lt;/hostname&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Setting up more advanced things like relays, Yellow Pages listing and various other things will be explained in following in-depth parts of this Getting started.&lt;br /&gt;
&lt;br /&gt;
== Starting your first server ==&lt;br /&gt;
&lt;br /&gt;
To start your first server, type&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
$ icecast -c /path/to/icecast.xml&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
into your console. If you did everything correctly Icecast should start and listen for connections on the default port. You can access it by typing http://127.0.0.1:8000/ into your web browser. If you see a page which says &#039;&#039;&#039;Icecast2 Status&#039;&#039;&#039; on top, you have done everything right and finished the basic part of this Getting started!&lt;br /&gt;
&lt;br /&gt;
== What next? ==&lt;br /&gt;
&lt;br /&gt;
If you if you want in-depth infos, you should look at the following articles.&lt;br /&gt;
&lt;br /&gt;
* If you want to start streaming, have a look at [[IceS/Getting Started]]&lt;br /&gt;
* If you want to go deeper into configuring your server, have a look at [[Icecast/Advanced Configuration]]&lt;/div&gt;</summary>
		<author><name>ToddShepard</name></author>
	</entry>
	<entry>
		<id>https://wiki.xiph.org/index.php?title=Icecast_Server/Getting_Started&amp;diff=15085</id>
		<title>Icecast Server/Getting Started</title>
		<link rel="alternate" type="text/html" href="https://wiki.xiph.org/index.php?title=Icecast_Server/Getting_Started&amp;diff=15085"/>
		<updated>2014-11-26T21:21:46Z</updated>

		<summary type="html">&lt;p&gt;ToddShepard: Still work in progress, started working on How it works&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Draft}}&lt;br /&gt;
&lt;br /&gt;
This article describes how to get an [[Icecast]] server up and running. On this resulting server you can connect with a Source Client, like [[IceS]], and stream music or video to listener clients. To get started with using Icecast you should first understand how everything works together.&lt;br /&gt;
&lt;br /&gt;
== How it works ==&lt;br /&gt;
&lt;br /&gt;
[[File:Flowchart icecast.png|300px|thumb|left|Flow from source client to listener]]&lt;br /&gt;
The graphic on the left shows how Icecast basically works. A source client, for example IceS, connects to the server on a specified mountpoint. A mountpoint could be described as a file on a normal local file system, the listener accesses the mountpoint – the &amp;quot;file&amp;quot; – and can listen to the content – the stream. The server now offers the stream it gets form the source client on that specified mountpoint. Now listeners can connect to this mountpoint like they would to a normal file on a remote server. Icecast sends the data it receives from the source client to the listeners, to everyone the same bitstream in realtime. It is not possible to use Icecast without an source client but static files like .ogg files somewhere on the server where Icecast is installed, Icecast always needs an source client which sends the bitstream.&lt;/div&gt;</summary>
		<author><name>ToddShepard</name></author>
	</entry>
	<entry>
		<id>https://wiki.xiph.org/index.php?title=File:Flowchart_icecast.png&amp;diff=15084</id>
		<title>File:Flowchart icecast.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.xiph.org/index.php?title=File:Flowchart_icecast.png&amp;diff=15084"/>
		<updated>2014-11-26T20:53:48Z</updated>

		<summary type="html">&lt;p&gt;ToddShepard: This graphic shows how the audio/video stream passes from the source client over the Icecast server to the listeners.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This graphic shows how the audio/video stream passes from the source client over the [[Icecast]] server to the listeners.&lt;/div&gt;</summary>
		<author><name>ToddShepard</name></author>
	</entry>
	<entry>
		<id>https://wiki.xiph.org/index.php?title=Icecast_Server&amp;diff=15075</id>
		<title>Icecast Server</title>
		<link rel="alternate" type="text/html" href="https://wiki.xiph.org/index.php?title=Icecast_Server&amp;diff=15075"/>
		<updated>2014-11-24T21:05:05Z</updated>

		<summary type="html">&lt;p&gt;ToddShepard: Hide table of contents&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Icecast&#039;&#039;&#039; is an open source multi-platform streaming server. It supports [[Ogg]] [[Vorbis]], Ogg [[Theora]], [[Opus]], WebM and MP3.&lt;br /&gt;
&lt;br /&gt;
== External links ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.icecast.org/ Icecast homepage]&lt;br /&gt;
* [http://dir.xiph.org/index.php Stream directory]&lt;br /&gt;
* [http://www.nabble.com/Icecast-f2880.html Icecast archive] - an Icecast mailing list archive that combines both user and dev lists. It is hosted by [http://www.nabble.com/ Nabble]. You can search or browse Icecast discussions here.&lt;br /&gt;
&lt;br /&gt;
== Development ==&lt;br /&gt;
&lt;br /&gt;
*trunk http://svn.xiph.org/icecast/trunk/icecast&lt;br /&gt;
*kh-branch https://github.com/karlheyes/icecast-kh&lt;br /&gt;
&lt;br /&gt;
== Wish List ==&lt;br /&gt;
&lt;br /&gt;
As good ideas are never a waste, and for tracking purposes, please list all the features you&#039;re missing in icecast trunk as separate tickets on https://trac.xiph.org/newticket&lt;br /&gt;
&lt;br /&gt;
Note: please check that the feature you request is not already in trunk before posting !&lt;br /&gt;
&lt;br /&gt;
== Icecast articles ==&lt;br /&gt;
&lt;br /&gt;
{{Special:PrefixIndex/Icecast/}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Xiph-related Software]]&lt;br /&gt;
__NOTOC__&lt;/div&gt;</summary>
		<author><name>ToddShepard</name></author>
	</entry>
	<entry>
		<id>https://wiki.xiph.org/index.php?title=Icecast_Server&amp;diff=15074</id>
		<title>Icecast Server</title>
		<link rel="alternate" type="text/html" href="https://wiki.xiph.org/index.php?title=Icecast_Server&amp;diff=15074"/>
		<updated>2014-11-24T20:51:10Z</updated>

		<summary type="html">&lt;p&gt;ToddShepard: Added list of Icecast articles to this main article&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Icecast&#039;&#039;&#039; is an open source multi-platform streaming server. It supports [[Ogg]] [[Vorbis]], Ogg [[Theora]], [[Opus]], WebM and MP3.&lt;br /&gt;
&lt;br /&gt;
== External links ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.icecast.org/ Icecast homepage]&lt;br /&gt;
* [http://dir.xiph.org/index.php Stream directory]&lt;br /&gt;
* [http://www.nabble.com/Icecast-f2880.html Icecast archive] - an Icecast mailing list archive that combines both user and dev lists. It is hosted by [http://www.nabble.com/ Nabble]. You can search or browse Icecast discussions here.&lt;br /&gt;
&lt;br /&gt;
== Development ==&lt;br /&gt;
&lt;br /&gt;
*trunk http://svn.xiph.org/icecast/trunk/icecast&lt;br /&gt;
*kh-branch https://github.com/karlheyes/icecast-kh&lt;br /&gt;
&lt;br /&gt;
== Wish List ==&lt;br /&gt;
&lt;br /&gt;
As good ideas are never a waste, and for tracking purposes, please list all the features you&#039;re missing in icecast trunk as separate tickets on https://trac.xiph.org/newticket&lt;br /&gt;
&lt;br /&gt;
Note: please check that the feature you request is not already in trunk before posting !&lt;br /&gt;
&lt;br /&gt;
== Icecast articles ==&lt;br /&gt;
&lt;br /&gt;
{{Special:PrefixIndex/Icecast/}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Xiph-related Software]]&lt;/div&gt;</summary>
		<author><name>ToddShepard</name></author>
	</entry>
	<entry>
		<id>https://wiki.xiph.org/index.php?title=Icecast:ReleaseCheckList&amp;diff=15073</id>
		<title>Icecast:ReleaseCheckList</title>
		<link rel="alternate" type="text/html" href="https://wiki.xiph.org/index.php?title=Icecast:ReleaseCheckList&amp;diff=15073"/>
		<updated>2014-11-24T20:41:58Z</updated>

		<summary type="html">&lt;p&gt;ToddShepard: moved Icecast:ReleaseCheckList to Icecast/ReleaseCheckList: Fixing namespace&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#REDIRECT [[Icecast/ReleaseCheckList]]&lt;/div&gt;</summary>
		<author><name>ToddShepard</name></author>
	</entry>
	<entry>
		<id>https://wiki.xiph.org/index.php?title=Icecast_Server/Release_Checklist&amp;diff=15072</id>
		<title>Icecast Server/Release Checklist</title>
		<link rel="alternate" type="text/html" href="https://wiki.xiph.org/index.php?title=Icecast_Server/Release_Checklist&amp;diff=15072"/>
		<updated>2014-11-24T20:41:58Z</updated>

		<summary type="html">&lt;p&gt;ToddShepard: moved Icecast:ReleaseCheckList to Icecast/ReleaseCheckList: Fixing namespace&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;*    Update documentation&lt;br /&gt;
*    Check version in configure.in&lt;br /&gt;
*    Ensure everything is committed&lt;br /&gt;
*    Test on all Release critical systems&lt;br /&gt;
*    Test on all other systems you have access to&lt;br /&gt;
*    Update README, NEWS, HACKING and TODO&lt;br /&gt;
*    Update and set release date in ChangeLog&lt;br /&gt;
*    Ensure everything is committed including last changes to ChangeLog.&lt;br /&gt;
*    Tag the release in VCS&lt;br /&gt;
*    make distcheck&lt;br /&gt;
*    commit resulting tarball to releases directory for replication&lt;br /&gt;
*    update download page&lt;br /&gt;
*    update news page&lt;br /&gt;
*    add &amp;quot;Version&amp;quot; and close &amp;quot;Milestone&amp;quot; in trac&lt;br /&gt;
*    post on IRC (+topic)&lt;br /&gt;
*    post on icecast and icecast-dev&lt;br /&gt;
*    create downstream bugs to facilitate adoption&lt;br /&gt;
&lt;br /&gt;
== packaging specific ==&lt;br /&gt;
*    update debian packaging&lt;br /&gt;
**   copy and rename release tar-ball&lt;br /&gt;
**   unpack debian.tar&lt;br /&gt;
**   add release to &#039;changelog&#039;&lt;br /&gt;
**   tar up with right name&lt;br /&gt;
**   verify version and checksums are correct in .dsc&lt;br /&gt;
*    update RPM packaging&lt;br /&gt;
**   change version in .spec&lt;br /&gt;
**   change tarball name in .spec&lt;br /&gt;
**   change debian tarball name in .spec&lt;br /&gt;
**   update icecast-fix-no-add-needed.patch to apply cleanly&lt;br /&gt;
*    windows&lt;br /&gt;
**   TBD&lt;br /&gt;
*    OBS&lt;br /&gt;
**   osc delete all old files (tarballs)&lt;br /&gt;
**   osc add new files (tarballs)&lt;br /&gt;
**   (build locally -- feeling lucky, punk?)&lt;br /&gt;
**   osc commit&lt;br /&gt;
**   verify builds on dashboard and in repos&lt;/div&gt;</summary>
		<author><name>ToddShepard</name></author>
	</entry>
</feed>