How to play audio in the background using AVFoundation

UISwift Team Avatar

·

·

audio_back

Playing audio in the background allows your app to continue audio playback even when the user switches to another app or locks their device. This is essential for apps like music players, podcast apps, or meditation apps.

Prerequisites

To enable background audio playback, you need to:

1. Configure your Info.plist file.

2. Set up an AVAudioSession to support background playback.

3. Use AVPlayer or AVAudioPlayer for audio playback.

Step 1: Enable Background Audio in Info.plist

Open your Info.plist file and add the following key:

• UIBackgroundModes → audio

This tells iOS that your app intends to play audio in the background.

Step 2: Configure AVAudioSession for Background Playback

Before playing any audio, you must set up AVAudioSession to allow background playback.

How it works:

• setCategory(.playback) allows audio playback in the background.

• setActive(true) activates the session.

Make sure to call setupAudioSession() in your AppDelegate or before playing audio.

Step 3: Play Audio in the Background

Now, you can play an audio file using AVPlayer or AVAudioPlayer.

Using AVPlayer for Streaming Audio

Using AVAudioPlayer for Local Files

How it works:

• AVPlayer is great for streaming remote audio files.

• AVAudioPlayer is better for playing local files.

Step 4: Handle Audio Interruptions (Phone Calls, Siri, etc.)

To ensure smooth playback, handle interruptions like incoming phone calls.

How it works:

• Pauses audio when interrupted (e.g., by a phone call).

• Resumes playback when the interruption ends.

By following these steps, your app can play audio in the background:

  • Enable background audio in Info.plist
  • Configure AVAudioSession for playback
  • Use AVPlayer for streaming or AVAudioPlayer for local files
  • Handle audio interruptions properly