Firefox HTML5 video playback inconsistancy

Posted by Daniel Redwood on Stack Overflow See other posts from Stack Overflow or by Daniel Redwood
Published on 2011-01-15T03:49:12Z Indexed on 2011/01/15 3:53 UTC
Read the original article Hit count: 222

Filed under:
|
|
|

Hey all, I've got an HTML5 video on a page. When tested locally, Chrome, Safari, and Opera work beautifully. Firefox plays it, but doesn't loop as efficiently as the others. The real problem is when it's tested off a server. Firefox doesn't play the video, but recognizes there is one there. I was wondering if all that open ended three-different-ways syntax can be swung in Firefox's favor.

Thanks!

HTML:

    <video id="vid_home" width="780" height="520" autoplay="autoplay" loop="loop">
      <source src="Video/fernando.ogv" type="video/ogg" />
        <source src="Video/fernando.m4v" type="video/mp4" />
        Your browser does not support this videos playback.
    </video>

© Stack Overflow or respective owner

Related posts about firefox

Related posts about loops