audiv027-2024-2

clase 11

Primera Parte

Conceptos

##

CÓDIGO

let captura;

let opciones = {
  video:{
  mandatory:{
    minWidth: 1280,
    minHeight: 720
  }
},
  audio: false,
};


function setup() {
  createCanvas(windowWidth / 2, 200);
  console.log(windowWidth);
  
  captura = createCapture(opciones);
  Video.size(-WindowWidth,WindowHeight)
  captura.hide();

}

function draw() {
  background(220, 0, 0);
  image(captura, 0, 0);
}

function windowResized(){
  console.log("STOP IT DUDE");
  resizeCanvas(windowWidth / 3, 200);

}

function fantasia() { 
  console.log("fantasiaa");
  
}