Windows 10 April 2018更新已发布。 Edge的新功能之一是Screen Capture API,但我的环境很糟糕或发生了abortError并且它无效。
有没有人使用Screen Capture API?
如果有效,请告诉我源代码。
顺便说一下,我写的代码就在这里。 https://turbographics2000.github.io/screencapture_test/
btnScreenCapture.onclick = evt => {
navigator.getDisplayMedia({ video: true })
.then(stream => {
// we have a stream, attach it to a feedback video element
vid.srcObject = stream;
vid.play();
}, error => {
console.log("Unable to acquire screen capture", error);
});
};