Go to file
2021-02-23 11:16:08 +01:00
.vscode VSCode settings 2021-02-20 17:13:02 +01:00
android Remove CONTROL_SCENE_MODES for HDR and Night-Mode 2021-02-20 10:34:46 +01:00
docs Update ERRORS.md 2021-02-23 10:59:12 +01:00
example Update useIsForeground.ts 2021-02-22 12:28:56 +01:00
img Add cuvent logo to README 2021-02-23 11:16:08 +01:00
ios Fallback to auto-audio-setup 2021-02-23 10:30:09 +01:00
scripts Bootstrap 2021-02-19 16:07:53 +01:00
src Manually setup AVAudioSession (allow background music playback) 2021-02-23 10:27:31 +01:00
.eslintrc.js F 2021-02-20 17:12:21 +01:00
.gitignore VSCode settings 2021-02-20 17:13:02 +01:00
.prettierrc.js Finish devDependencies setup 2021-02-19 16:20:19 +01:00
babel.config.js Fix include 2021-02-20 17:09:57 +01:00
CONTRIBUTING.md move md to docs 2021-02-19 21:26:49 +01:00
LICENSE Bootstrap 2021-02-19 16:07:53 +01:00
package.json Squash format-filter 2021-02-20 23:20:28 +01:00
react-native-vision-camera.podspec update config 2021-02-19 21:18:31 +01:00
README.md Add cuvent logo to README 2021-02-23 11:16:08 +01:00
tsconfig.build.json Bootstrap 2021-02-19 16:07:53 +01:00
tsconfig.json Fix include 2021-02-20 17:09:57 +01:00
yarn.lock Create yarn.lock 2021-02-19 21:29:22 +01:00

README DEVICES FORMATS FRAME_PROCESSORS ANIMATED ERRORS


Camera



📸 The Camera library that sees the vision.




Install

npm i react-native-vision-camera
npx pod-install

Features

  • Photo and Video capture
  • Customizable device (ultra-wide-angle, wide-angle, telephoto and virtual multi-cameras)
  • Customizable FPS
  • JS worklet frame processors powered by JSI and Reanimated
  • Reanimated zooming
  • HDR & Night modes

See the example app

Example

function App() {
  const devices = useCameraDevices('wide-angle-camera')
  const device = devices.back

  return (
    <Camera
      style={StyleSheet.absoluteFill}
      device={device}
      isActive={true}
    />
  )
}