forked from cloudeolive/cloudeo_sample_app
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
70 lines (63 loc) · 2.06 KB
/
index.html
File metadata and controls
70 lines (63 loc) · 2.06 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
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
69
70
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title></title>
<link media="all" rel="stylesheet" type="text/css" href="css/all.css"/>
<link media="all" rel="stylesheet" type="text/css"
href="css/bootstrap.min.css"/>
<script type="text/javascript" src="js/jquery-1.7.1.min.js"></script>
<script type="text/javascript" src="js/scripts.js"></script>
<script type="text/javascript" src="js/sha256.js"></script>
<!--
The Cloudeo SDK
-->
<script type="text/javascript"
src="http://api.addlive.com/beta/addlive-sdk.js">
</script>
<!--Minified version of the SDK: -->
<!--<script type="text/javascript"-->
<!--src="https://s3.amazonaws.com/api.cloudeo/beta/cloudeo-sdk.min.js">-->
<!--</script>-->
</head>
<body>
<a href="https://github.com/cloudeolive/cloudeo_sample_app">
<img
style="position: absolute; top: 0; right: 0; border: 0;"
src="https://a248.e.akamai.net/camo.github.com/abad93f42020b733148435e2cd92ce15c542d320/687474703a2f2f73332e616d617a6f6e6177732e636f6d2f6769746875622f726962626f6e732f666f726b6d655f72696768745f677265656e5f3030373230302e706e67"
alt="Fork me on GitHub"/>
</a>
<div id="pluginContainer"></div>
<div class="content-wrapper">
<h1>Cloudeo Plug-In Demo application</h1>
<ul class="feeds-wrapper">
</ul>
<div class="clearer"></div>
<div>
Room id: <input id="roomId" type="text"/>
<a id="connectBtn" class="btn btn-primary">Connect</a>
<a id="disconnectBtn" class="btn">Disconnect</a>
<a id="installBtn" class="btn btn-primary" href="#">Install plug-in</a>
</div>
<div>
Webcam: <select id="camSelect"></select>
</div>
<div>
Microphone: <select id="micSelect"></select>
</div>
<div>
Speakers: <select id="spkSelect"></select>
</div>
<div>
<input id="publishVideoChckbx" type="checkbox"/> Publish video stream
</div>
<div>
<input id="publishAudioChckbx" type="checkbox"/> Publish audio stream
</div>
<h2>
Logs:
</h2>
<ul id="logContainer"></ul>
</div>
</body>
</html>