Socket
Socket
Sign inDemoInstall

@filerobot/screen-capture

Package Overview
Dependencies
1
Maintainers
5
Versions
996
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @filerobot/screen-capture

Filerobot plugin that captures video from display or application.


Version published
Weekly downloads
787
increased by2.08%
Maintainers
5
Created
Weekly downloads
 

Readme

Source

@filerobot/screen-capture

Plugins Website Version Scaleflex team License CodeSandbox

Filerobot Widget logo

The screen capture records the device's screen with processing the recorded video for uploading in Filerobot Media Asset Widget.

Usage

NPM

npm install --save @filerobot/screen-capture

YARN

yarn add @filerobot/screen-capture

then

import ScreenCapture from '@filerobot/screen-capture'
...
...
...
filerobot.use(ScreenCapture, propertiesObject)

CDN

The plugin from CDN is found inside Filerobot global object Filerobot.ScreenCapture

const ScreenCapture = window.Filerobot.ScreenCapture
...
...
...
filerobot.use(ScreenCapture, propertiesObject)

Plugin's styles

import '@filerobot/core/dist/style.css'
import '@filerobot/screen-capture/dist/style.css'

or if you prefer the minified version

import '@filerobot/core/dist/style.min.css'
import '@filerobot/screen-capture/dist/style.min.css'

The plugin's css file should be imported after the Core's css file for having the styles shown correctly.

Properties

title

Type: string.

Default: 'Screen cast'

The title shown in the top bar of the panel.

preferredVideoMimeType

Type: string.

Default: null

The mime type for the recorded video to be saved with if you provided un-supported mime type then the browser's default would be used, if you left it null then if found any suitable type inside allowedFileTypes it would be used.

displayMediaConstraints

Type: object.

Default:

video: {
  width: 1280,
  height: 720,
  frameRate: {
    ideal: 3,
    max: 5
  },
  cursor: 'motion',
  displaySurface: 'monitor'
}

The options being passed for getDisplayMedia method of navigator.mediaDevices. Check the available options/properties from MDN Docs Whether to show the video's recording length or not while it is in progress.

userMediaConstraints

Type: object.

Default:

{
  audio: true
}

The options being passed for getUserMedia method of navigator.mediaDevices. Check the available options/properties from MDN Docs Whether to show the video's recording length or not while it is in progress.

locale

Type: object.

Default:

strings: {
  startCapturing: 'Begin screen capturing',
  stopCapturing: 'Stop screen capturing',
  submitRecordedFile: 'Submit captured video',
  streamActive: 'Stream active',
  streamPassive: 'Stream passive',
  micDisabled: 'Microphone access denied by user',
  recording: 'Recording'
}

Customizing some of the translations or the language's strings and replace the default locale.

FAQs

Last updated on 22 Apr 2024

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