npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

recorderweb

v0.1.3

Published

This package is made for purpose to record screen in web (Access Camera, mic and auto - download feature). ## Without video only avatar <img width="600" alt="image" src="https://user-images.githubusercontent.com/48119181/171716304-0d47fb24-8411-45ff-81b3-

Downloads

20

Readme

Getting Started with RecorderWeb package

This package is made for purpose to record screen in web (Access Camera, mic and auto - download feature).

Without video only avatar

With video

Features

  • Screen Recorder.
  • With mic access.
  • With camera(user video enabled you can switch while recording)
  • Downaload the video
  • You can enable auto-download
  • enable timer
  • switch to avatar mode(user video is disabled).
  • customize your error
  • add callback function while start or end of the recording.

Browser Support

All browser support But for mobile devices it is disabled as navigator does not support in mobile devices

Installing

Using npm:

$ npm install recorderweb

Usage

And then include it in your module (import recorderweb from "recorderweb") import recoderweb from 'recorderweb'

 let recorderWebObj = new RecorderWeb(); 

 recorderWebObj.create("RecoderWeb",{
  environment: "desktop",
  mic: true,
  camera: true,
  download: true,
  timer: true,
  screenShot: false,
  autoDownload: true, // to auto download video after stop
  videoFormat: "mp4", // need to add in package
  avatar: "Nitesh", // if want avatar then specify Name of like-  Nitesh, Ritesh 
  onStop: callBackOnStop, // get media tracks after stop
  onStart: callbackOnStart // get notify after start the recoding.
 });

 recorderWebObj.mount("id of your div where want to mount");

Settings

|..| variables | possible value | type of value | remarks | |-|:-------- |:---------------:|:---------------:|:----------------------------------------| |.| mic | true / fasle | boolean | to access mic keep it true (it can't be enabled after start). | |.| camera | true / fasle | boolean | to access user video keep it true. you can switch while recording | |.| download | true / fasle | boolean | for download button keep the flag true | |.| timer | true / fasle | boolean | for showing timer keep the flag true | |.| autoDownload| true / fasle | boolean | for autodownload video after recording stop| |.| videoFormat | mp4 (only *) | string | it must be mp4 for now | |.| avatar | name_of_user | srting | instead of video switch to avatar (firstletter of you name) | |.| screenShot | true / false | boolean | it disabled for now |

Callback Methods

  • onStart : This callback is trigered when the recording will start.
  • onStop : This callback is trigered when the recording will stop.
  • getTracks : This will give you the traks of recordings you can modify it according to your need (in beta version).

License

MIT License.

Development

This project was generated with Angular CLI version 1.7.1.

Contributions

Contributions are welcome, please open an issue and preferrably file a pull request.

Opening Issue Please share sample code using codesandbox.com or stackblitz.com to help me re-produce the issue.