Category: AVFoundation
-
ImageSequencer – Build a video from a collection of images in iOS/macOS/tvOS
I’ve been working on Lapsey – an app to make beautiful timelapse’s with – and whilst I won’t be open-sourcing the entire project, I am trying to open-source various components in the app that feel like it might be worthwhile to others. One of the larger packages in the app is the “engine” that builds…
-
Get all available cameras in iOS using AVCaptureDevice.DiscoverySession
I’m working on an iOS project that required finding all of the users available cameras on their device. This used to be simple enough prior to iOS 10, as you could just call: This would retrieve all available cameras on the users device. Sadly, thats been deprecated. The confusing world of virtual devices With the…