본문 바로가기

Programming/HTML, CSS, Javascript, jQuery

[Javascript] 자바스크립트에 웹캠 넣기

위 화면에서 웹캠 촬영을 활성화 하면 자신의 얼굴이 나올 것이다.

티스토리 html모드에서 css 태그는 자동으로 없어지는 것 같으니 div container에 인라인 스타일을 삽입하였다.

 

초간단 소스 (출처 : https://www.kirupa.com/html5/accessing_your_webcam_in_html5.htm)

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
<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="videoElement">
    
    </video>
</div>
<script>
var video = document.querySelector("#videoElement");
 
if (navigator.mediaDevices.getUserMedia) {
  navigator.mediaDevices.getUserMedia({ video: true })
    .then(function (stream) {
      video.srcObject = stream;
    })
    .catch(function (err0r) {
      console.log("Something went wrong!");
    });
}
</script>
cs