Hello!
I am building a video camera app and trying to implement Apple log for iPhone 15 Pro and 16 Pro.
I am not seeing a lot of documentation on it and notice the amount of apps that use it on the app is rather limited. Less an 5 to be exact.
Is Apple Log recording a feature that is accessible to developers?
Here is a link to documentation: https://developer.apple.com/documentation/avfoundation/avcapturecolorspace/applelog
Yes, you can capture in Apple Log.
-
Make sure that you set automaticallyConfiguresCaptureDeviceForWideColor to false, otherwise AVCaptureSession might override your activeColorSpace choice.
-
Make sure the AVCaptureDevice's activeFormat contains
.appleLog
in its supportedColorSpaces array. -
Set the activeColorSpace of the AVCaptureDevice to
.appleLog
-- Greg