Serverless Radio

Welcome to really new Idea of Radio Streaming where no VPS or SSH required. Yes, it’s Serverless Radio. Serverless Radio Player provides JavaScript Radio Linear Audio (MP3) Stream like AutoDJ for your Internet Radio Listeners anywhere in the world. Serverless Radio don’t need any VPS or Dedicated Server to install & configure Radio Server or … Read more

Install SSL Letsencrypt on Wowza Server HLS Stream

I am running webserver / domain on HTTPS and Wowza Media Streaming Server on HTTP (Non-SSL) so I am getting Error for LIVE / VOD HLS stream Files “Cannot load M3U8: Unable to fetch HTTP resource over HTTPS” #FridayFeeling Install #SSL Letsencrypt on #Wowza Server HLS Stream #Nginx https://t.co/lizrbxtx4M pic.twitter.com/DUJPGkQ1QU — HTML5 Player ♫ ♪ … Read more

PHP in Amazon Lambda

Clone or Download this GitHub Repo https://github.com/svnlabs/aws-lambda-php-template Make new folder lambda in current working directory of EC2 server # mkdir lambda Upload 2 files from zip to Amazon EC2 server Instance in folder lambda lambda – index.js – php (binary) index.js ‘use strict’; exports.handler = function(event, context, callback) { var exec = require(‘child_process’).exec; exec(‘./php -v’, … Read more

Activate Free SSL Certificate for Website – Cloudflare

Google will soon shame all websites that are unencrypted also Google count HTTPS for ranking factor. Cloudflare provide Free SSL Certificate in your website DNS system. You just need to edit your DNS records / Name-servers Cloudflare HTTPS protects website from Security Vulnerabilities and DDoS attacks. Origin Server (Your Domain) ===== HTTP =====> CloudFlare ===== … Read more

Google App Engine – Downloading source code

I am working on my old project on Google App Engine… so I need to download old source code from Google App Engine …. We can download source code for application by appcfg.py with the download_app action in the Python SDK command-line tool: > appcfg.py download_app -A <your_app_id> -V <your_app_version> <output-dir> But it is giving … Read more

Install Wowza Media Server for Google Compute Engine

Hope you really enjoyed our articles about Google Compute Engine.. Install Apache, PHP, MySQL on Google Compute Engine Build your business on Google Cloud Platform Install Red5 on Google Compute Engine First you need to install Google Cloud platform command-line tools https://developers.google.com/compute/docs/gcutil $ wget https://code.google.com/p/google-compute-engine-tools/downloads/detail?name=gcutil-1.9.0.tar.gz $ sudo apt-get install unzip $ export PATH=${PATH}:$HOME/gcutil-1.9.1 $ sudo … Read more

MP3 waveforms with PHP

If you are thinking how soundcloud.com generates the waveform for sound MP3 player? There are some audio processing libraries used to process MP3 files to WAV and then PNG / SVG images.. 1. LAME MP3 encoder/decoder $ lame input.mp3 -f -m m -b 16 –resample 8 resampled.mp3 && lame –decode resampled.mp3 output.wav 2. SOX – … Read more

Liquidsoap GStreamer

Liquidsoap is a programming language to manage audio and video source streams for Icecast Radio server. Liquidsoap is a powerful and flexible language for describing, creating or transforming streams. It offers rich operators and library that you can be used for making Icecast Radio Server. Now Play Your Favorite Radio FM Stream in HTML5 Player….. … Read more

Installing Apache, MySQL, PHP in Gentoo Server

All commands are performed as root to install Apache, MySQL, PHP and phpMyAdmin in Gentoo Linux Server. 1. Update your System # emerge –sync 2. Install Apache Webserver # emerge apache The web server ROOT is in /var/www/localhost/htdocs/ # /etc/init.d/apache2 start Then go to http://server-ip/ Add apache2 to the startup script # rc-update -v add … Read more