xxxxxxxxxx
16
P5Capture.setDefaultOptions({
format: "gif",
framerate: 10,
quality: 0.5,
width: 320,
disableUi: true,
});
function setup() {
createCanvas(400, 400);
pcapture = P5Capture.getInstance();
}
function draw() {
background(220);
}