I'm trying to make header video in my website with html5 video, and this works very well in all devices except iPhone.
Firstly I have added video link like:
<video class="homepage-video" loop autoplay muted="" src="<?php the_field('video_url'); ?>" poster="<?php the_field('image_head'); ?>" id="homepage-video" type="video/mp4">
</video>
and doesn't worked.
Then I researched for any solution and some developers proposed to write the code like this:
<video class="homepage-video" loop autoplay muted="" poster="<?php the_field('image_head'); ?>" id="homepage-video" type="video/mp4">
<source src="<?php the_field('video_url'); ?>" type="video/mp4" />
</video>
Video is not playing on iphone, the result is just image from poster="image here"