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.
ffmpeg screen capture utility for nodejs.
npm install --save captor
const Captor = require('captor')
const captor = new Captor()
// get a list of available capture devices
captor.listDevices().then(deviceList => {
// match a device name
var deviceIndex = -1
Object.keys(deviceList).forEach(index => {
if(deviceList[index] === 'Capture screen 0'){
deviceIndex = index
}
})
return new Promise((resolve, reject) => {
if(deviceIndex !== -1){
resolve(deviceIndex)
}else{
reject(`${videoDeviceName} not found in deviceList: ${JSON.stringify(deviceList)}`)
}
})
}).then(deviceIndex => {
// run screen capture for 10s, capturing 6 frames per second
var imagesPath = `./tmp/image_${Date.now()}_%04d.jpg`
return captor.startCapture({
videoDevice: deviceIndex,
output: imagesPath,
duration: 10,
fps: 6
})
}).then(imagesPath => {
// pass the frames onto the video encoder
return captor.encodeVideo({
input: imagesPath,
output: `out_${Date.now()}.mp4`
})
}).then(videoPath => {
console.log('RECORDING COMPLETE!!', videoPath)
}).catch(e => { console.error('ERROR CODE:', e) })
FAQs
Desktop screen capture for nodejs
The npm package captor receives a total of 1 weekly downloads. As such, captor popularity was classified as not popular.
We found that captor 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.