HTML5 Video autoplay on iPhone HTML5 Video autoplay on iPhone ios ios

HTML5 Video autoplay on iPhone


Does playsinline attribute help?

Here's what I have:

<video autoplay loop muted playsinline class="video-background ">  <source src="videos/intro-video3.mp4" type="video/mp4"></video>

See the comment on playsinline here: https://webkit.org/blog/6784/new-video-policies-for-ios/


iOs 10+ allow video autoplay inline. but you have to turn off "Low power mode" on your iPhone.


Here is the little hack to overcome all the struggles you have for video autoplay in a website:

  1. Check video is playing or not.
  2. Trigger video play on event like body click or touch.

Note: Some browsers don't let videos to autoplay unless the user interacts with the device.

So scripts to check whether video is playing is:

Object.defineProperty(HTMLMediaElement.prototype, 'playing', {get: function () {    return !!(this.currentTime > 0 && !this.paused && !this.ended && this.readyState > 2);}});

And then you can simply autoplay the video by attaching event listeners to the body:

$('body').on('click touchstart', function () {        const videoElement = document.getElementById('home_video');        if (videoElement.playing) {            // video is already playing so do nothing        }        else {            // video is not playing            // so play video now            videoElement.play();        }});

Note: autoplay attribute is very basic which needs to be added to the video tag already other than these scripts.

You can see the working example with code here at this link:

How to autoplay video when the device is in low power mode / data saving mode / safari browser issue