1.0.8 • Published 7 months ago

screencapturekit-node-wrapper v1.0.8

Weekly downloads
-
License
ISC
Repository
github
Last release
7 months ago

Added some ease of use capabilities and made into package for simple integration. No Audio recording

Example:

    const sck = new ScreenCaptureKit();

    const theScreens = await sck.listScreens();

    let recording = false

    console.log('recording');
    if (recording) {
      const vidPath = await sck.stopRecording();
      alert(`Recording saved to: ${vidPath}`);
    } else {
      const options = {
        screenId: theScreens[0].process_id,
        framesPerSecond: 30,
        showCursor: true,
        audioDeviceId: 0,
        destination:
          'path/to/recording.mp4', // optional destination
        highlightClicks: false,
        videoCodec: 'h264',
      };
      await sck.startRecording(options);
    }
1.0.8

7 months ago

1.0.6

12 months ago

1.0.5

12 months ago

1.0.4

12 months ago

1.0.3

12 months ago

1.0.2

12 months ago

1.0.1

12 months ago

1.0.0

12 months ago