-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsample.html
55 lines (46 loc) · 1.36 KB
/
sample.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta content="stuff, to, help, search, engines, not" name="keywords">
<meta content="webcam, getUserMedia, video, stream" name="keywords" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta content="What this page is about." name="description">
<meta content="Display Webcam Stream" name="title">
<title>Display Webcam Stream</title>
<style>
#container {
margin: 0px auto;
width: 500px;
height: 375px;
border: 10px #333 solid;
}
#videoElement {
width: 500px;
height: 375px;
background-color: #666;
}
</style>
</head>
<body>
<div id="container">
<video autoplay="true" id='video'>
</video>
</div>
<script>
var video = document.querySelector('video');
var constraints = { audio: true, video: { width: 1280, height: 720 } };
navigator.getUserMedia = navigator.getUserMedia || navigator.webkitGetUserMedia || navigator.mozGetUserMedia || navigator.msGetUserMedia || navigator.oGetUserMedia || navigator.mediaDevices.getUserMedia;
if (navigator.getUserMedia) {
//navigator.getUserMedia({video: true}, handleVideo, videoError);
navigator.mediaDevices.getUserMedia(constrains).then(handleVideo);
}
function handleVideo(stream) {
video.src = window.URL.createObjectURL(stream);
}
function videoError(e) {
// do something
}
</script>
</body>
</html>