Skip to main content

Integration Document for Roku Google IMA DAI

Setup

The IMA SDK depends on the Roku Advertising Framework. To load the framework, add the following to manifest:

bs_libs_required=roku_ads_lib,googleima3

Create Stream Asset for VOD

The imaStreamInfo key is required in the asset to play content with Google IMA Player. It requires the contentSourceId and videoId to determine the specific video stream and its source. Additionally, you can configure parameters such as apiKey, type.

Parameters

ParameterTypeDescription
contentSourceIdStringThe content source ID for the stream request.
videoIdStringThe video ID for the stream request.
apiKeyStringThis key can be used to authenticate stream requests.
typeStringThis key can be used to specify type of the content either vod or live
dfp_cust_paramsStringThis key is optional in the asset to provide adTagParameters to stream request

Example Usage

Example usage of VOD Asset:

{
"name": "IMA-VOD",
.
.
.
.
"custom": {
"dfp_cust_params": "roku_ad_keys%3D30-0.0-PU02-roku%2C30-14.0-PU03- roku%26roku_ad_query_id%3D6662004937636311054",
},
"imaStreamInfo": {
"contentSourceId": "2668819",
"videoId": "00915BB8-6481-497B-BAF2-8277DED2A703-A",
"apiKey": "",
"type": "vod"
}
}

Create Stream Asset for LIVE

The imaStreamInfo key is required in the asset to play content with Google IMA Player. It requires the assetKey to determine the specific video stream and its source. Additionally, you can configure parameters such as apiKey, type.

Parameters

ParameterTypeDescription
assetKeyStringIdentifier of the live stream. This is used to determine which stream should be played.
apiKeyStringThis key can be used to authenticate stream requests.
typeStringThis key can be used to specify type of the content either vod or live
dfp_cust_paramsStringThis key is optional in the asset to provide adTagParameters to stream request

Example Usage

Example usage of Live Asset:

{
"name": "IMA-Live",
.
.
.
.
"custom": {
"dfp_cust_params": "roku_ad_keys%3D30-0.0-PU02-roku%2C30-14.0-PU03- roku%26roku_ad_query_id%3D6662004937636311054",
},
"imaStreamInfo": {
"contentSourceId": "2668819",
"videoId": "00915BB8-6481-497B-BAF2-8277DED2A703-A",
"apiKey": "",
"type": "vod"
}
}

Create GoogleIma Ads Player

The FLAdGoogleImaPlayer component can be created programmatically as well as can be added to a Scene Graph node component directly.

flPlayer = createObject("roSGNode", "FLAdGoogleImaPlayer")
AD TAG PARAMETERS

The Ad Player exposes api for LIVE content to replace ad tag parameters. This function Replaces ad tag parameters to be used for the upcoming ad requests for a live stream. Client team only need to send the parameters that have changed. This Api dynamically update the ad targeting parameters used for upcoming ad requests on a live stream. When replacing cust_params and dfp_cust_params, the entire encoded string value must be updated.

REPLACE_AD_TAG_PARAMETERS

This function can be invoked as follows:

flPlayer.callFunc(m.flPlayerFunctions.REPLACE_AD_TAG_PARAMETERS, <uri-encoded-string>)

Playback with Ad Player

Since FLAdGoogleImaPlayer is an extension of FLPlayer it provides the same playback features as the base player. You can set PlaybackAssetto the player and invoke player control functions to perform playback.

Observering Ad Playback Events

You can listen events from FLAdGoogleImaPlayer by observing fields on the ad player node. All the node fields can be observed for change as supported with SceneGraph. Please refer player component for the complete list of fields that provide ad events.

Sample demonstrating Ad state change observation
flPlayer.observeField(flPlayerFields.AD_BREAK_STARTED, "onAdBreakStarted")
flPlayer.observeField(flPlayerFields.AD_BREAK_FINISHED, "onAdBreakEnded")
flPlayer.observeField(flPlayerFields.AD_STARTED, "onAdStarted")
flPlayer.observeField(flPlayerFields.AD_FINISHED, "onAdEnded")

sub onAdBreakStarted(event as Object)
adBreakStarted = event.getData()
? "adBreakStarted: ", adBreakStarted
end sub

sub onAdBreakEnded(event as Object)
adBreakEnded = event.getData()
? "adBreakEnded: ", adBreakEnded
end sub

sub onAdStarted(event as Object)
adStarted = event.getData()
? "adStarted: ", adStarted
end sub

sub onAdEnded(event as Object)
adEnded = event.getData()
? "adEnded: ", adEnded
end sub

Ad Metadata

FLAdBreakInfo

Represents an ad break object. This object is available on observing ad break start and end.

PropertyTypeDescription
adBreakIDStringAd Break Identifier
contentTimePositionStringCurrent Time of the Ad
adBreakStartTimeOffsetDoubleThe position of the ad break, 0 is preroll, -1 is postroll and n is midroll
durationDoubleThe duration of the ad break, in seconds
totalAdsIntegerTotal number of adverts in the ad break
FLAdInfo

Represents an advert object. This object is available on observing ad break start and end.

PropertyTypeDescription
adIDStringThe identifier of the advert
sequenceIntegerThe sequence of the advert
adStartTimeOffsetDoubleThe position of the ad break, 0 is preroll, -1 is postroll and n is midroll
durationDoubleThe duration of the advert in seconds
adBreakInfoFLAdBreakInfoThe ad break which the advert belongs to
vastPropertiesFLVastPropertiesRepresents a VAST properties object.
VASTProperties

Represents a VAST properties object.

PropertyTypeDescription
adSystemStringThe name of the system
adTitleStringThe title of the Ad.
descriptionStringThe description of the Ad
adPositionStringThe position of the Ad, can be preroll, midroll or postroll
creativeIdStringThe ID of the selected creative for the ad
creativeAdIdStringThe Ad-ID of the selected creative in the VAST response in ISCI code
advertiserStringThe advertiser name as defined by the serving party
companionsStringThe companion ads specified in the VAST response

RAF (Roku Advertising Framework)

Since Roku mandates all channel apps that include video advertising to use RAF, the fl-ad-googleima library uses RAF by default.

RAF APIs with FLAdGoogleImaPlayer

The ad player exposes the RAF APIs as follows.

SET_CONTENT_GENRE
SET_CONTENT_ID
SET_CONTENT_LENGTH
SET_NIELSEN_GENRE
SET_NIELSEN_APP_ID

These functions can be invoked as follows:

flPlayer.callFunc(m.flPlayerFunctions.SET_CONTENT_GENRE, "Adventure, Drama", false)
flPlayer.callFunc(m.flPlayerFunctions.SET_CONTENT_ID,"<content-id>")
flPlayer.callFunc(m.flPlayerFunctions.SET_CONTENT_LENGTH, 1200)
flPlayer.callFunc(m.flPlayerFunctions.SET_NIELSEN_GENRE, "<nielsen-genre>")
flPlayer.callFunc(m.flPlayerFunctions.SET_NIELSEN_APP_ID, "<nielsen-app-id>")