Moved the script for index.html (the home page) to client.js Created a new directory for videos: /videos Added a new video: /videos/Shreksophone_Original.mp4 Moved bigbuck.mp4 to /videos Added the video-sync clinet code to client.js Added the video-sync client code to index.js Updated index.html inner html to work with the vidoe-sync
17 lines
480 B
HTML
17 lines
480 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<script defer type="text/javascript" src="client.js"></script>
|
|
<title>Client</title>
|
|
</head>
|
|
<body>
|
|
Client page!
|
|
<br/>
|
|
<video id="videoPlayer" width="650" controls disablePictureInPicture controlsList="nodownload noplaybackrate" muted>
|
|
<source src="/video" type="video/mp4" />
|
|
</video>
|
|
</body>
|
|
|
|
</html> |