Baike.dev
All toolsAI codingTrendingOpen sourceNewsSubmit
Log in
< Back to tools
R

react-video-recorder

> 编程语言
Open source

react-video-recorder Installation sh yarn add react-video-recorder Note: this project has react, react-dom, prop-types & styled-components …

195 stars0 likes1 views
WebsiteGitHub

About

react-video-recorder Installation sh yarn add react-video-recorder Note: this project has react, react-dom, prop-types & styled-components …

react-video-recorder

Installation

yarn add react-video-recorder

# Note: this project has react, react-dom, prop-types & styled-components as peerDependencies,
#       so if you're starting from scratch run this instead:
yarn add react-video-recorder react react-dom prop-types styled-components

Typescript

If using Typescript, typing is available via:

yarn add -D @types/react-video-recorder

Usage

Basic usage (edit in stakblitz):

import React from 'react'
import { render } from 'react-dom'
import VideoRecorder from 'react-video-recorder'

const App = () => (
   {
      // Do something with the video...
      console.log('videoBlob', videoBlob)
    }}
  />
)

render(, document.getElementById('root'))

Also check the Storybook for more demos and usage examples.

Note: if you click the "Show info" button in the top-right corner, you should be able to see a table with the supported prop-types.

Modifying the UI

All the UI can be customized by passing the following props:

renderDisconnectedView

View that's rendered before the user enables the camera access.

Default value: () =>

[See `` source here.](src/defaults/disconnected-view.js)

renderLoadingView

View that's rendered while the camera is initializing.

() =>

[See `` source here.](src/defaults/loading-view.js)

renderVideoInputView

View that's rendered when the browser does not support inline recording but allows opening the native camera (mainly iOS).

Default value: ({ videoInput }) => {videoInput}

renderUnsupportedView

View that's rendered when the browser does not support recording video.

Default value: () =>

[See `` source here.](src/defaults/unsupported-view.js)

renderErrorView

View that's rendered an unexpected error occurs.

Default value: () =>

[See `` source here.](src/defaults/error-view.js)

renderActions

Overlay that's rendered on top of the views and that contains the elements like the buttons, the timer or the countdown.

See the default implementation here.

Development

Requirements

node version ">=8.3"

Install packages

yarn install

Run the storybook demo

yarn start

Committing

To commit run yarn start then commit. We use Husky to verify before committing.

Issues· 0 open

View all issuesOpen on GitHub

No open issues yet, or sync has not completed.

> Tags

JavaScript

No comments yet. Be the first to share.

> Details

PublishedAug 1, 2026
UpdatedSep 18, 2026
Category编程语言
PricingOpen source

> Related tools

T
TypeScript
JavaScript 的超集,为前端与全栈提供静态类型
P
Python
通用编程语言,广泛用于 Web、数据与 AI
G
Go
Google 推出的简洁高效系统语言