Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm looking for a HTML5 video library that should solve the following requirements:

  1. Compatible with IE7, IE8, Firefox, Safari and iPad
  2. Should be responsive to browser window resizes and iPad portrait/landscape modes
  3. Should be able to track the video start, video progress, completion % and video end events
  4. Should be able to use custom skins for play button, progress bar, background for video player controls etc.

I read about videojs, mediaelementjs libraries but cant decide which one would satisfy all the requirements above. Unfortunately I dont have lot of time on my hands to try every one of them out. Anybody has experience and good recommendations of good HTML5 video libraries?

share|improve this question
HTML5 video does not work in IE7 or IE8. Period. – Tyler Crompton Jun 6 '12 at 20:25
1  
Found that mediaelementjs rocks and meets all the above requirements. hurrah! – web_dev Jun 20 '12 at 0:56

closed as not constructive by squint, Loktar, Andrew Whitaker, Luksprog, Robert Harvey Jun 8 '12 at 6:31

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

1 Answer

Use jPlayer.js

http://jplayer.org/

Video Demo for jPlayer: http://jplayer.org/latest/demo-01-video/

Here's the source for the Video Demo.

$(document).ready(function () {
    $("#jquery_jplayer_1").jPlayer({
        ready : function () {
            $(this).jPlayer("setMedia", {
                m4v : "http://www.jplayer.org/video/m4v/Big_Buck_Bunny_Trailer.m4v",
                ogv : "http://www.jplayer.org/video/ogv/Big_Buck_Bunny_Trailer.ogv",
                webmv : "http://www.jplayer.org/video/webm/Big_Buck_Bunny_Trailer.webm",
                poster : "http://www.jplayer.org/video/poster/Big_Buck_Bunny_Trailer_480x270.png"
            });
        },
        swfPath : "../js",
        supplied : "webmv, ogv, m4v",
        size : {
            width : "640px",
            height : "360px",
            cssClass : "jp-video-360p"
        }
    });
    $("#jplayer_inspector").jPlayerInspector({
        jPlayer : $("#jquery_jplayer_1")
    });
});
share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.