@beapp/react-native-screen-recorder
TypeScript icon, indicating that this package has built-in type declarations

1.2.1 • Public • Published

react-native-record-screen

A screen record with app audio + mic module for React Native.

  • Support iOS >= 11.0

Installation

npm install @beapp/react-native-screen-recorder

pod install

cd ios && pod install && cd ../

Usage

Recording full screen

import RecordScreen from '@beapp/react-native-screen-recorder'

// recording start
RecordScreen.startRecording().catch((error) => console.error(error))

// recording stop
const res = await RecordScreen.stopRecording().catch((error) =>
  console.warn(error)
)

if (res) {
  const url = res.result.outputURL
}

Clean Sandbox

RecordScreen.clean();

License

MIT

Package Sidebar

Install

npm i @beapp/react-native-screen-recorder

Weekly Downloads

3

Version

1.2.1

License

MIT

Unpacked Size

1.81 MB

Total Files

237

Last publish

Collaborators

  • t.voslar
  • vsleichert