Capture 60fps in iPhone app

前端 未结 2 1391
情话喂你
情话喂你 2020-12-08 05:19

I am working on a project where we will be using iPhones as cameras for capturing a scene. When recording we need to record @60fps and not 30fps (as natively supported). So

相关标签:
2条回答
  • 2020-12-08 05:54

    I haven't try this before, maybe these are related:

    • Set maximum frame rate with AVFoundation in iOS 5
    • videoMinFrameDuration and videoMaxFrameDuration in AVCaptureConnection Class Reference
    • CMTime Reference (needed for setting videoMaxFrameDuration)
    0 讨论(0)
  • 2020-12-08 06:13

    After some tinkering, this answer has split into two parts:

    How to capture frames at 60fps

    The AVCaptureSessionPreset1280x720 on the iPhone4s/5.1, with frame durations set to:

    connection.videoMinFrameDuration = CMTimeMake(1, 60);*
    connection.videoMaxFrameDuration = CMTimeMake(1, 60);
    

    gives you a stable, super smooth capture.

    How to capture frames into a file @60fps
    Capturing frames is all very well, but presumably you want to keep them.
    As Brad noted in the comments, writing those frames to a file is another story. Sadly, no matter what configurations I tried, encoding the frames via an AVAssetWriter caused the capture rate to drop to the observed ~37fps and no amount of fiddling with alwaysDiscardsLateVideoFrames could change it. However, in this approach every single frame is copied from AVFoundation to your app, and then back again, which is quite pointless and very wearing for the bus. Luckily, AVFoundation has a class that removes this round trip: AVCaptureMovieFileOutput.

    If you let AVFoundation do the writing for you then the iPhone4S can capture and encode frames + audio to a .mov file at 60fps* without breaking a sweat (~25% CPU).

    While 60fps video capture is great feature, I can't help but feel a little disappointed as AVCaptureMovieFileOutput rules out a lot of fun things (e.g. realtime effects with GL shaders, recording start/stop without frame loss).

    cake/eat it

    *59 if you're still running iOS 5.0.1

    0 讨论(0)
提交回复
热议问题