blob: fd8676878d9bd64861b3ff183a44dc132c3d6abb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>room | mediasync</title>
<link rel="stylesheet" href="/static/main.css">
<link rel="stylesheet" href="/static/video.js/video-js.min.css">
<style>
body {
margin: 0;
}
</style>
</head>
<body>
<div id="playerContainer">
<video-js id="player">
<source src="<%= Plug.HTML.html_escape(video_url) %>">
</video-js>
</div>
<script src="/static/video.js/video.min.js"></script>
<script src="/static/room.js"></script>
</body>
</html>
|