Compile or build flowplayer or jwplayer to create secure token for wowza server

I think you already read our last article for wowza mediasecurity addon package There are 2 methods to put secure token for video players like flowplayer or jwplayer… 1. Token inside javascript code (shared secret) 2. Token inside flowplayer or jwplayer source code (compile the token inside the plugin) The shared secret known by the … Read more

Facebook Application Development with Graph API Cookbook

Facebook Application Development with Graph API Cookbook is written by Shashwat Srivastava, Apeksha Singh for Facebook developers ranging from novice to expert. It uses PHP, HTML and jQuery, the most commonly used platforms, to build applications in Facebook. Learn from this book: Install Facebook PHP SDK and register your Facebook application Obtain access token and … Read more

Wowza MediaSecurity AddOn Package

The MediaSecurity AddOn Package includes options and procedures for securing Wowza Media Server and the media you plan to stream through Wowza Media Server. There are several Wowza Media Server features that are needed to properly secure your content. 1. SecureToken 2. RTMP authentication 3. RTSP authentication 4. StreamNameAlias 5. secure streaming (RTMPE, RTMPTE and … Read more

Fatal error: Allowed memory size of 8388608 bytes exhausted

PHP Fatal error: Allowed memory size of X bytes exhausted (tried to allocate Y) in file.php 1. memory_limit globally from php.ini memory_limit = 64M 2. memory_limit using .htaccess php_value memory_limit 64M 3. memory_limit inside a php script. ini_set(‘memory_limit’, ’64M’); To change the memory limit for one specific script by including a line such as this … Read more