UNPKG

chrome-video-capturestream-fix

Version:

Fixes possible crashes caused by calling captureStream on a HTMLVideoElement with its src being a MediaSource in chrome.

8 lines (6 loc) 216 B
import { captureStream } from "./captureStream"; export function polyfill() { HTMLVideoElement.prototype.captureStream = function(streamOptions = {}) { return captureStream(this, streamOptions); }; }