How do I best detect whether a browser's HTML5 video element supports autoplay?

On current iOS Safari, for example, autoplay is disabled.

Update: I now designed the web page in such a way that it works irrespective of whether autoplay is supported. Now when the page is loaded an initialization video is shown. On an iPad, the user is presented with a big play button. Once playback has been triggered, the video is hidden. Afterwards, playback of the video player can be controlled from JavaScript, which is what I actually need.

link|improve this question

69% accept rate
feedback

1 Answer

up vote 1 down vote accepted

As far as I can tell, neither Modernizr nor Dive into HTML5’s detection guide know how to detect whether autoplayis supported. (Although Modernizr’s “Undetectables” page doesn’t list autoplay either.)

I’ve popped up a test page which alerts the value of the autoplay property on a newly-created <audio> element, and both Safari on iOS 4.3 and Chrome 13 on Mac OS X return false (as opposed to undefined, which is what IE 6 returns).

So, unfortunately, your best bet might be to resort to browser detection, and maintain your own list of which browsers support autoplay.

link|improve this answer
Thanks so far, Paul! I'll wait a bit before marking this answer as accepted. Though unlikely, maybe there is a solution. In the meantime I'm assembling the list... – feklee Aug 20 '11 at 20:10
Just filed Modernizr feature request 353. – feklee Aug 20 '11 at 21:16
@feklee: yeah, I’m hoping someone in Stack Overflow land has encountered and solved this issue. It might be one of those things that you just can’t test via the API though. I’ve popped up a test page that alerts the value of the autoplay property on a newly-created <audio> element, and both iOS Safari and OS X Chrome 13 return false (as opposed to undefined, which is what IE 6 returns). Unless iOS Safari offers some other property that tells you it doesn’t honour the autoplay attribute, I think you’re stuck. – Paul D. Waite Aug 22 '11 at 7:28
feedback

Your Answer

 
or
required, but never shown

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