An iOS sample app for recording higher fps slow-motion videos such as 120, 240 fps using AVFoundation. Including a wrapper class which makes the implementation much easier. Available on the iPhone 5s, iPhone 6, iPhone 6 Plus, iPhone 6s, iPhone 6s Plus etc.
This repository includes a wrapper class "TTMCaptureManager" which makes implementing 240fps video recorder app much easier.
self.captureManager = [[TTMCaptureManager alloc] initWithPreviewView:self.view];
self.captureManager.delegate = self;
[self.captureManager startRecording];
[self.captureManager stopRecording];