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.
Welcome! 👋 Thanks for opening your first issue here! And to ensure the community is able to respond to your issue, be sure to follow the issue template if you haven't already.
Most appropriate sub-area of p5.js?
Details about the bug:
The text was updated successfully, but these errors were encountered: