A complete AI instantly generated video playlist 4 your website, its simple & works well.
*****************
Code *****************
<video id="my-vids" style="border-radius:5%;" width="560" height="315" controls autoplay>
<source src="/videos/test0.mp4" type="video/mp4">
<source src="/videos/test1.mp4" type="video/mp4">
<source src="/videos/test2.mp4" type="video/mp4">
<source src="/videos/test3.mp4" type="video/mp4">
<source src="/videos/test4.mp4" type="video/mp4">
</video>
<?php $videoSources = array("/videos/test0.mp4",
"/videos/test1.mp4",
"/videos/test2.mp4",
"/videos/test3.mp4",
"/videos/test4.mp4"); ?>
<script>
var video = document.getElementById("my-vids");
var playlist = <?php echo json_encode($videoSources); ?>;
var currentVideoIndex = 0;
video.onended = function() {
currentVideoIndex = (currentVideoIndex + 1) % playlist.length;
video.src = playlist[currentVideoIndex];
video.play();
};
</script>
*****************
End Code *****************