最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

html - Is it possible to create a video from a Javascript animation? - Stack Overflow

programmeradmin1浏览0评论

I have a web app that plays an animation using javascript, html, css. Is there a way that I can record that to a video file so that a user can download and view the animation without going to the site?

I have a web app that plays an animation using javascript, html, css. Is there a way that I can record that to a video file so that a user can download and view the animation without going to the site?

Share edited May 16, 2022 at 19:28 lukew3 asked Mar 12, 2021 at 0:48 lukew3lukew3 1872 silver badges12 bronze badges 4
  • 1 No, in short... – see sharper Commented Mar 12, 2021 at 0:53
  • @seesharper MediaRecorder? – Chris Happy Commented Mar 12, 2021 at 0:58
  • @ChrisHappy ha! Live and learn :) – see sharper Commented Mar 12, 2021 at 1:21
  • iOS can record your screen, buttons need to be added to your dashboard support.apple./en-us/HT207935 – franklylately Commented Mar 12, 2021 at 3:07
Add a ment  | 

1 Answer 1

Reset to default 14

Yes, using Canvas and MediaRecorder.

var canvas = document.querySelector("canvas");
var ctx = canvas.getContext("2d");

var video = document.querySelector("video");

var colors = ["red", "blue", "yellow", "orange", "black", "white", "green"];
function draw (){
    ctx.fillStyle = colors[Math.floor(Math.random() * colors.length)];
  ctx.fillRect(0, 0, canvas.width, canvas.height);
}
draw();

var videoStream = canvas.captureStream(30);
var mediaRecorder = new MediaRecorder(videoStream);

var chunks = [];
mediaRecorder.ondataavailable = function(e) {
  chunks.push(e.data);
};

mediaRecorder.onstop = function(e) {
  var blob = new Blob(chunks, { 'type' : 'video/mp4' });
  chunks = [];
  var videoURL = URL.createObjectURL(blob);
  video.src = videoURL;
};
mediaRecorder.ondataavailable = function(e) {
  chunks.push(e.data);
};

mediaRecorder.start();
setInterval(draw, 300);
setTimeout(function (){ mediaRecorder.stop(); }, 5000);
<canvas width="200" height="200"></canvas>

<p>Wait for 5 seconds...</p>
<video autoplay controls download></video>

Source: How to record a canvas element by Alexis Delrieu

Note: At the time of writing, ~95% of global users can use MediaRecorder according to CanIUse..

发布评论

评论列表(0)

  1. 暂无评论