js錄制視頻並保存


使用webAPI錄制視頻

經測試, 只在谷歌和火狐瀏覽器里起效。

代碼:

const streamVideo = document.querySelector('.stream')
const playVideo = document.querySelector('.play');
let chunk;
const download = document.querySelector('#download');
let recorder;
let mediaStream;
document.querySelector('.start').addEventListener('click', start);
document.querySelector('.end').addEventListener('click', end);
document.querySelector('.play-video').addEventListener('click', play);

// MediaRecorder 測試
const constraints = {
  audio: false,
  video: true,
};

function start() {
  navigator.mediaDevices.getUserMedia(constraints)
    .then(stream => {
      mediaStream = stream;
      streamVideo.srcObject = stream;
      streamVideo.play();
      recorder = new MediaRecorder(stream);
      recorder.ondataavailable = e => {
        chunk = e.data;
        download.href = URL.createObjectURL(chunk);
      };
      recorder.start();
    })
}

function end() {
  streamVideo.pause();
  recorder.stop();
  mediaStream.getTracks().forEach(track => {
    track.stop();
  });
}

function play() {
  playVideo.src = URL.createObjectURL(chunk);
  playVideo.play();
}

完整代碼;
在線演示, 使用谷歌或火狐瀏覽器打開


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM