Shoutcast is a commercial streaming server used by a lot of Internet radio stations.
You can install it on your own Linux server for free.
mkdir /opt/shoutcastcd /opt/shoutcastwget <http://download.nullsoft.com/shoutcast/tools/sc_serv2_linux_x64-latest.tar.gz>tar -xf sc_serv2_linux_x64-latest.tar.gznano sc_serv.confportbase=8000
password=MyPass123
portbase tells the server what port to use (you will use this for connecting to your Shoutcast server)password is used to log into the admin panel (username is always admin) and for broadcasting to your streaming serversc_serv file (our server) has executable permissions: chmod +x sc_serv./sc_serv sc_serv.confYou may have noticed that when we exit the terminal or reboot our machine, the server stops.
sudo nano /etc/systemd/system/shoutcast.serviceubuntu user and group to your own)…