-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathroom.html
More file actions
33 lines (33 loc) · 1.62 KB
/
room.html
File metadata and controls
33 lines (33 loc) · 1.62 KB
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
28
29
30
31
32
33
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sharing Movie On Room</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script src="https://webrtc.github.io/adapter/adapter-latest.js"></script>
<script defer src="https://unpkg.com/peerjs@1.3.1/dist/peerjs.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/simple-peer/9.9.3/simplepeer.min.js"></script>
<script src="/socket.io.min.js" defer></script>
<script src="https://cdn.jsdelivr.net/npm/vue@2"></script>
<link rel="stylesheet" href="/player.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/css/bootstrap.min.css"
integrity="sha384-TX8t27EcRE3e/ihU7zmQxVncDAy5uIKz4rEkgIXeMed4M0jlfIDPvg6uqKI2xXr2" crossorigin="anonymous">
<script data-ad-client="ca-pub-1153182477226715" async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
</head>
<body>
<button class="btn btn-success" id="play">Play</button>
<div class="mainScreen">
<video width="100%" id="VPlayer"></video>
<div id="videoCall"></div>
<div class="controls" id="controls">
<button class="btn btn-secondary" id="mute">{{mute}}</button>
<button class="btn btn-secondary" id="turnV">{{video}}</button>
</div>
</div>
<div class="container text-center">
<button class="btn btn-success" id="fullScreen">Full Screen</button>
</div>
<script src="/room.js" defer></script>
</body>
</html>