xxxxxxxxxx
29
// width and height of source video 960x540
let vid;
let x, y;
let sunsetPath = "https://player.vimeo.com/progressive_redirect/playback/751040313/rendition/360p/file.mp4?loc=external&signature=1cf0d08b7433882d8b37995c0eac0a85a77875947e4949c64835f689201b3f31";
function preload() {
let path = sunsetPath;
vid = createVideo(path);
}
function setup() {
vid.play();
vid.speed(1); // playback speed
vid.time(0); // starting time
createCanvas(960, 2500);
background(220);
x = 0;
y = 1;
}
function draw() {
if (frameCount > 120) {
let startY = 100; //speedup sunset.
image(vid, x, y, width, 1, 0, startY, width, 1);
y++;
}
}