xxxxxxxxxx
17
var vid;
function preload() {
vid = createVideo('toothy.mp4');
}
// This function is called when the video loads
function setup() {
createCanvas(400,400);
vid.hide();
vid.play();
background(200);
}
function draw(){
image(vid,mouseX,mouseY,100,100)
}