-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
68 lines (68 loc) · 3.03 KB
/
index.html
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Gabriel Santos | Screen Caster</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
<link rel="stylesheet" href="/dist/css/index.css">
</head>
<body>
<nav>
<button class="menu"><i class="fa fa-bars"></i></button>
<h3> Gabriel Santos</h3>
<ul>
<li><a target="_blank" href="https://twitter.com/lucgbrl">Twitter</a></li>
<li><a target="_blank" href="http://t.me/lucgbrl">Telegram</a></li>
</ul>
</nav>
<article>
<main>
<!-- <header>
<h1>Experiment | Screen Caster </h1>
<p>This is a simple experiment with Screen Capture API</p>
</header> -->
<menu>
<button id="start"> <i class="fa fa-play"></i> Start capture</button>
<button id="stop"> <i class="fa fa-stop"></i> Stop recording</button>
<button id="upload"> <i class="fa fa-user"></i> Upload resource</button>
<a id="download"> <button><i class="fa fa-download"></i> Download recording</button></a>
</menu>
<section>
<!-- <video id="user" autoplay width="320" height="320"></video> -->
<video id="video" autoplay muted width="100%" height="auto"></video>
<video id="play" muted class="hidden" autoplay width="100%" height="auto"></video>
</section>
<footer>
<header>
<div>
<h3>🔥 Experiment | Screen Caster </h3>
<p>This is a simple experiment with Screen Capture API <br>
<small>
This expriment does not collect user data in any kind or nature.
It uses the browser native API in order to record multiple streams
from the user.
</small>
</p>
</div>
</header>
<button> <i class="fa fa-bookmark"></i> Add to collection</button>
<button> <i class="fa fa-share"></i> Share</button>
<h3>Discussion</h3>
<p>Open a discussion related to the video</p>
<form action="">
<i class="fa fa-info-circle"></i>
<input type="text" name="" id="" placeholder="Add a comment">
</form>
</footer>
<div class="status">
<strong>LIVE Status</strong>
<pre id="log"></pre>
<p>This is a subtitle</p>
</div>
</main>
</article>
<script src="/dist/js/index.js"></script>
</body>
</html>