WEEK: 13
Active: April 6th - April 12th
Work Due: April 13th @ 11:59 PM

p5js Video Integration

Video

In the p5js reference, it gives us a simple look at how to integrate video into our sketches. Below is an example. We can adjust our script so that only the tour shows up.

let vid;
function setup() {
  noCanvas();

  vid = createVideo(
    ['assets/small.mp4', 'assets/small.ogv', 'assets/small.webm'],
    vidLoad
  );

  vid.size(100, 100);
}

// This function is called when the video loads
function vidLoad() {
  vid.loop();
  vid.volume(0);
}

Previous section:
Next section: