Tag: AVFoundation
-

Creating Camera Application with AVFoundation
Leverage the power of AVFoundation to create yourself camera applications similar to TikTok.
-
Configure Audio Session for background audio mode (iOS Project)
We use AVPlayer from AVFoundation to play audio in our applications. The moment we send the application to back ground mode, audio stops playing. To fix this, we will need to configure AVAudioSession properly. We start by importing AVFoundation in AppDelegate or our iOS Project. Next, add the following code in application didFinishLaunchingWithOptions: Finally, enable…