Roku Developer Program

Join our online forum to talk to Roku developers and fellow channel creators. Ask questions, share tips with the community, and find helpful resources.
cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
fredlynn
Visitor

VAST Mid-roll Ads

I was able to integrate VAST pre-roll ads by using the VAST demo app. Thanks!

Are there any examples available that could help me implement VAST mid-rolls (e.g. like a ShowMidRoll() function)?
0 Kudos
4 REPLIES 4
destruk
Binge Watcher

Re: VAST Mid-roll Ads

Maybe ask your ad provider? Without a live streaming implementation of your content you would need to break your video into sections and then use repeated preroll calls for each section in the desired allotment - otherwise users could fast forward and resume playback after the ad points without being subjected to the ads.
0 Kudos
RokuChris
Roku Employee
Roku Employee

Re: VAST Mid-roll Ads

Injecting ads into VOD content is doable, but not the best user experience because of the multiple buffer screens that will be displayed.

Basically, you want to watch the isPlaybackPosition event to decide when to do the injection. You do have to account for cases like the user FF'ing past an ad point. There's also the case where a user watches an ad, then RW's to a point before it, you have to decide whether to make them watch the ad break a second time.

When you hit a point where you want to inject an ad, you need to save the position and close the video screen. Then play the ad using the same method as the preroll. Then resume the content where you left off by setting its playStart attribute.

If you are planning to target your channel only at newer boxes, there is a new event (not sure off hand if it was in 5.1 or 5.2) called isResumeRequest that can help reduce the number of buffer screens in the FF/RW scenarios.
0 Kudos
agmark
Visitor

Re: VAST Mid-roll Ads

Chris...is the isResumeRequest documented? Not finding it.
0 Kudos
RokuChris
Roku Employee
Roku Employee

Re: VAST Mid-roll Ads

"agmark" wrote:
Chris...is the isResumeRequest documented? Not finding it.


I don't see it either. It's new, but I'm sure it will get in there soon. Using it is pretty basic. It's off by default, to enable it do this:
videoscreen.SetGuidedTrickPlay(true)


Then, every time the screen is about to exit trick play mode, you will get an isResumeRequest event. GetIndex() will return a unique ID for this resume request. GetData() will return the position where the video is about to resume.

At this point you can do whatever stuff you need to, like injecting an ad.

In order for the screen to continue normally after an isResumeRequest event, you must do this:
videoscreen.ResumeAck(msg.GetInfo())
0 Kudos