VideoContext icon indicating copy to clipboard operation
VideoContext copied to clipboard

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

Open kruncher opened this issue 5 years ago • 0 comments

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");

kruncher avatar Apr 05 '20 22:04 kruncher