使用javascript访问设备相机

时间:2018-03-25 07:59:42

标签: javascript html5 css3 web

我想使用javascript访问我的设备相机。但是这段代码只适用于Firefox,桌面也适用。我想在其他浏览器以及移动设备上访问我的相机。

function start()
 {
  var video = document.getElementById('video'),
  vendorUrl = window.URL;
  navigator.mediaDevices.getUserMedia({
        video: true,
        audio: true
    })
.then(function(stream) {
  video.src = vendorUrl.createObjectURL(stream);
          video.play();
})
.catch(function(err) {
alert("no");
});

};

2 个答案:

答案 0 :(得分:2)



  (function() {
    'use strict';
    var video = document.querySelector('video')
      , canvas;

    
    function takeSnapshot() {
      var img = document.querySelector('img') || document.createElement('img');
      var context;
      var width = video.offsetWidth
        , height = video.offsetHeight;

      canvas = canvas || document.createElement('canvas');
      canvas.width = width;
      canvas.height = height;

      context = canvas.getContext('2d');
      context.drawImage(video, 0, 0, width, height);

      img.src = canvas.toDataURL('image/png');
      document.body.appendChild(img);
    }

    
    if (navigator.mediaDevices) {
      // access the web cam
      navigator.mediaDevices.getUserMedia({video: true})
     
        .then(function(stream) {
         
		  video.srcObject = stream
          video.addEventListener('click', takeSnapshot);
        })
      
        .catch(function(error) {
          document.body.textContent = 'Could not access the camera. Error: ' + error.name;
        });
    }
  })();

video, img {
      max-width:100%;
    }

<video autoplay></video>
&#13;
&#13;
&#13;

将其复制到您的本地并运行

希望这有助于你

答案 1 :(得分:1)

移动浏览器需要有效的点击事件才能开始播放视频,因此在收到此视频后,video.play()将无法在移动设备上运行。只需在视频上添加播放图标(仅限移动设备)以诱导用户点击,并将video.play()绑定到此点击事件。