Socket
Socket
Sign inDemoInstall

captor

Package Overview
Dependencies
10
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    captor

Desktop screen capture for nodejs


Version published
Weekly downloads
2
Maintainers
1
Install size
66.4 MB
Created
Weekly downloads
 

Readme

Source

Captor

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) })

Keywords

FAQs

Last updated on 05 Nov 2016

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc