I have a video tag like so:
<video autoplay loop muted playsinline poster="/assets/images/video_poster_2.webp">
<source src="/assets/videos/test-vid.mp4">
<source src="/assets/videos/test-vid.webm">
</video>
The goal if for it to play automatically when the user enters the page. It works everywhere, but it doesn't autoplay on iPhones specifically.
I added the autoplay, muted and playsinline attributes, but still. Am I missing something?
Thanks in advance.