How Webmasters Can Use SMS for Success – Part II

In the previous post, I outlined one way that SMS text messages can help you succeed. Today, I’m going to talk about how you can use SMS for success by integrating SMS functionality for your customers. Amazon Simple Notification Service Command Lines Build your customer database People are very attached to their mobiles. Literally taking … Read more

Batch Downloading in PHP

<?php for($d=1;$d<=100;$d++) { $link=”http://www.domain.com/demos/”.$d.”/source.zip”; if(http_url_exists($link)) {   echo”Processing: “.$link.”<br>”;      exec(“wget -O “.dirname(__FILE__).”/download/source-“.$d.”.zip “.$link.” 2>&1″,$pp);      echoimplode(“”,$pp);echo”<br><br>”; } } //$file_headers = @get_headers($file); //’HTTP/1.1 404 Not Found’   function url_exists($url){     if(!$fp=curl_init($url))returnfalse;     returntrue; } function http_url_exists($url){          $file_headers=@get_headers($url);          if($file_headers[0]==’HTTP/1.1 404 Not Found’)         returnfalse;          returntrue; } ?>

Image Matrix Using ImageMagick

ImageMagick create, edit, compose, or convert bitmap images. It can read and write images in different formats including DPX, EXR, GIF, JPEG, JPEG-2000, PDF, PhotoCD, PNG, Postscript, SVG, and TIFF. Image Operations * Resize * Flip * Mirror * Rotate * Distort * Shear * Transform * Adjust image colors * Special Effects * Draw … Read more

Webisode

The webisode is simply a web episode, this is a new medium called web television that stream live broadcast, dramas, serial storyline, media events online over the Internet The webisode is web episode especially viewed at a Web site for TV show have been telecast. Technologies Used * HTTP * RSS/JSON * RTSP/RTMP * SMIL * … Read more

Install OpenMeetings

OpenMeetings – An Open Source Web Conferencing Solution that share microphone or webcam, share documents on a white board, share your screen or record meetings. Install Development Tools # yum groupinstall “Development Libraries” -y # yum groupinstall “Development Tools” -y IPTables – Make sure the following firewall ports are open 1935 (RTMP), 8088 (RTMP-Over HTTP), … Read more

Live Camera Streaming With Flash Media Encoder & Red5

Download Adobe Flash Media Live Encoder 3.2 for live audio and video capture and encoder streams in real time. Live video stream event for online Temple or Church Install Red5 1.0 RC1 on CentOS Latest We enable customers with advanced capabilities to manage, deliver and monitor audio, video, and multimedia content over the Internet using Red5 Media … Read more

Install Red5 1.0 on CentOS Latest

1. Install Java # yum -y install java-1.6.0-openjdk java-1.6.0-openjdk-devel 2. Install Ant # cd /usr/local/src # wget http://red5.svnlabs.com/apache-ant-1.8.2-bin.tar.gz # tar zxvf apache-ant-1.8.2-bin.tar.gz # mv apache-ant-1.8.2 /usr/local/ant 3. Export path for Ant and Java Make sure you have right paths (java, ant etc.) on your server, I have used 32-bits CentOS server … home path might … Read more

VLC is not supposed to be run as root. Sorry

Today I need to install VLC Media player on CentOS 5.x to capture remote live event from VLC client as HTTP stream. So, I have installed that using # yum install vlc But VLC can not be run as root privileged user 🙁 # vlc VLC is not supposed to be run as root. Sorry. … Read more

Valentine’s Day express love with your website

Express love with your website on Saint Valentine’s Day. Fan Page on Facebook WordPress Plugin Add to Your Fan Page Tab  Work hard, but make time for your love, and family. Nobody remembers PowerPoint presentations on ur dying day…. 🙁

Audio.js with Volume Control

I was working on HTML5 MP3 Player Project using audio.js and I got Audio.js with Volume Control to control the volume for the Flash alternative player? <script> audiojs.events.ready(function() { var as = audiojs.createAll(), audio = as[0], ids = [‘vol-0’, ‘vol-10’, ‘vol-40’, ‘vol-70’, ‘vol-100’]; for (var i = 0, ii = ids.length; i < ii; i++) … Read more