1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

blogerにwebcam

1
Posted at

概要

bloggerにwebcamを載せてみた。

写真

image.png

サンプルコード

<html>
  <head>
  </head>
  <body>
    <video id="video_area" style="background-color: #000" autoplay></video>
    <button id="start_btn">映像表示開始</button>
<script>
  if (typeof navigator.mediaDevices.getUserMedia !== 'function') 
  {
    const err = new Error('getUserMedia()が使えないブラウザだよ');
    alert(`${err.name} ${err.message}`);
    throw err;
  }
  const start = document.getElementById('start_btn'); 
  const video = document.getElementById('video_area'); 
  start.addEventListener('click', () => {
    navigator.mediaDevices.getUserMedia({
      video: true, 
      audio: false
    }).then(stream => video.srcObject = stream).catch(err => alert(`${err.name} ${err.message}`));
  }, false);
</script>
  </body>
</html>




成果物

以上。

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?