Advertisements

When you use the player in your iOS or tvOS applications, you can incorporate advertisements to monetize content and engage your viewers.

The Apple SDK supports IMA3-based Video Ad Serving Template (VAST) and Video Multiple Ad Playlist (VMAP) ad integrations. It also accommodates popular third-party software-building tools like Google's Interactive Media Ads (IMA) SDK. With these technologies, you can customize your viewer's ad experiences and manage ad schedules and breaks within the player.

Before you start

Make sure to download Google IMA SDK iOS 3.19.1 (exact version) and Google IMA SDK tvOS 4.9.2 (exact version) depending on your project. You need this dependency to integrate multimedia ads into the player and your application.

For more information related to listening to ad events, managing media playback, and handling advertising errors, see the following pages:

Configure your ads

The next few sections cover the configuration required to work with Google's IMA SDK. You must provide a valid ad schedule so the IMA SDK can prepare and load your advertisements. The AdSchedule protocol represents an ad schedule, serving as the basis for the two types of ad schedules available, AdSheduleWaterfall and AdScheduleRemote.

AdScheduleWaterfall

The AdScheduleWaterfall structure implements the AdSchedule protocol. It provides a waterfall-like sequence of ad breaks. It also helps to specify pre-roll, mid-roll, and post-roll ad breaks for media content. You can use the following properties with this struct.

Properties

Property Description
midAdBreak An array of ad breaks to be played during the media content. If nil, no mid-roll ad breaks are played. If the array is empty, mid-roll ad breaks are defined but currently unavailable.
postAdBreak Ad break to be played after the media content. If nil, no post-roll ad break plays.
preAdBreak Ad break to be played before the media content. If nil, no pre-roll ad break plays.

You can declare these properties using the AdBreak struct, which defines an ad break array consisting of ad tags and an optional offset. The instance properties for the AdBreak struct are listed in the following table.

Property Description
adTags The array of ad tags for the ad break.
offset The time offset (in seconds) at which the ad break should be inserted during media playback.

Example with MediaExternal

You can create an AdScheduleWaterfall instance with pre-roll, mid-roll, and post-roll, where each AdBreak consists of one or more ad tag URLs (such as VAST) and an offset that indicates the time when the break should start. This example creates an ad schedule that consists of:

  • A pre-roll break with a single ad (offset is ignored).
  • A mid-roll break with three ads, starting 15 seconds into the playback.
  • A post-roll break with a single ad (offset is ignored).
info

If you wish to use the SDK with a MediaExternal instance, you must add your ads manually. As in the following example, create an adSchedule object and pass it as an argument when you initialize the MediaExternal structure.

Copy
Copied
let preRollBreak = AdBreak(adTags: ["https://link.to.a.vast.file"])
let midRollBreak = AdBreak(
  adTags: ["https://link.to.a.vast.file", "https://link.to.a.vast.file"],
  offset: 15
)
let postRollBreak = AdBreak(adTags: ["https://link.to.a.vast.file"])

let adSchedule = AdScheduleWaterfall(
  preAdBreak: preRollBreak,
  midAdBreak: midRollBreak,
  postAdBreak: postRollBreak
)

// Add ads manually when using external media
let externalMedia = MediaExternal(
    mediaUrl: URL(string: "https://link.to.a.media.file")!,
    adSchedule: adSchedule
)

AdScheduleRemote

AdScheduleRemote is another structure that implements the AdSchedule protocol. It provides the remote VMAP URL pointing to an ad schedule resource. The remote ad schedule can be fetched and parsed to determine ad breaks for the media content. You can use the following properties with this struct.

Properties

Property Description
url URL pointing to the remote ad schedule resource.

Example with MediaExternal

You can create an AdScheduleRemote instance with a URL to an ad playlist such as VMAP. Make sure that the provided link points to a valid playlist file.

info

If you wish to use the SDK with a MediaExternal instance, you must add your ads manually. As in the following example, create an adScheduleURL object and pass it as an argument when you initialize the MediaExternal structure.

Example AdScheduleRemote

Copy
Copied
let mediaURL =  URL(string: "https://link.to.a.media.file")!
let adScheduleURL = AdScheduleRemote(url: "https://link.to.a.vmap.file")

// Add ads manually when using external media
let externalMedia = MediaExternal(url: mediaURL, adSchedule: adScheduleURL)