Remote Secure Token

Remote Secure Token Wowza Token We already compiled FlowPlayer & JWPlayer for remote secure token in flex / flash files 😉 https://www.svnlabs.com/blogs/compile-or-build-flowplayer-or-jwplayer-to-create-secure-token-for-wowza-server/ https://www.svnlabs.com/blogs/wowza-mediasecurity-addon-package/ https://www.svnlabs.com/blogs/how-to-prevent-downloading-and-leeching-media-files/ (hotlink protection) Local Media Files We already protected local files using .htaccess file media hiding logic 😉 https://www.svnlabs.com/blogs/secure-token-plugin-with-php/ https://www.svnlabs.com/blogs/how-to-prevent-downloading-and-leeching-media-files/ (hotlink protection) External Media Files File can be protected both on server … Read more

SoundCloud Application

Connect the World of Sound * Share : http://developers.soundcloud.com/blog/sharing-sounds * Stream : http://developers.soundcloud.com/blog/stream-and-download * Customize : http://developers.soundcloud.com/blog/custom-players SoundCloud Widgets http://soundcloud.com/pages/widgets http://soundcloud.com/svnlabs API | Javascript SDK | Widget | Custom Player | oEmbed API Wrapper for SoundCloud written in PHP with support for authentication using OAuth 2.0 <?php try {     $response = json_decode($soundcloud->get(‘me’), true); } catch … Read more

jQuery Notification with Sound Alert

Today, I was searching for jQuery Notification Plugin with Sound Alert 🙂 But, could not find any good plugin as per my requirements 🙁 So, I just merged 2 javascript codes to make a custom notification plugin. <object classid=”clsid:d27cdb6e-ae6d-11cf-96b8-444553540000″ width=”1″height=”1″id=”audio1″align=”middle”> <embed src=”wavplayer.swf?gui=none&h=1&w=1&sound=success.wav&” bgcolor=”#ffffff” width=”1″ height=”1″ allowScriptAccess=”always” type=”application/x-shockwave-flash” pluginspage=”http://www.macromedia.com/go/getflashplayer”/> </object> You can customize this javascript plugin … Read more

Fallback for all Browsers & iOS

The JW Embedder currently offers 3 modes:

Flash mode – The original JW Player mode. Uses the Flash Platform to playback streaming and progressive video, images, and sound.
HTML5 mode – HTML5 offers support on the most up-to-date browsers and devices such as the iPhone, iPad, and Android.
Download mode – Download offers the widest range of compatibility, allowing users with almost any video capable device to view the content.

JavaScript Encryption Library

jscrypto library is an object oriented cryptography library that implements algorithms including AES, SHA-1, HMAC, BASE64, RSA, ECC and IBE for JavaScript. It works in ActionScript as well. Features * Performance heavily enhanced. * Object oriented architecture. * Support Init, Upate, Final pattern for bulk data processing for most algorithms. * Parllellized computing, even long … Read more

Stock Indicator using CSS Sprite

An image/css sprite is a collection of images put into a single image. A web page with many images can take a long time to load and generates multiple server requests. So, using image sprites we can reduce the number of server requests and save bandwidth. CSS Sprites can be generated using online Tools or … Read more