Mohit Patil
Mohit Patil

Reputation: 446

how to implement video viewability like google

I wanted to do something like google viewability. Till now, I created a js to check element is in viewport or not. but I am not able to found a way to load my js on ssp side. and the only data we are sending to ssp is one xml file (vast standard). there is no way to load js through xml on ssp.

I don't know what information should I provide. Anything would be helpful I just need a direction to start my work, thanks in advance.

Upvotes: 1

Views: 103

Answers (1)

zyexal
zyexal

Reputation: 1579

The way to go is VPAID. You can create your own VPAID-JS which uses the viewport feature and than add the VPAID (the resource URL) as resource to your VAST.

  1. the client browser loads the player
  2. the player loads the VAST (with resource VPAID)
  3. the player loads the VPAID (including viewport script)

Obviously the player on the client side needs to support VPAID to be able to do so.

Sample VAST:

[...]
<MediaFiles>
    <MediaFile type="application/javascript" apiFramework="VPAID" delivery="progressive" >
        <![CDATA[https://your-adserver.com/vpaid.with.viewport.js]]>
    </MediaFile>
</MediaFiles>
[...]

An other option might be to deliver an ad which includes a video-player, but this is not standard and therefore not recommended as it might get blocked by the browser.

Upvotes: 1

Related Questions