Currently working on a website for a school project and I am trying to incorporate a carousel of videos. After finding a bootstrap carousel template that played videos linked to a server, I attempted to switch it out with local video files without success. Can anyone provide guidance on how to play local videos within a bootstrap carousel? Size constraints are not an issue.
<div class="bigsize">
<div id="myCarousel" class="carousel slide" data-ride="carousel">
<!--Slides-->
<div class="carousel-inner" role="listbox">
<div class="carousel-item active">
<video autoplay loop muted>
<source src="https://mdbootstrap.com/img/video/Tropical.mp4" type="video/mp4" />
</video>
</div>
</div>
</div>
</div>