-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
150 lines (138 loc) · 6.18 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="expires" content="0">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="shortcut icon" href="img/kurento.png" type="image/png" />
<link rel="stylesheet" href="bower_components/bootstrap/dist/css/bootstrap.min.css">
<link rel="stylesheet" href="bower_components/demo-console/index.css">
<link rel="stylesheet" href="bower_components/ekko-lightbox/dist/ekko-lightbox.min.css">
<link rel="stylesheet" href="css/kurento.css">
<script src="bower_components/adapter.js/adapter.js"></script>
<script src="bower_components/jquery/dist/jquery.min.js"></script>
<script src="bower_components/bootstrap/dist/js/bootstrap.min.js"></script>
<script src="bower_components/demo-console/index.js"></script>
<script src="bower_components/ekko-lightbox/dist/ekko-lightbox.min.js"></script>
<script src="bower_components/kurento-client/js/kurento-client.js"></script>
<script src="bower_components/kurento-utils/js/kurento-utils.js"></script>
<script src="js/index.js"></script>
<title>Kurento Tutorial: Image Overlay Filter</title>
</head>
<body>
<header>
<div class="navbar navbar-inverse navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse"></button>
<a class="navbar-brand" href=".">Kurento Tutorial</a>
</div>
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav navbar-right">
<li>
<a href="https://github.com/Kurento/kurento-tutorial-js/tree/master/kurento-magic-mirror">
<span class="glyphicon glyphicon-file"></span> Source Code</a>
</li>
</ul>
</div>
</div>
</div>
</header>
<div class="container">
<div class="page-header">
<h1>Tutorial: Image Overlay Filter</h1>
<p>
This application shows a <i>WebRtcEndpoint</i> connected to itself
(loopback) with a <i>ImageOverlayFilter</i> filter in the middle.
To run this demo follow these steps:
</p>
<ol>
<li>Open this page with a browser compliant with WebRTC (Chrome, Firefox).</li>
<li>Click on <i>Start</i> button.</li>
<li>Grant the access to the camera and microphone. After the SDP negotiation the loopback should start.</li>
<li>Use controls below to add or remove images at fixed positions on the viewport.</li>
<li>Click on <i>Stop</i> to finish the communication.</li>
</ol>
</div>
<div class="row">
<div class="col-md-5">
<h3>Local stream</h3>
<video id="videoInput" autoplay width="480px" height="360px" poster="img/webrtc.png"></video>
</div>
<div class="col-md-2">
<a id="start" href="#" class="btn btn-success">
<span class="glyphicon glyphicon-play"></span> Start</a>
<br/>
<br/>
<a id="stop" href="#" class="btn btn-danger">
<span class="glyphicon glyphicon-stop"></span> Stop</a>
</div>
<div class="col-md-5">
<h3>Remote stream</h3>
<video id="videoOutput" autoplay width="480px" height="360px" poster="img/webrtc.png"></video>
</div>
</div>
<br>
<br>
<div>
<h1>Image Overlay Filter controls </h1><br>
<a id="addImage" href="#" class="btn btn-danger">
<span class="glyphicon glyphicon-stop"></span> Add image</a>
<a id="removeImage" href="#" class="btn btn-danger">
<span class="glyphicon glyphicon-stop"></span> Remove image</a>
<br>
<br>
offsetXPercent: <input id="offsetXPercent" type="text">
(fraction between 0.0 and 1.0. Specifies X-axis position of image top-left image corner relative to video size)<br>
offxetYPercent: <input id="offsetYPercent" type="text">
(fraction between 0.0 and 1.0. Specifies Y-axis position of image top-left corner relative to video size)<br>
widthPercent: <input id="widthPercent" type="text">
(fraction between 0.0 and 1.0. Specifies width of image relative to video size)<br>
heigthPercent: <input id="heightPercent" type="text">
(fraction between 0.0 and 1.0. Specifies height of image relatvie to video size)<br>
keepAspectRatio: <input id="keepAspectRatio" type="checkbox">
(True: keeps aspect ratio ignoring minor dimension between width and hegith.
False: adapts aspect ratio to specified width and hegith)<br>
center: <input id="center" type="checkbox">
(True: centers image in the square defined by widthPercent and heightPercent
False: image is hooked to the specified offsets)<br>
Image URI: <input id="imageUri" type="text" size="80" >
</div>
<div class="row">
<div class="col-md-12">
<label class="control-label" for="console">Console</label>
<div id="console" class="democonsole">
<ul></ul>
</div>
</div>
</div>
</div>
<footer>
<div class="foot-fixed-bottom">
<div class="container text-center">
<hr/>
<div class="row">© 2014-2015 Kurento</div>
<div class="row">
<div class="col-md-4">
<a href="http://www.urjc.es">
<img src="img/urjc.gif" alt="Universidad Rey Juan Carlos" height="50px"/>
</a>
</div>
<div class="col-md-4">
<a href="http://www.kurento.org">
<img src="img/kurento.png" alt="Kurento" height="50px"/>
</a>
</div>
<div class="col-md-4">
<a href="http://www.naevatec.com">
<img src="img/naevatec.png" alt="Naevatec" height="50px"/>
</a>
</div>
</div>
</div>
</div>
</footer>
</body>
</html>