You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
let video;
function setup() {
createCanvas(710, 400);
video = createVideo(['video.mov']);
video.hide();
}
function draw() {
background(0);
image(video, 0, 0);
}
In Firefox for Android, the video never renders. The same code works for Firefox desktop, Firefox for iOS, and any other browser.
Most appropriate sub-area of p5.js?
Details about the bug: