An iOS sample app for recording 120 fps slow-motion videos using AVFoundation. Including a wrapper class which makes the implementation much easier. Available on the iPhone5s.
##Usage of the wrapper class
This repository includes a wrapper class "AVCaptureHelper" which makes implementing 120fps video recorder app much easier.
###1. Initialize
self.captureManager = [[AVCaptureManager alloc] initWithPreviewView:self.view];
self.captureManager.delegate = self;
###2. Start recording
[self.captureManager startRecording];
###3. Stop recording
[self.captureManager stopRecording];
##Example for the slow motion video