Radio Streaming Server in Ubuntu Using IceCast2

来源:互联网 发布:网络维护班组优秀案例 编辑:程序博客网 时间:2024/05/17 03:14

转自:http://www.ivankristianto.com/howto-radio-streaming-server-in-ubuntu-using-icecast2/

I want to share how to make Linux Ubuntu as radio streaming server withIceCast2. And in client you can use Winamp with SHOUTcast plugin to broadcast your song playlist.

So, how we start? I assumed you already know how to use Ubuntu and use Linux Shell. Okay let’s start now:

  1. Open ubuntu shell and type:
    1
    sudoapt-get installicecast2
  2. Afterwards, edit icecast.xml with this command:
    1
    vim /etc/icecast2/icecast.xml
  3. Change the passwords in the…section, The source-password is the password that Ices2 or SHOUTcast will later on use to connect to Icecast2; the admin-password is the password that the admin will use in Icecast2′s web interface.
  4. That’s it already, we can now start the Icecast2 server with this command:
    1
    icecast2 -b
  5. You can now direct your browser to http://192.168.0.100:8000/ (replace192.168.0.100 with your own IP address or FQDN) and browse through the web interface.
  6. Now you have your own radio streaming server. Enjoy :)


0 0