audiojs icon indicating copy to clipboard operation
audiojs copied to clipboard

A cross-browser javascript wrapper for the html5 audio tag

Results 102 audiojs issues
Sort by recently updated
recently updated
newest added

The player can not fire when we use the jQuery insertAfter function when there are 2 players on the page. Maybe need re-trigger function use with the .insertAfter() Thanks.

Hi. I tried this library on IE9 (emulated) on a page which uses bootstrap and this happened: https://s26.postimg.org/755e6beax/Audiojs_Margin_With_Bootstrap.png The right margin does change as well, but is of course less...

Can't skip audio when you load it for the first time? Here is problem in Firefox: loadTimer = setInterval(function() { audio.loadProgress.apply(audio); if (audio.loadedPercent >= 1) clearInterval(loadTimer); }); Fires only once...

There is a problem in skipping audio in Firefox (I use latest version). Audio plays normally, but I can't skip it for example to the middle or at the end,...

This pull request follows up on #137, to allow events to be listened to, rather than just overwriting default behaviours through setting of callback functions within audiojs. Also fixes some...

enhancement

Hello, I would like to attach some event handlers to "play", "pause" and "stop" events. Is it possible?

Added support for onAfterPlay event. Demo (test7.html) demonstrates how to use this to show info (trackinfo or lyrics) for each track. Fixed issue: 'not found [email protected] #212' by just making...

The server that's serving my MP3 files definitely supports byte-range requests, and returns an "Accept-Ranges: bytes" header for every request. If I just hit the URL for one of the...

I'm using audio.js in an Angular 2 web application. I included the dependencies in my index.html file like this : `` and using it in my code (TypeScript) like this...

First, audiojs is a great plugin, but there are still places to be improved. e.g: While I use AudioJS.createAll({ createPlayer: { loadingClass: 'audioloading' } }); The whole players createPlayer is...