This repository has been archived by the owner on May 8, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfull.html
58 lines (54 loc) · 1.7 KB
/
full.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
<html>
<head>
<script language="javascript" src="flashphoner_api/flashphoner.js"></script>
<script language="javascript" src="full.js"></script>
<style>
.friend_video {
width: 320px;
height: 240px;
border: 1px solid;
display: none;
}
</style>
</head>
<body onLoad="init()">
<h1>The streamer</h1>
<div id="localVideo" style="width:320px;height:240px;border: 1px solid"></div>
<input id="streamer_id" type="text" value="stream1"/>
<input type="button" value="start" onClick="start_stream()"/>
<p id="status_stream"></p>
<h1>The player</h1>
<input type="button" value="start" onClick="update_friends()"/>
<div id="remoteVideo1" class="friend_video"></div>
<p id="status1" style="display: none"></p>
<br>
<div id="remoteVideo2" class="friend_video"></div>
<p id="status2" style="display: none"></p>
<br>
<div id="remoteVideo3" class="friend_video"></div>
<p id="status3" style="display: none"></p>
<br>
<div id="remoteVideo4" class="friend_video"></div>
<p id="status4" style="display: none"></p>
<br>
<div id="remoteVideo5" class="friend_video"></div>
<p id="status5" style="display: none"></p>
<br>
<div id="remoteVideo6" class="friend_video"></div>
<p id="status6" style="display: none"></p>
<br>
<div id="remoteVideo7" class="friend_video"></div>
<p id="status7" style="display: none"></p>
<br>
<div id="remoteVideo8" class="friend_video"></div>
<p id="status8" style="display: none"></p>
<br>
<div id="remoteVideo9" class="friend_video"></div>
<p id="status9" style="display: none"></p>
<br>
<div id="remoteVideo10" class="friend_video"></div>
<p id="status10" style="display: none"></p>
<br>
<div id="fakeVideo" style="display: none"></div>
</body>
</html>