<!DOCTYPE html>
<html>
<head>
<title>Video Player Test</title>
<meta name=viewport content='width=device-width initial-scale=1.0'>
</head>
<body>
<video controls id=video src=video-6seconds.webm></video>
</body>
<script>
const video = document.getElementById('video');
</script>
</html>