MediaElement Player
Making HTML5 Video and Audio Work
MediaElement is one of the better polyfills for HMTL5 video and audio and it is continously being improved.
To implement:
- Make sure your server is serving MIME-types correctly.
- Add jQuery and the mediaelement library (typically done before the ending </body> tag).
- Add the CSS to the <head> section.
- Make sure the graphic elements are visible to your CSS file.
- Create a standard HMTL5 Audio or Video tag in your page.
- Convert the tag you just added to a Mediaelement by calling:
$('video,audio').mediaelementplayer();
For detailed instructions, check out the Mediaelement home page.