Computer >> Máy Tính >  >> Lập trình >> Javascript

Không thể chụp ảnh từ webcam bằng HTML5 và khi tải trang đầu tiên

Bạn cần thử những cách sau để chụp ảnh từ webcam bằng HTML5:

Khai báo các biến

var streaming = false,
   video = document.querySelector('#video'), canvas = document.querySelector('#canvas'),
   photo = document.querySelector('#photo'),
   startbutton = document.querySelector('#startbutton'),
   width = 320,
   height = 0;

Sử dụng getUserMedia

navigator.getMedia = ( navigator.getUserMedia ||
                navigator.webkitGetUserMedia ||
                  navigator.mozGetUserMedia ||
                   navigator.msGetUserMedia);