Media Streaming CMS

WMSPanel is reporting and control cloud panel for Nimble Streamer and Wowza Streaming Engine. It’s also used as a control UI for Live Transcoder for Nimble Streamer Kaltura, the Open Source Community provides tools such as: online video player, open source editor and open source video for websites. EZserver is an Easy-to-Use Video Server to … Read more

PHP Bulk Emailer

If you send email to 5,000 people using standard PHP tools, your ISPs might be blocked in seconds. I think you already read below articles… Amazon Simple Notification Service Command Lines Theory About Bulk Emails Emails are not working on server? Amazon SES – Emails In Cloud Open source – Port25 Linux Mail Servers Email’s … Read more

PHP Cloud

Introduction to the Zend Developer Cloud PHPCloud help to Develop, Deploy and Manage PHP Applications in to Any Cloud (Amazon, Rackspace, RightScale, IBM SmartCloud) using Zend Application Fabric. Demo: http://svnlabs.my.phpcloud.com Contact: https://www.svnlabs.com/blogs/contact/

Red5 figure out audio/video out of sync issue

I had worked Red5 WebCam application that lets users to record video clips from their webcams. The users could talk while they record clips. I was using PHP with Zend Gdata for uploading recorded video clips to YouTube. But I had issue in FLV files generated by Red5 server, the clip’s audio / video content … Read more

Pretty Print JSON

We can use function json_print() to explore JSON data, since JSON has no spacing or indentation. The function json_print() make JSON data to display in the human-readable format. <?php function json_print($json) {     $result = ”;     $pos = 0;     $strLen = strlen($json);     $indentStr = ‘ ‘;     $newLine = “\n”;     $prevChar = ”;     $outOfQuotes = true;     for … Read more