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

Compare Flash Media Server, Wowza and Red5

Feature Flash Media Server Wowza Media Server Red5 Protocols RTMP RTMPT RTMPS RTMPE RTMPTE RTMFP RTMP RTMPT RTMPS RTMPE RTMPTE RTMP RTMPT RTMPS RTMPE RTMPTE Pricing Find here Find here Free (Open Source) Platforms Microsoft® Windows Server® 2003 with Service Pack 2 or Windows Server 2008 Linux® Red Hat® 4 or 5.2 Runs as a … Read more

Install ionCube Loader

1. Download ionCube loaders # wget http://downloads.ioncube.com/loader_downloads/ioncube_loaders_lin_x86.tar.gz 2. Extract # tar zxvf ioncube_loaders_lin_x86.tar.gz 3. Move to /usr/local # mv ioncube /usr/local/ 4. Add reference to php.ini file Depending on PHP version select ioncube_loader_lin_5.x.so and ioncube_loader_lin_5.x_ts.so files # ls /usr/local/ioncube/ ioncube_loader_lin_4.1.so ioncube_loader_lin_4.4.so ioncube_loader_lin_5.1.so ioncube_loader_lin_5.3.so ioncube_loader_lin_4.2.so ioncube_loader_lin_4.4_ts.so ioncube_loader_lin_5.1_ts.so ioncube_loader_lin_5.3_ts.so ioncube_loader_lin_4.3.so ioncube_loader_lin_5.0.so ioncube_loader_lin_5.2.so ioncube_loader_lin_5.4.so ioncube_loader_lin_4.3_ts.so ioncube_loader_lin_5.0_ts.so ioncube_loader_lin_5.2_ts.so ioncube_loader_lin_5.4_ts.so … Read more

Kaltura Video Platform

How to install 2 different Kaltura Video Platform on same server? 1. Community Edition v5.0.0 eagle-10-02 2. Community Edition v4.0.0 Goto kalturaCE_v5.0.0 if kalturaCE_v4.0.0 already installed Rename old databases to prefix _4 like kaltura_4 # php install.php Thank you for installing Kaltura Video Platform – Community Edition A previous installation attempt has been detected, do … Read more

MySQL open files limit

Upgrade Migration – Kaltura CE 4.0 to 5.0 I was migrating Kaltura from CE 4.0 to 5.0 but following MySQL error made me unhappy 🙁 One or more prerequisites required to install Kaltura failed: Please set ‘open_files_limit >= 20000’ in my.cnf and restart MySQL (current value is 1024) # ulimit -a | grep “open files” # … Read more

Install cURL on Ubuntu

Run the following command to enable curl package php5-curl. $ sudo apt-get install php5-curl Reading package lists… Done Building dependency tree Reading state information… Done The following NEW packages will be installed: php5-curl 0 upgraded, 1 newly installed, 0 to remove and 17 not upgraded. Need to get 27.1kB of archives. After this operation, 127kB … Read more

Upgrade PHP & MySQL on Plesk 10

1. Stop Running Apache & MySQL Server # /etc/init.d/mysqld stop # /etc/init.d/httpd stop 2. Set up the atomic channel # wget -q -O – http://www.atomicorp.com/installers/atomic | sh 3. Upgrade to PHP 5.3.x on plesk 10 # yum upgrade Now I can install “uploadprogress” extension easily pecl/uploadprogress requires PHP (version >= 5.2.0), installed version is 5.1.3 … Read more

Get Remote Host Client IP Behind Load Balancers (ELB)

I was working on “Private AWS Cloudfront Distribution” for AWS Elastic Load Balancer (ELB), allowing our application servers private access to our AWS cloudfront. But PHP Server Environment Variable $_SERVER[“REMOTE_ADDR”] is displaying suspicious results, it really tedious to get remote host client IP behind ELB 🙁 Now we have 2 options… 1. mod_rpaf and Amazon … Read more

Data Transfer from Amazon S3 to Web Server

We can transfer / copy Amazon S3 bucket with GB of data to EC2 machine and then transfer the data to the dedicated server. We need Amazon S3 details: Access Key: ? Secret Key: ? We need Web Server details: Host: ? User: ? Password: ? One option would be to run an Amazon EC2 … Read more

Install Wowza Examples

Wowza Media Server 3 have 2 option to install * Developer Edition (up to 10 Connections) license and all free premium AddOns. * Paid Wowza Server Install # yum install sun-java6-jre sun-java6-plugin # wget http://www.wowza.com/downloads/WowzaMediaServer-3-0-4/WowzaMediaServer-3.0.4.rpm.bin # chmod +x WowzaMediaServer-3.0.4.rpm.bin # ./WowzaMediaServer-3.0.4.rpm.bin Wowza Location /usr/local/WowzaMediaServer-3.0.4 Enter License # cd /usr/local/WowzaMediaServer-3.0.4/bin # chmod +x startup.sh # ./startup.sh … Read more