-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
45 lines (38 loc) · 890 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<title>M'espionner moi-même</title>
<style>
#contenant {
margin: 0px auto;
width: 500px;
height: 375px;
border: 10px #333 solid;
}
#matete {
width: 500px;
height: 375px;
background-color: #666;
}
</style>
</head>
<body>
<div id="contenant">
<video autoplay="true" id="matete">
</video>
</div>
<script>
var video = document.querySelector("#matete");
navigator.getUserMedia = navigator.getUserMedia || navigator.webkitGetUserMedia || navigator.mozGetUserMedia || navigator.msGetUserMedia || navigator.oGetUserMedia;
if (navigator.getUserMedia) {
navigator.getUserMedia({video: true}, handleVideo, videoError);
}
function handleVideo(stream) {
video.src = window.URL.createObjectURL(stream);
}
function videoError(e) {
// tu peux mettre un message d erreur la
}
</script>
</body>
</html>