Is Apple Log open to developers for 3rd party apps?

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

Answered by DTS Engineer in 819855022

Yes, you can capture in Apple Log.

  1. Make sure that you set automaticallyConfiguresCaptureDeviceForWideColor to false, otherwise AVCaptureSession might override your activeColorSpace choice.

  2. Make sure the AVCaptureDevice's activeFormat contains .appleLog in its supportedColorSpaces array.

  3. Set the activeColorSpace of the AVCaptureDevice to .appleLog

-- Greg

Yes, you can capture in Apple Log.

  1. Make sure that you set automaticallyConfiguresCaptureDeviceForWideColor to false, otherwise AVCaptureSession might override your activeColorSpace choice.

  2. Make sure the AVCaptureDevice's activeFormat contains .appleLog in its supportedColorSpaces array.

  3. Set the activeColorSpace of the AVCaptureDevice to .appleLog

-- Greg

Is Apple Log open to developers for 3rd party apps?
 
 
Q