Questions tagged [avcapturedevice]

AVCaptureDevice represents a physical capture device and the properties associated with that device. You use a capture device to configure the properties of the underlying hardware.

A capture device also provides input data (such as audio or video) to an AVCaptureSession object.

API reference

347 questions
-1
votes
1 answer

iPhone 5S lowLightBoost seems not supported. Why?

I'm trying to add lowLightBoost, but on the iPhone i'm testing it is not supported. Am I doing something wrong or did Apple block this feature on iPhone 5S ? I can paste code for AVCaptureSession's setup if necessary, but it's just basic, taken from…
-2
votes
2 answers

Implementing a strobe function

So I am trying to create a LED strobe light and I have managed to make a on/off switch for the light. Here is my code: @implementation ViewController - (void) setTorchOn:(BOOL)isOn { AVCaptureDevice* device = [AVCaptureDevice…
1 2 3
23
24