Go to file
Marc Rousavy eeb765f018
fix: Move Audio Input initialization shortly before startRecording (#159)
* rename

* Update AVAudioSession+updateCategory.swift

* fix bootstrap script

* Update CameraView+AVAudioSession.swift

* move audio input adding lower

* Activate AudioSession only when starting recording

* format

* Deactivate Audio Session

* remove audio input before deactivating audio session

* Update CameraView+AVAudioSession.swift

* log time

* Update CameraView+AVAudioSession.swift

* measure time with `measureElapsedTime`

* Update project.pbxproj

* only log in debug builds

* bootstrap with bridge (RNN new API)

* Mark two funcs as `@inlinable`

* format

* Update ReactLogger.swift

* Make audioWriter optional (allow videos without sound)

* only log frame drop reason in DEBUG

* Make audio writing entirely optional

* format

* Use function name as label for measureElapsedTime

* Update MeasureElapsedTime.swift

* Update MeasureElapsedTime.swift

* Mark AudioWriter as finished

* set `automaticallyConfiguresApplicationAudioSession` once

* Add JS console logging

* log to JS console for a few logs

* Update AVAudioSession+updateCategory.swift

* format

* Update JSConsoleHelper.mm

* catch log errors

* Update ReactLogger.swift

* fix docs

* Update RecordingSession.swift

* Immediatelly add audio input

* Update CameraView+AVCaptureSession.swift

* Update CameraView+AVCaptureSession.swift

* Update ReactLogger.swift

* immediatelly set audio session

* extract

* format

* Update TROUBLESHOOTING.mdx

* hmm

* Update AVAudioSession+updateCategory.swift

* Create secondary `AVCaptureSession` for audio

* Configure once, start stop on demand

* format

* fix audio notification interruptions

* docs
2021-06-03 14:16:02 +02:00
.github fix: Fix AVAudioSession not allowing background music playback (#155) 2021-06-01 13:07:57 +02:00
.vscode VSCode settings 2021-02-20 17:13:02 +01:00
android chore(deps): Bump Android native dependencies (#150) 2021-05-27 11:29:52 +02:00
cpp feature: Frame Processors (iOS) (#2) 2021-05-06 14:11:55 +02:00
docs fix: Move Audio Input initialization shortly before startRecording (#159) 2021-06-03 14:16:02 +02:00
example fix: Move Audio Input initialization shortly before startRecording (#159) 2021-06-03 14:16:02 +02:00
ios fix: Move Audio Input initialization shortly before startRecording (#159) 2021-06-03 14:16:02 +02:00
scripts fix: Fix AVAudioSession not allowing background music playback (#155) 2021-06-01 13:07:57 +02:00
src fix: Move Audio Input initialization shortly before startRecording (#159) 2021-06-03 14:16:02 +02:00
.eslintrc.js feature: Frame Processors (iOS) (#2) 2021-05-06 14:11:55 +02:00
.gitignore feature: Frame Processors (iOS) (#2) 2021-05-06 14:11:55 +02:00
.prettierrc.js Reformat (#116) 2021-03-31 15:43:29 +02:00
babel.config.js Fix include 2021-02-20 17:09:57 +01:00
CODE_OF_CONDUCT.md Create CODE_OF_CONDUCT.md 2021-03-04 14:18:37 +01:00
CONTRIBUTING.md feature: Frame Processors (iOS) (#2) 2021-05-06 14:11:55 +02:00
LICENSE Update LICENSE 2021-02-25 22:48:21 +01:00
package.json fix: Move Audio Input initialization shortly before startRecording (#159) 2021-06-03 14:16:02 +02:00
README.md feature: Frame Processors (iOS) (#2) 2021-05-06 14:11:55 +02:00
tsconfig.build.json Bootstrap 2021-02-19 16:07:53 +01:00
tsconfig.docs.json Ignore example/ for building docs 2021-03-04 10:38:42 +01:00
tsconfig.json Fix npm package size 2021-04-08 12:30:22 +02:00
VisionCamera.podspec fix: Move Audio Input initialization shortly before startRecording (#159) 2021-06-03 14:16:02 +02:00
yarn.lock fix: Fix AVAudioSession not allowing background music playback (#155) 2021-06-01 13:07:57 +02:00

Vision Camera



📸 The Camera library that sees the vision.
npm i react-native-vision-camera
npx pod-install




Documentation

Features

  • Photo, Video and Snapshot capture
  • Customizable devices and multi-cameras (smoothly zoom out to "fish-eye" camera)
  • Customizable FPS
  • Frame Processors (JS worklets to run QR-Code scanning, facial recognition, AI object detection, realtime video chats and more)
  • Smooth zooming (Reanimated)
  • Fast pause and resume
  • HDR & Night modes

See the example app

Example

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

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

🚀 Get started by setting up permissions!