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
Sadly, this is a victim to cross domain iframes, I don't think we're ever going to accomplish a fix for this in a package. The best bet for that is image capture from a headless instance of Chrome.
youtube video with react player is giving black screen while capturing with domtoimage
domtoimage
.toJpeg(data, { quality: 0.95, cacheBust: true, proxy: corsProxyUrl })
.then(function (dataUrl) {
var link = document.createElement('a');
link.download = 'my-image-name.jpeg';
link.href = dataUrl;
link.click();
});
any solution for this black screen.
The text was updated successfully, but these errors were encountered: