Magento – adding a video to home page banner

blockshome-pagemagento2.2video

I am trying to add a video on banner of my home page but the video doesn't appear, it shows a message no video with supported format. I uploaded a mp4 format and mov format but it shows the same message .. I added the video with a block on home page. what should I do to get it to work properly

Best Answer

create a block in magento admin use below code.

<video id="myVideo" width="100%" height="300px" autoplay="autoplay" muted="" loop="loop">
<source src="{{view url="images/banner.mp4"}}" type="video/mp4" />
  </video>
Related Topic