-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplayer.html
42 lines (42 loc) · 1.17 KB
/
player.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
<!doctype html>
<html>
<head>
<title>CopyCast</title>
<link rel="stylesheet" href="bootstrap.min.css"/>
<link rel="stylesheet" href="player.css"/>
</head>
<body>
<div class="jumbotron">
<h1>CopyCast</h1>
</div>
<div class="container">
<div class="row">
<div class="col-md-8">
<h2>Preview</h2>
<video id = "vidEl" controls></video>
</div>
<div class="col-md-4">
<h2>Cast</h2>
<p>Click the button below to cast the intercepted media</p>
<button class="btn btn-default" id="play">Cast</button>
</div>
</div>
<div class="row">
<div class="col-md-12">
<h2>Direct URL Input</h2>
<label class="left">
URL File
<input class="form-control" id="urlInputBox" type="text"/>
</label>
<button class="left btn btn-default" id="urlInputBtn">Load Custom Resource</button>
</div>
</div>
</div>
</body>
<script type="text/javascript" src="jquery.min.js"></script>
<script type="text/javascript" src="cast_sender.js"></script>
<script type="text/javascript" src="appid.js"></script>
<script type="text/javascript" src="cast.js"></script>
<script type="text/javascript" src="player.js"></script>
<script type="text/javascript" src="bootstrap.min.js"></script>
</html>