There´s a weird issue where the video doesn´t autoplay for Apple devices and only plays when scrolling and stops after a few frames, where as it works perfectly on Windows and Android devices. All the devices where tested with a Chrome browser.
I´m using this line of code for my video to autoplay on deploy and it works on all devices except Apple devices, even with a Chrome browser.
<video class="logo-video animated fadeInUp" loop autoplay muted oncanplay="this.play()" onloadedmetadata="this.muted = true">
<source src="../../../assets/videos/log.mp4">
</video>
I´ve been searching for other ways for autoplay to work on deploy but this is the only solution I have on Angular. The video has no audio track and is muted anyways, which shouldn´t be the problem.