2015-12-08 05:09:36 +00:00
# desktopCapturer
2015-10-04 01:35:00 +00:00
2016-07-25 10:49:25 +00:00
> Access information about media sources that can be used to capture audio and
2017-05-15 18:42:47 +00:00
> video from the desktop using the [`navigator.mediaDevices.getUserMedia`] API.
2016-07-25 10:49:25 +00:00
2016-11-23 19:20:56 +00:00
Process: [Renderer ](../glossary.md#renderer-process )
2016-11-01 23:35:31 +00:00
2016-07-25 10:49:25 +00:00
The following example shows how to capture video from a desktop window whose
title is `Electron` :
2015-10-04 01:35:00 +00:00
```javascript
// In the renderer process.
2018-09-13 16:10:51 +00:00
const { desktopCapturer } = require('electron')
2015-10-04 01:35:00 +00:00
2019-01-18 23:29:32 +00:00
desktopCapturer.getSources({ types: ['window', 'screen'] }).then(async sources => {
2018-10-16 17:41:42 +00:00
for (const source of sources) {
if (source.name === 'Electron') {
try {
const stream = await navigator.mediaDevices.getUserMedia({
audio: false,
video: {
mandatory: {
chromeMediaSource: 'desktop',
chromeMediaSourceId: source.id,
minWidth: 1280,
maxWidth: 1280,
minHeight: 720,
maxHeight: 720
}
2015-10-06 06:34:54 +00:00
}
2018-10-16 17:41:42 +00:00
})
handleStream(stream)
} catch (e) {
handleError(e)
}
2016-07-26 01:39:25 +00:00
return
2015-10-06 06:34:54 +00:00
}
2015-10-04 01:35:00 +00:00
}
2016-07-26 01:39:25 +00:00
})
2015-10-04 01:35:00 +00:00
2016-07-26 16:49:02 +00:00
function handleStream (stream) {
2017-08-18 19:32:03 +00:00
const video = document.querySelector('video')
video.srcObject = stream
video.onloadedmetadata = (e) => video.play()
2015-10-04 01:35:00 +00:00
}
2016-07-26 16:49:02 +00:00
function handleError (e) {
2016-07-26 01:39:25 +00:00
console.log(e)
2015-10-04 01:35:00 +00:00
}
```
2016-07-25 10:49:25 +00:00
To capture video from a source provided by `desktopCapturer` the constraints
2017-05-15 18:38:32 +00:00
passed to [`navigator.mediaDevices.getUserMedia`] must include
2016-07-25 10:49:25 +00:00
`chromeMediaSource: 'desktop'` , and `audio: false` .
2015-12-15 22:07:55 +00:00
2016-07-25 10:49:25 +00:00
To capture both audio and video from the entire desktop the constraints passed
2017-05-15 18:42:47 +00:00
to [`navigator.mediaDevices.getUserMedia`] must include `chromeMediaSource: 'desktop'` ,
for both `audio` and `video` , but should not include a `chromeMediaSourceId` constraint.
2017-05-15 18:45:14 +00:00
```javascript
2017-05-15 18:42:47 +00:00
const constraints = {
audio: {
mandatory: {
chromeMediaSource: 'desktop'
}
},
video: {
mandatory: {
chromeMediaSource: 'desktop'
}
}
2017-05-15 20:38:57 +00:00
}
2017-05-15 18:42:47 +00:00
```
2015-12-15 22:07:55 +00:00
2015-10-06 06:34:54 +00:00
## Methods
2015-10-04 01:35:00 +00:00
2015-10-06 06:34:54 +00:00
The `desktopCapturer` module has the following methods:
2015-10-04 01:35:00 +00:00
2015-10-06 06:34:54 +00:00
### `desktopCapturer.getSources(options, callback)`
2015-10-04 01:35:00 +00:00
2015-12-08 05:09:36 +00:00
* `options` Object
2016-09-28 05:28:44 +00:00
* `types` String[] - An array of Strings that lists the types of desktop sources
2015-12-08 05:09:36 +00:00
to be captured, available types are `screen` and `window` .
2017-05-15 20:38:57 +00:00
* `thumbnailSize` [Size ](structures/size.md ) (optional) - The size that the media source thumbnail
2019-02-13 18:27:42 +00:00
should be scaled to. Default is `150` x `150` . Set width or height to 0 when you do not need
the thumbnails. This will save the processing time required for capturing the content of each
window and screen.
2018-12-04 06:42:49 +00:00
* `fetchWindowIcons` Boolean (optional) - Set to true to enable fetching window icons. The default
value is false. When false the appIcon property of the sources return null. Same if a source has
the type screen.
2015-12-08 05:09:36 +00:00
* `callback` Function
2016-10-13 06:30:57 +00:00
* `error` Error
* `sources` [DesktopCapturerSource[]](structures/desktop-capturer-source.md)
2015-10-04 01:35:00 +00:00
2016-07-25 10:49:25 +00:00
Starts gathering information about all available desktop media sources,
and calls `callback(error, sources)` when finished.
2015-10-04 01:35:00 +00:00
2016-10-13 06:30:57 +00:00
`sources` is an array of [`DesktopCapturerSource` ](structures/desktop-capturer-source.md )
2016-10-14 02:10:37 +00:00
objects, each `DesktopCapturerSource` represents a screen or an individual window that can be
2016-10-13 06:30:57 +00:00
captured.
2015-12-08 05:09:36 +00:00
2017-05-15 18:38:32 +00:00
[`navigator.mediaDevices.getUserMedia`]: https://developer.mozilla.org/en/docs/Web/API/MediaDevices/getUserMedia
2019-01-18 23:29:32 +00:00
**[Deprecated Soon](promisification.md)**
### `desktopCapturer.getSources(options)`
* `options` Object
* `types` String[] - An array of Strings that lists the types of desktop sources
to be captured, available types are `screen` and `window` .
* `thumbnailSize` [Size ](structures/size.md ) (optional) - The size that the media source thumbnail
2019-02-13 18:27:42 +00:00
should be scaled to. Default is `150` x `150` . Set width or height to 0 when you do not need
the thumbnails. This will save the processing time required for capturing the content of each
window and screen.
2019-01-18 23:29:32 +00:00
* `fetchWindowIcons` Boolean (optional) - Set to true to enable fetching window icons. The default
value is false. When false the appIcon property of the sources return null. Same if a source has
the type screen.
Returns `Promise<DesktopCapturerSource[]>` - Resolves with an array of [`DesktopCapturerSource` ](structures/desktop-capturer-source.md ) objects, each `DesktopCapturerSource` represents a screen or an individual window that can be captured.
[`navigator.mediaDevices.getUserMedia`]: https://developer.mozilla.org/en/docs/Web/API/MediaDevices/getUserMedia