Advertisement
Guest User

Untitled

a guest
Apr 24th, 2017
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. function downloadvideo(video)
  2. {
  3. const url = URL.createObjectURL(video.captureStream());
  4. const aelem = document.createElement('a');
  5. document.body.appendChild(aelem);
  6. aelem.setAttribute("href",url);
  7. aelem.setAttribute("download","video.mp4");
  8. aelem.click();
  9. //URL.revokeObjectURL(url);
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement