Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Next »

Definition Vast-Request

https://sitename.tns-cs.net/j0=,,,;+,event=start+stream=streampath+mobid=%%ADVERTISING_IDENTIFIER_PLAIN%%+cq=%%VIDEO_ID%%+dur=%%VIDEO_DURATION%%+uid=%%CACHEBUSTER%%;;;”
https://sitename.tns-cs.net/j0=,,,;+,event=firstQuartile+stream=streampath+mobid=%%ADVERTISING_IDENTIFIER_PLAIN%%+cq=%%VIDEO_ID%%+dur=%%VIDEO_DURATION%%+uid=%%CACHEBUSTER%%;;;”
https://sitename.tns-cs.net/j0=,,,;+,event=midpoint+stream=streampath+mobid=%%ADVERTISING_IDENTIFIER_PLAIN%%+cq=%%VIDEO_ID%%+dur=%%VIDEO_DURATION%%+uid=%%CACHEBUSTER%%;;;”
https://sitename.tns-cs.net/j0=,,,;+,event=thirdQuartile+stream=streampath+mobid=%%ADVERTISING_IDENTIFIER_PLAIN%%+cq=%%VIDEO_ID%%+dur=%%VIDEO_DURATION%%+uid=%%CACHEBUSTER%%;;;”
https://sitename.tns-cs.net/j0=,,,;+,event=complete+stream=streampath+mobid=%%ADVERTISING_IDENTIFIER_PLAIN%%+cq=%%VIDEO_ID%%+dur=%%VIDEO_DURATION%%+uid=%%CACHEBUSTER%%;;;”

So the following variables are given by these requests:

variable

type

description

links

event

"start", "firstQuartile", "midpoint", "thirdQuartile", "complete"

Predefined event about progress/position of an Ad defined in Vast Standard

stream

string

The stream path of the Ad

mobid

UUID

from macro ADVERTISING_IDENTIFIER_PLAIN

https://support.google.com/admanager/answer/2376981?hl=en#device-id&zippy=%2Cdevice-id-ios-android-roku-and-tvos

cq

string

from macro VIDEO_ID

https://support.google.com/admanager/answer/2376981?hl=en#video-id&zippy=%2Cvideo-id

dur

int

from macro VIDEO_DURATION

https://support.google.com/admanager/answer/2376981?hl=en#video-duration-in-milliseconds&zippy=%2Cvideo-duration-in-milliseconds

uid

string

from macro CACHEBUSTER

https://support.google.com/admanager/answer/2376981?hl=en#cachebuster&zippy=%2Ccachebuster-random-number

For the emedia-output we use the latest event (“start”, …, “complete”) coming into the system and calculate the playtime in relation tothe “event (event)” and the “duration (dur)”

Playtime (pt) calculation

It needs to be defined in the beginning of the VAST-project if “dur” will be delivered by the broadcasters in seconds or millisseconds for the emedia-output

event

calculation

start

pt = Math.round(stream.dur * 0.12)

firstQuartile

pt = Math.round(stream.dur * 0.37)

midpoint

pt = Math.round(stream.dur * 0.62)

thirdQuartile

pt = Math.round(stream.dur * 0.87)

complete

pt = Math.round(stream.dur * 1.0)

  • No labels