xxxxxxxxxx
// videos
let video1
let video2
let video3
let video4
let video5
// key interactions
let a
let b
let c
let d
let e
function setup() {
createCanvas(400, 400);
video1 = createVideo('video1.mov');
video1.hide
}
function draw() {
background(220);
image('video1.mov', 0,0, 200,200)
}
function keyIsPressed(){
button = a()
}
function vidLoad(){
video1.loop();
video1.volume(0)
}
// //5 (30 second) videos that you filmed over the course of the week. 33p
// User interaction that determines which video will play next 33p
// The ability to play each video in a different sequence every time. 33p