Ensure src attribute of video is empty. Then add something like this:
<script>
window.onload = function(){
document.getElementById("vidSrc").src = "mysrc.mp4";
document.getElementById("vid").load();
document.getElementById("vid").play();
};
</script>