P5.js sequence export
function setup() { } function draw() { background(255); ellipse(frameCount, height/2, 10, 10); saveCanvas("seq2-" + nf(frameCount, 5),"png"); if(frameCount === width){ noLoop(); } }