xxxxxxxxxx
15
let video;
function setup() {
createCanvas(windowWidth, windowWidth*9/16);
background(51);
video = createCapture(VIDEO);
// video.size(320, 240);
video.hide();
}
function draw() {
// tint(255, 0, 150);
image(video, 0, 0, width, width*4/5);
}