Client prototype, signaling server & PWA client

This commit is contained in:
gltron
2020-03-26 00:46:45 +01:00
commit ea013cd6fd
52 changed files with 16140 additions and 0 deletions

34
clientV/index.html Normal file
View File

@@ -0,0 +1,34 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<link rel="stylesheet" href="style.css" />
<link rel="stylesheet" href="bulma.min.css" />
<title>Lil'Streamy</title>
</head>
<body>
<button id="loginBt" >Login</button>
<input id="loginInput" placeholder="..." type="text"/>
<hr>
<video autoplay controls id="video"></video>
<hr>
<button id="callBt" >Call</button>
<input id="callInput" placeholder="..." type="text"/>
<button id="disconnectBt" >Disconnect</button>
<hr>
<input id="videoInput" type="file" accept="video/*"/>
<script src="https://webrtc.github.io/adapter/adapter-latest.js"></script>
<script src = "scripts/script.js"></script>
<script src = "scripts/rtc3.js"></script>
<script src = "scripts/signal.js"></script>
</body>
</html>