Welcome to Blog

How To Steal RTMP videos from youtube, vimeo, jwplayer with Google Chrome only

Hi All, I this video we will be explaining how easy it is to steal RTMP content from a website using Google Chrome only and its inspect element tools. When setting up to use secure online media streaming we always suggest using services like S3Bubble Secure media streaming that provide secure adaptive bitrate streaming setup […]

Installing Git on a AMI EC2 Instance

Jul 11, 2016 by admin Category: Blog, Development, Web Services 0 comments

Hi All, First of this tutorial is for reference for our devs. If you are presented with this error. Permission denied (publickey). fatal: Could not read from remote repository. Please make sure you have the correct access rights and the repository exists. Now this is a import part to getting this up and running, first […]

Installing Google Mod Speed On EC2

May 26, 2016 by admin Category: Blog, Development 0 comments

sudo yum install at sudo yum install mod-pagespeed cd /etc/httpd/conf.d/ sudo vim pagespeed.conf Edit the ssl section if you have it installed. sudo service httpd restart curl -I https://example.com

Installing SSL on a Amazon EC2 box

May 24, 2016 by admin Category: Blog, Development 0 comments

Installing SSL cd /etc/ssl openssl req -nodes -newkey rsa:2048 -keyout your_domain_name.com.key -out your_domain_name.com.csr Country Name (2 letter code) [XX]:GB State or Province Name (full name) []:Cardiff Locality Name (eg, city) [Default City]:Cardiff Organization Name (eg, company) [Default Company Ltd]:Your Domain Ltd Organizational Unit Name (eg, section) []: Common Name (eg, your name or your server's […]

Installing Wav2Json & Sox on EC2 Centos

May 09, 2016 by admin Category: Blog, Development 0 comments

To install wav2json run the code below # install dependencies sudo yum install boost-devel wget http://www.mega-nerd.com/libsndfile/files/libsndfile-1.0.26.tar.gz tar -zxvf libsndfile-1.0.26.tar.gz ./configure --prefix=/usr \ --disable-static \ --docdir=/usr/share/doc/libsndfile-1.0.26 && make make install # clone repository cd ~/ mkdir wave2json && cd wave2json/ git clone https://github.com/beschulz/wav2json.git # build cd wav2json/build/ make all # install mv ../bin/Linux/wav2json /usr/bin/ Now lets […]

Full Setup of WordPress On Amazon EC2 Amazon Linux AMI

May 06, 2016 by admin Category: Blog, Development, Web Services 0 comments

In this tutorial we will be taking you through the full setup of installing a WordPress install on a Amazon Web Services EC2 AMI using a FREE t2.micro. Please leave any comments below. Log into AWS account and go to EC2 dashboard. https://eu-west-1.console.aws.amazon.com/ec2/v2/home?region=eu-west-1# Click launch instance Select Amazon Linux AMI 2016.03.0 (HVM), SSD Volume Type […]