bbc / VideoContext

An experimental HTML5 & WebGL video composition and rendering API.
http://bbc.github.io/VideoContext/
Apache License 2.0
1.32k stars 156 forks source link

Unhandled Rejection (TypeError): 2 is not a valid argument count for any overload of Window.createImageBitmap #199

Open kruncher opened 4 years ago

kruncher commented 4 years ago

The following error message occurs when using Firefox 74.0.1 (64-bit):

image

It seems to be caused by using the following:

const node = this.videoContext.image("/blank.png");

As a workaround I am able to do the following successfully:

window.createImageBitmap = null;
const node = this.videoContext.image("/blank.png");