RadioSSL – HTTPS Secure Radio Streams

Are you using HTTP (Non-secure) Radio Stream providers for Icecast / shoutcast? You can check SSL validation using Why No Padlock?, If you already have SSL enabled for your Radio Streaming. Do you need HTTPS (Secure) Radio Stream Link for Icecast and Shoutcast for Non-Secure HTTP Streams? HTTP Radio Streams Shoutcast V1 (http://shoutcast-server:port/) Shoutcast V2 … Read more

Access Skype SQLite Database

I was working for Online Radio Server setup with Icecast and Skype. This Radio Station was using Skype Group Calls with real listeners of station then I have to feed Live Skype Audio to Icecast Radio Server as Input. Radio Setup Tools Online Radio Schedule with Skype & Icecast – SAM Broadcaster – Icecast Server … Read more

Record Live Streaming Radio to MP3

Sometime you want to record Live Radio Stream to MP3 file, you can find many online linux tools for recording radio stream to server and then download to your local computer. You can use Linux “wget” or “curl” CURL # curl -sS -o stream.mp3 –max-time 150 http://Radio-Server:Port/stream Bitrate: 128 kb/s [it will make approx 2MB … Read more

PHP Get Radio Stream Type Version

Live Audio Streaming, Internet Radio Player Shoutcast1 Stream: http://shoutcast-server:port/;audio.mp3 Shoutcast2 Stream: http://shoutcast-server:port/streamname;audio.mp3 Icecast2 Stream: http://icecast-server:port/streamname Shoutcast server stream need “;” OR “;audio.mp3” at end of stream URL, so change accordingly   <?php function radioStreamType($stream) { $pp = parse_url($stream); $type = strstr($pp[‘path’], ‘;audio.mp3’); if($type==’;audio.mp3′) { if($pp[‘path’]==”/;audio.mp3″ || $pp[‘path’]==”;audio.mp3″) return “shoutcast1”; return “shoutcast2”; } else { return … Read more

Re Stream Radio Shoutcast / Icecast using Node JS

Re-stream Radio (Shoutcast/Icecast) Stream using Node.JS and get Metadata current playing song title… Use port forwarding to hide real shoutcast IP …. Avoid PHP script to damage Server with too many calls on radio server Start Restream > node radio.js node.js>node radio.js Server running at http://192.168.1.4:8007 Radio Stream connected! { ‘icy-notice1’: ‘<BR>This stream requires <a … Read more

Install Airtime – open source radio automation software

Airtime is open source radio automation software (GPL v3) for GNU/Linux platforms. It’s recommend installing on Ubuntu Linux 12.04 LTS or Debian Squeeze on a computer with at least a 1 GHz processor and 512 MB of RAM for a Server Edition OS or 1GB of RAM for a Desktop Edition OS. Download airtime-easy-setup $ … Read more

Radio Stream Playlist

  HTML5 MP3 Player with Playlist Windows Playlist: playlist.asx <asx version = “3.0”> <Title>Radio Title</Title> <Author>https://www.svnlabs.com</Author> <Copyright>SVN Labs</Copyright> <PARAM name=”HTMLView” value=”https://www.svnlabs.com” /> <MoreInfo href=”https://www.svnlabs.com” /> <entry> <ref href=”http://stream-ip:port/stream” /> <Title>Radio Title</Title> <Author>https://www.svnlabs.com</Author> </entry> </asx>   Quicktime Playlist: playlist.qtl <?xmlversion=”1.0″?> <?quicktime type=”application/x-quicktime-media-link”?> <embed src=”icy://stream-ip:port/stream” autoplay=”true” />   Winamp Playlist: playlist.pls numberofentries=1 File1=http://stream-ip:port/stream Title1=Radio Title Length1=-1 version=2 … Read more