video-recorder-itsaaz

This is a package usefull for recording webcam in every devices

Usage no npm install needed!

<script type="module">
  import videoRecorderItsaaz from 'https://cdn.skypack.dev/video-recorder-itsaaz';
</script>

README

video-recorder-itsaaz

NPM JavaScript Style Guide

Install

npm install --save video-recorder-itsaaz

Usage

for check the camera

import React, { useEffect } from "react";

import { CameraCheck } from "video-recorder-itsaaz";

const Example = () => {
  useEffect(() => {
    CameraCheck();
  }, []);
  return <div>{example}</div>;
};

for video recorder

import React,  from "react";

import { RecordVideo } from "video-recorder-itsaaz";

const Example = () => {

  return (
    <div>
      <RecordVideo
        setVideo={setvideo}
        videoHelp={videoHelp}
        reload={reload}
      />
    </div>
  );
};

For the style this package

import "video-recorder-itsaaz/src/style.css";

License

MIT © Kavand-1400


This hook is package using create-react-hook.