Adobe Flash ExternalInterface issues with Internet Explorer

I was working for HTML5 Audio.js Player… I really like calling ExternalInterface when using SWFObject on Windows XP IE 8. You can’t use an actionscript callback for a certain set of keywords (“play”, “stop”, “tags”, “item”, “length” etc.) will break in IE and cause a javascript error. Object doesn’t support this property or method public … Read more

HTML5 MP3 Lyrics Player

HTML5 Lyrics Karaoke Player Plugin enable wordpress users to sing and play song text lyrics. Free Features Supports MP3 formats Supports Text Song Lyrics Social Links Facebook / Twitter Works in IE, Safari, Firefox, Chrome, Opera Player have shortcode for post/page [html5lyrics id=ID] i.e. [html5lyrics id=1] Paid Features Supports MP3 formats Supports Text Song Lyrics … Read more

Android HTML5 Audio duration and loadProgress in audio.js

audio.js is a drop-in javascript library that allows HTML5’s <audio> tag to be used anywhere. AudioJS uses native <audio> where available and an invisible flash player to emulate <audio> for other browsers. AudioJS provides a consistent html player GUI to all browsers which can be styled used standard CSS. But I faced a issue in … Read more

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