We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Today, we use a fixed AVCaptureSession:
.sessionPreset: AVCaptureSession.Preset.hd1920x1080,
This means that if you're trying to use an iPhone 6/6s/6+, you're unable to use the front camera, as they only have 720p front cameras.
We should pick a session preset that's limited by the worst camera on the device instead.
The table on this SO answer should be useful: https://stackoverflow.com/questions/19422322/method-to-find-devices-camera-resolution-ios
The text was updated successfully, but these errors were encountered:
philcluff
No branches or pull requests
Today, we use a fixed AVCaptureSession:
This means that if you're trying to use an iPhone 6/6s/6+, you're unable to use the front camera, as they only have 720p front cameras.
We should pick a session preset that's limited by the worst camera on the device instead.
The table on this SO answer should be useful: https://stackoverflow.com/questions/19422322/method-to-find-devices-camera-resolution-ios
The text was updated successfully, but these errors were encountered: