Web (to change)
Video streaming
<html>
<head>
<meta charset="UTF-8">
<title>My Video</title>
</head>
<body>
<video src="some_video.mp4" width="1280px" height="720px" />
</body>
</html>//pause the video
myVideo.pause()
// seek to 10 seconds
myVideo.currentTime = 10;The Media Source Extensions
Last updated