0.2.1 • Published 7 years ago

@lebek/react-user-media v0.2.1

Weekly downloads
-
License
MIT
Repository
github
Last release
7 years ago

react-user-media

Provides components for access to audio and webcam

Instalation

npm install react-user-media
import Webcam from "react-user-media";

Webcam

Renders a video element that autoplays the feed from the user's webcam (if allowed). If used with a ref, it's possible to take screenshots of the video feed to a data url format.

Basic usage

<Webcam />

Advanced usage (screenshots)

In your component, render Webcam along with a ref:

<Webcam ref="webcam" />

and then use that ref to access the captureScreenshot method. This methods returns a string with a data-url representation of the current frame of the video feed.

this.refs.webcam.captureScreenshot();

See the examples folder for more in-depth examples.

Props

PropTypeDefault
audiobooltrue
videobooltrue
widthnumber640
heightnumber480
captureFormatstring"image/png"
onSuccessfunc() => {}
onFailurefunc(error) => { throw error }
0.2.1

7 years ago

0.2.0

7 years ago

0.1.12

7 years ago

0.1.11

7 years ago

0.1.10

7 years ago

0.1.9

7 years ago

0.1.8

7 years ago