video_src

by iamya

HTML

<!DOCTYPE HTML>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>video_src</title>
<html>
<body>
<button onclick="changeSource()" type="button">Change Video</button>
<br>
<video id="video1" src=http://progressive.totaleclips.com.edgesuite.net/308/e30871_257.mp4 autoplay controls="controls" >
  Your browser does not support HTML5 video.
</video>

<script>
function changeSource()
  { 
  myVid=document.getElementById("video1");
  myVid.src="http://progressive.totaleclips.com.edgesuite.net/103/e103981_257.mp4";
  myVid.load();
  } 
</script>

<p>Video courtesy of <a href="http://mediafront.org/osmplayer/playlist.html" target="_blank">here</a> </p>

</body>
</html>