htmlloopsvideoautoplay

HTML Videos Loop & Autoplay


I’ve tried setting them to be true and changing the order in some hope it will help. So far it’s not working I’m sure the videos silent but I muted it anyway. I want it to autoplay and loop. It does neither.

<video loop autoplay muted class="VideoMain">
  <source src="A.mp4" type="video/mp4">
</video>```

Solution

  • I don't have A.mp4, but after trying your code with another MP4 video, it seems to work fine.

        <video loop autoplay muted class="VideoMain">
            <source src="https://www.sample-videos.com/video123/mp4/720/big_buck_bunny_720p_1mb.mp4" type="video/mp4">
        </video>
    

    Since your code is fine, the problem must be with the video file.

    Also check that you have saved and are accessing your site through the development version. All are common mistakes we make in the heat of development.