desktopCapturer
访问关于使用
navigator.mediaDevices.getUserMedia
API 获取的可以用来从桌面捕获音频和视频的媒体源的信息。
进程:主进程
下面的示例演示如何从标题为 Electron
的桌面窗口捕获视频:
// main.js
const { app, BrowserWindow, desktopCapturer, session } = require('electron')
app.whenReady().then(() => {
const mainWindow = new BrowserWindow()
session.defaultSession.setDisplayMediaRequestHandler((request, callback) => {
desktopCapturer.getSources({ types: ['screen'] }).then((sources) => {
// Grant access to the first screen found.
callback({ video: sources[0], audio: 'loopback' })
})
// If true, use the system picker if available.
// Note: this is currently experimental. If the system picker
// is available, it will be used and the media request handler
// will not be invoked.
}, { useSystemPicker: true })
mainWindow.loadFile('index.html')
})
// renderer.js
const startButton = document.getElementById('startButton')
const stopButton = document.getElementById('stopButton')
const video = document.querySelector('video')
startButton.addEventListener('click', () => {
navigator.mediaDevices.getDisplayMedia({
audio: true,
video: {
width: 320,
height: 240,
frameRate: 30
}
}).then(stream => {
video.srcObject = stream
video.onloadedmetadata = (e) => video.play()
}).catch(e => console.log(e))
})
stopButton.addEventListener('click', () => {
video.pause()
})
<!-- index.html -->
<html>
<meta http-equiv="content-security-policy" content="script-src 'self' 'unsafe-inline'" />
<body>
<button id="startButton" class="button">Start</button>
<button id="stopButton" class="button">Stop</button>
<video width="320" height="240" autoplay></video>
<script src="renderer.js"></script>
</body>
</html>
See navigator.mediaDevices.getDisplayMedia
for more information.
Note: navigator.mediaDevices.getDisplayMedia
does not permit the use of deviceId
for selection of a source - see specification.
方法
desktopCapturer
模块有以下方法:
desktopCapturer.getSources(options)
选项
对象types
string[] - An array of strings that lists the types of desktop sources to be captured, available types can bescreen
andwindow
.thumbnailSize
Size(可选) - 媒体源缩略图应缩放到的尺寸大小。 默认是150
x150
。 当您不需要缩略图时,设置宽度或高度为0。 这将节省用于获取每个窗口和屏幕内容时的处理时间。fetchWindowIcons
boolean (可选) - 设置为 true 以启用提取窗口图标。 默认值为false。 当值为false时,源的appIcon属性返回null。 如果一个源是屏幕类型也是如此。
返回 Promise<DesktopCapturerSource[]>
- resolve 一个DesktopCapturerSource 对象类型的数组,每个 DesktopCapturerSource
代表一个屏幕或一个可以被捕获的独立窗口。
注意 在macOS 10.15 Catalina 或更高版本上捕获屏幕内容需要用户同意,可通过 systemPreferences.getMediaAccessStatus
检测是否授权。