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

Install SSL Letsencrypt on Centova Cast

Thanks for reading my post for “Install Centova Cast” I was working on Radio Streaming Project for Alexa Skills. So I need SSL / HTTPS enabled for Centova Cast http://radio.domain.com:2199/ http://radio.domain.com:2199/ => https://radio.domain.com:2199/ Note: Please replace domain name “radio.domain.com” with your own domain. Here are some helpful links from centova.com website http://www.centova.com/en/faq/cast3/information/lets_encrypt http://www.centova.com/doc/cast/installation_manual/08_Configuring_SSL http://www.centova.com/doc/cast/installation_manual/04_full_installation First … Read more

Radio Icecast / Shoutcast PHP Proxy to Re-stream Radio Stream on HTTPS

SHOUTcast doesn’t support SSL/HTTPs. The shoutcast service on port like 8000 is an unencrypted server for HTTP and ICY. So Shoutcast need proxy / restream HTTP stream to HTTPS. You can use PHP or NodeJS or NGINX to restream Radio Streams. Re-Stream Radio Shoutcast / Icecast using Node JS Radio Icecast / Shoutcast PHP #Proxy … 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

Live video stream event for online Temple or Church

Wowza / Red5 Streaming Live Video with Flash Media Live Encoder Wowza Live Stream Countdown Requirements – A computer running Windows or Apple operating system – Software “Flash Media Live Encoder (Adobe)” – Streaming Server (Wowza/Red5/FMS) – Video input that is recognized by the operating system (i.e. USB camera) – Video player: VLC or Web … Read more

phpMyStream

phpMyStream is media re-stream panel, it use FFmpeg & rtmpdump linux utilities to take source as input then publish to other server like Red5 or Wowza. phpMyStream Server Requirement – Web Server With Apache, PHP, MySQL – RTMPDump – FFmpeg – RTMP Server (Wowza, Red5, Nginx) RTMPDump Help FFmpeg Help Make Server for phpMyStream Install … Read more

Shoutcast V2 aacPlus AAC+ Player

MP3 Radio Streams (Shoutcast/Icecast) are best for Radio Streaming with best bit-rate, but MP3 Streaming need license to broadcast source streams. Radio MP3 music globally play on all devices & platforms. MP3 live radio streaming easily work over HTML5/HTTP. Whereas AAC+ live radio streaming work on over RTMP. It need flash streaming via RTMP. Shoutcast … Read more

Radio Song Album Artwork Cover by YouTube

An album cover is the front / other side of the packaging of a commercially released audio recording product, or album. You can find online APIs or Websites where artwork available – Amazon – LastFM – Soundcloud – Apple iTune – Google Play – Gracenote – Free Music Archive And many more …. But YouTube … 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