Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

decooda-media-recorder

Package Overview
Dependencies
Maintainers
1
Versions
71
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

decooda-media-recorder

Audio/Video recorder with search and filtering capabilities

  • 1.2.2
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

decooda-media-recorder

Description

The decooda-media-recorder is a js library for recording video (h.264) and audio (opus) to be used across Decooda's frontend applications. The base component has four main stages: initial, recording, playback, and submission.

Installation and run commands for local testing

Node version v14.8.0 and npm version 6.14.11 are used for development.

First run

npm install

to in install all packages. Finally run

npm start

to open a webpage of the decooda-media-recorder dashboard

Installation in app (React)

In root directory of app:

First run

npm install decooda-media-recorder

Usage (React)

Import the library

import MediaRecorder from 'decooda-media-recorder'

The component accepts the following props:

audioLinkData || object {} || please follow the example: 
{ 
  "name": "test", 
  "type": "ogg", 
  "date": "April 30, 2021 9:00AM", 
  "link": ""https://actions.google.com/sounds/v1/ambiences/dmv_background_noise.ogg"
}

audioOnly || bool || default: false || if true, audio recording only 

audioVisualizer || bool || default: false || if true, no recording; display audio visualizer only; 
MUST include audioLinkData 

getRecordedBlob || func || (required) function passed by host to library to retrieve the recorded blob

insertTitle  || bool || default: false || if true, will prompt user for title of media 

recordingControls || bool || default: true || if true, it will display controls during video recording

showLinkBtn || bool || default:  true || if true, will show insert link button

showUploadBtn || bool || default: true || if true, will show upload media button

To ONLY play audio with visualizer bars:

set the audioVisualizer to true

audioVisualizer || bool || default: false || if true, no recording; display audio visualizer only; 
MUST include audioLinkData 

supply the audio data:

audioLinkData || object {} || please follow the example: 
{ 
  "name": "test", 
  "type": "ogg", 
  "date": "April 30, 2021 9:00AM", 
  "link": ""https://actions.google.com/sounds/v1/ambiences/dmv_background_noise.ogg"
  }
To do something with the recorded blob, pass a function:
const getRecordedBlob = (blob) => {
  //the func will send the recorded blob obj that the host can save or upload:
  //console.log(blob)
  /*
  output:
  {
    title: "test"
    time: date,
    //the raw recorded blob
    blobRaw: recordedBlob,
    //the blob url
    blobURL: url
    //the blob as a data url
    blobFile: file
  }
  */
  //do something with blob
}

<MediaRecorder 
  audioOnly={false} 
  audioLinkData={null}
  audioVisualizer={false}
  getRecordedBlob={getRecordedBlob} 
  insertTitle={false} 
  recordingControls={true} 
  showLinkBtn={false}
  showUploadBtn={false}
  />

Keywords

FAQs

Package last updated on 04 May 2021

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

SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc