<html>
<body>
<video controls oncanplaythrough="myFunction()">
<source src="/i/photo/shanghai.mp4" type="video/mp4">
Your browser does not support HTML5 video.
</video>
<script>
function myFunction() {
alert("Can play through video without stopping");
}
</script>
</body>
</html>