I'm accessing the camera in iOS and using session presets as so:

captureSession.sessionPreset = AVCaptureSessionPresetMedium;

Pretty standard stuff. However, I'd like to know ahead of time the resolution of the video I'll be getting due to this preset (especially because depending on the device it'll be different). I know there are tables online you can look this up (such as here: http://cmgresearch.blogspot.com/2010/10/augmented-reality-on-iphone-with-ios40.html ). But I'd like to be able to get this programmatically so that I'm not just relying on magic numbers.

So, something like this (theoretically):

[captureSession resolutionForPreset:AVCaptureSessionPresetMedium];

which might return a CGSize of { width: 360, height: 480}. I have not been able to find any such API, so far I've had to resort to waiting to get my first captured image and querying it then (which for other reasons in my program flow is not good).

link|improve this question

64% accept rate
hi Did you get solution? i too searching the same – Asta ni enohpi Dec 29 '11 at 4:57
feedback

3 Answers

up vote 1 down vote accepted

According to Apple, there's no API for that: https://devforums.apple.com/message/423995#423995 It sucks, I've had the same problem.

Cheers,

Johannes

link|improve this answer
feedback

I am no AVFoundation pro, but I think the way to go is:

captureSession.sessionPreset = AVCaptureSessionPresetMedium;
AVCaptureInput *input = [captureSession.inputs objectAtIndex:0]; // maybe search the input in array
AVCaptureInputPort *port = [input.ports objectAtIndex:0];
CMFormatDescriptionRef formatDescription = port.formatDescription;
CMVideoDimensions dimensions = CMVideoFormatDescriptionGetDimensions(formatDescription);

I'm not sure about the last step and I didn't try it myself. Just found that in the documentation and think it should work.

Searching for CMVideoDimensions in Xcode you'll find the RosyWriter example project. Have a look at that code (I don't have time to do that now).

link|improve this answer
Unfortunately this is only set after the video starts shooting, so still no good (gave you a point though). – Francisco Ryan Tolmasky I Oct 20 '11 at 23:06
Yeah, I didn't try. That's a pity there is no such API, though. Thanks for the point :) – Christian Beer Oct 21 '11 at 4:30
Yes, you must called [captureSession startRunning] first. This works for my case. I guess you'd have to setup a capture session and kill it right away if you wanted just read what the presets are. – Dex Mar 4 at 10:19
feedback

May be you can provide a list of all posible preset resolutions for every iPhone model and check which device model the app is running on? - using something like this...

[[UIDevice currentDevice] platformType]   // ex: UIDevice4GiPhone
[[UIDevice currentDevice] platformString] // ex: @"iPhone 4G"

However, you have to update the list for each newer device model. Hope this helps :)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.