I am using html5 video tag in angular 4 app to autoplay video in background. I am unable to auto mute the video and because of that video is not autoplaying on mobile devices. Code I am using is:
<video playsinline autoplay loop controls = "controls" muted = "muted">
<source src="banner-video.mp4" type="video/mp4" />
<source src="banner-video.webm" type="video/webm" />
</video>
PS: Video is autoplaying on laptop but is not getting auto muted.