Security News
Weekly Downloads Now Available in npm Package Search Results
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
electron-video-recorder
Advanced tools
Capture Electron's window and export as video
ffmpeg
if you have FFmpeg installed, make sure to set the FFMPEG_PATH
environment variable;
Or, install @ffmpeg-installer/ffmpeg
electron
npm i electron-video-recorder
With Electron's Offscreen API, you can export videos in the background:
const fs = require("fs");
const { capture } = require("electron-video-recorder");
const { app, BrowserWindow } = require("electron");
const win = new BrowserWindow({
webPreferences: { offscreen: true },
show: false,
});
capture(win, { savePath: 'capture.mp4', fps: 25 }).then(handle => {
handle.stop().then(() => {
const buffer = fs.readFileSync('capture.mp4');
win.close();
win.destroy();
});
})
Or with async func:
const fs = require("fs");
const { capture } = require("electron-video-recorder");
const { app, BrowserWindow } = require("electron");
const win = new BrowserWindow({
webPreferences: { offscreen: true },
show: false,
});
const handle = await capture(win, { savePath: 'capture.mp4', fps: 25 });
// Set up your custom stop event
await new Promise((r) => setTimeout(r, 10000));
const buffer = fs.readFileSync('capture.mp4');
win.close();
win.destroy();
win
<BrowserWindow>: window to be capturedoptions
<Object>
savePath
<String>: path to save the exported video;fps
<Number>: The frames per secord, defaluts to 25
;format
< mp4
| gif
>: output format, default to mp4
;niceness
<Number>: config of fluent-ffmpeg;Core class of capture, created when call capture(win)
, and return an instance;
Manually stop capturing.
This method will automatically be called when BrowserWindow
is closed
or destroyed
const capture = await capture(win, { savePath: "capture.mp4" });
await new Promise(r => setTimeout(r, 5000));
await capture.stop();
There's an Electron example in project, Clone the project and run:
yarn dev
This library is referenced from playwright-video
FAQs
Record Electron's window and export as video
The npm package electron-video-recorder receives a total of 0 weekly downloads. As such, electron-video-recorder popularity was classified as not popular.
We found that electron-video-recorder demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
Security News
A Stanford study reveals 9.5% of engineers contribute almost nothing, costing tech $90B annually, with remote work fueling the rise of "ghost engineers."
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.