ReactJS Canvas has no captureStream

279 Views Asked by At

Is there a way to use captureStream() method in ReactJS canvas? It says no function called captureStream.

I am using canvas with the reference to it. canvasRef.captureStream() is not a function obviously.

Canvas is created by;

const canvasRef = useRef<HTMLCanvasElement>(null!)

and

const stream = canvasRef.current.captureStream();

returns there is no function like captureStream() although it appears in the DOM, checkout;

https://developer.mozilla.org/en-US/docs/Web/API/HTMLCanvasElement/captureStream

0

There are 0 best solutions below