So, i'm creating a website and everything is cool but the videos are really choppy and wont load. I've never had this issue before and I'm not getting any errors in the console.
Problem: Video is choppy and wont load, plays choppy and laggy
Solution I would like: To be pointed in the right direction with how I can fix this so that the video plays normally when a user presses play.
This is my code:
<div class="col-12">
<video width="320" height="240" class="pt-3" controls preload="auto">
<source src="/videos/video1.MP4" type="video/mp4"> Your browser does not support the video tag.
</video>
<video width="320" height="240" controls class="pt-3" preload="auto">
<source src="/videos/video2.MOV" type="video/mp4"> Your browser does not support the video tag.
</video>
<video width="320" height="240" controls class="pt-3" preload="auto">
<source src="/videos/video3.MOV" type="video/mp4"> Your browser does not support the video tag.
</video>
<video width="320" height="240" controls class="pt-3" preload="auto">
<source src="/videos/video4.MP4" type="video/mp4"> Your browser does not support the video tag.
</video>
</div>
</div>
I need this done in like.. an hour so can someone please help me? Thank you.