1.4.0 • Published 9 years ago

screen-recorder v1.4.0

Weekly downloads
6
License
MIT
Repository
github
Last release
9 years ago

Screen recorder

OS X screen recording library for Node

Installation

npm install screen-recorder

Example

var ScreenRecorder = require('screen-recorder').ScreenRecorder
var path = require('path')

var movie = new ScreenRecorder(path.resolve(__dirname, 'test.mp4')) // [, displayId]
movie.setCapturesMouseClicks(true)
movie.setCropRect(0, 0, 500, 500)
movie.setFrameRate(30) // default is 15
movie.recordAudio()
movie.start()

setTimeout(function() {
  movie.stop()
}, 10000)
1.4.0

9 years ago

1.3.0

9 years ago

1.2.0

9 years ago

1.1.1

9 years ago

1.1.0

9 years ago

1.0.2

9 years ago

1.0.1

9 years ago

1.0.0

9 years ago