below is html script to play multiple videos at one time
first save videos at website folder "inetpub/Orion/foldername/Videos/xxx.mp4
insert custom html resource in view and copy paste below scipt, but dont forget to change file name and path.
folder should be share folder.
<!DOCTYPE html>
<html>
<body>
<body onload="clear()">
<button onclick="april()" type="button">April 2016</button>
<button onclick="may()" type="button">May 2016</button><br>
<script>
function clear(){
document.getElementById("myVideo1").style.display = "none";
document.getElementById("myVideo").style.display = "none";}
</script>
<video id="myVideo" controls width="1000" height="900" >
="april_src" src="//xxxx.com:8446/Orion/gpp/Videos/test1.mp4" type="video/mp4">;
</video>
<video id="myVideo1" controls width="1000" height="900" >
="may_src" src="//swmon.eclinicalworks.com:8446/Orion/gpp/Videos/test2.mp4" type="video/mp4">;
</video>
<script>
function april() {
document.getElementById("april_src");
document.getElementById("myVideo").load();
document.getElementById("myVideo1").style.display = "none";
document.getElementById("myVideo").style.display = "inline";
}
</script>
<script>
function may() {
document.getElementById("may_src");
document.getElementById("myVideo1").load();
document.getElementById("myVideo").style.display = "none";
document.getElementById("myVideo1").style.display = "inline";
}
</script>
</body>
</html>