New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

screencapturekit-node-wrapper

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

screencapturekit-node-wrapper

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

latest
Source
npmnpm
Version
1.0.8
Version published
Maintainers
1
Created
Source

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

Keywords

screencapture

FAQs

Package last updated on 09 Dec 2024

Did you know?

Socket

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