react-native-record-screen
A screen record with app audio + mic module for React Native.
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'
RecordScreen.startRecording().catch((error) => console.error(error))
const res = await RecordScreen.stopRecording().catch((error) =>
console.warn(error)
)
if (res) {
const url = res.result.outputURL
}
Clean Sandbox
RecordScreen.clean();
License
MIT