xxxxxxxxxx
44
// Extract files to a folder. Open PowerShell to that folder and use this command:
// ffmpeg -r 60 -f image2 -s 200x200 -i "%07d.png" -vcodec libx264 -crf 17 -pix_fmt yuv420p output.mp4
// ffmpeg -i output.mp4 -pix_fmt rgb24 -s 200x200 output4.gif
// REMEMBER TO ADD CCAPTURER.JS TO HTML WITH THIS LINE:
// <script src="https://unpkg.com/ccapture.js@1.1.0/build/CCapture.all.min.js"></script>
var fps = 30;
var capturer = new CCapture({
format: 'png',
framerate: fps
});
function setup() {
frameRate(fps);
capturer.start();
}
var startMillis;
function draw() {
if (startMillis == null) {
startMillis = millis();
}
var duration = 60000;
var elapsed = millis() - startMillis;
var t = map(elapsed, 0, duration, 0, 1);
if (t > 1) {
noLoop();
console.log('finished recording.');
capturer.stop();
capturer.save();
return;
}
// ACTUAL DRAW FUNCTIONS HERE
console.log('capturing frame');
capturer.capture(document.getElementById('defaultCanvas0'));
}