Difference between revisions of "DCR Italy Video Browser SDK (6.0.1)"

From Engineering Client Portal

 
(22 intermediate revisions by 4 users not shown)
Line 1: Line 1:
{{Breadcrumb|}} {{Breadcrumb|Digital}} {{Breadcrumb|International}}  {{CurrentBreadcrumb}}
+
{{Breadcrumb|}} {{Breadcrumb|Digital}} {{Breadcrumb|International DCR}}  {{CurrentBreadcrumb}}
 
[[Category:Digital]]
 
[[Category:Digital]]
  
 
This guide will show how to integrate the Nielsen Software Development Kit (SDK) to enable Digital Content Ratings (DCR) video measurement on browser players.
 
This guide will show how to integrate the Nielsen Software Development Kit (SDK) to enable Digital Content Ratings (DCR) video measurement on browser players.
 +
 +
== Overview ==
 +
The Nielsen SDK is one of multiple framework SDKs that Nielsen provides to enable measuring linear (live) and on-demand TV viewing using TVs, mobile devices, etc.
 +
The Browser SDK is the framework for browsers developers to integrate Nielsen Measurement into their media player pages. It supports a variety of Nielsen Measurement Products like Digital in TV Ratings, Digital Content Ratings ([[DCR & DTVR]]), and [[Digital Ad Ratings]] (DAR). Nielsen SDKs are also equipped to measure static content and can track key life cycle events of pages like:
 +
*Site launch events and how long page is viewed
 +
*Time of viewing a sub section / page.
  
 
== Prerequisites ==
 
== Prerequisites ==
To get started, an App ID is needed. The App ID is a unique ID assigned to the player/site/app. This will be provided upon starting the integration from Nielsen.
+
To get started, an App ID, clientid and vcid is needed. These values are provided by Nielsen.
 +
 
 +
The App ID is a unique ID assigned to the player/site/app. This will be provided upon starting the integration.
 +
AppID: <syntaxhighlight lang="console">PXXXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX</syntaxhighlight>
 +
 
 +
 
 +
The clientid is your 'parent# or companyid'
 +
clientid: <syntaxhighlight lang="console">XX-XXXXXX"</syntaxhighlight>  // eg. "it-123456"
 +
 
 +
 
 +
The vcid is your channel id
 +
vcid: <syntaxhighlight lang="console">"xXX"</syntaxhighlight>  // eg. "c01"
 +
 
 +
 
 +
== Remove Nielsen JS Library Call ==
 +
* '''For clients currently using the legacy tagging system (Object Video)'''
 +
The Nielsen JS library call is no longer needed. You will need to remove:
 +
<syntaxhighlight lang="html">
 +
<script src='http://cdn-gl.imrworldwide.com/novms/js/2/ggcmb39X.js'></script>
 +
</syntaxhighlight>
 +
The initialization call in Step '''"Create SDK Instance"''' will handle the library download.
 +
 
 +
 
 +
* '''For clients not currently using the legacy tagging system (Object Video)'''
 +
If you are integrating for the first time our Video Browser SDK, you should use the SDK version 6.0.0.
 +
Please see the following guide [[DCR Italy Video Browser SDK (6.0.0)]]
 +
 
 +
== Remove Nielsen SDK Plugins ==
 +
 
 +
Nielsen SDK Plugins must be remove.
  
<syntaxhighlight lang="javascript">
+
* For existing '''Brightcove plugin''' clients. You Will need to remove:
  apid: "XXXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX" // eg. PDA7D5EE6-B1B8-XXXX-XXXX-2A788BCXXXCA
+
<syntaxhighlight lang="html">
 +
<script src='http://cdn-gl.imrworldwide.com/novms/bc/3/ggng510.js'></script>
 +
</syntaxhighlight>
 +
<br>
 +
* For existing '''JW Player plugin''' clients.You Will need to remove:
 +
<syntaxhighlight lang="html">
 +
<script src='http://cdn-gl.imrworldwide.com/novms/jw/ggjw510.js'></script>
 +
</syntaxhighlight>
 +
<br>
 +
* For existing  '''The Platform/CTS plugin''' clients.You Will need to remove:
 +
<syntaxhighlight lang="html">
 +
<script src='http://cdn-gl.imrworldwide.com/novms/tp/3/ggtp510.js'></script>
 
</syntaxhighlight>
 
</syntaxhighlight>
  
Line 46: Line 92:
 
To initialize the SDK, create an SDK instance by making the initialization call:
 
To initialize the SDK, create an SDK instance by making the initialization call:
  
=== Initialization API Call ===
+
'''Initialization API Call'''
<syntaxhighlight lang="javascript">
+
<syntaxhighlight lang="javascript">NOLBUNDLE.nlsQ("<apid>", "<instanceName>",
NOLBUNDLE.nlsQ("<apid>", "<instanceName>",{nol_sdkDebug: "debug"})
+
    {
</syntaxhighlight>
+
      clientid: "XX-XXXXXX",  // eg. "it-123456"
 +
      vcid: "cXX",            // eg. "c01"
 +
      nol_sdkDebug: "debug"   // should be deleted when going live
 +
    }
 +
)</syntaxhighlight>
  
 
When creating an instance, pass the following five values:
 
When creating an instance, pass the following five values:
Line 126: Line 176:
 
| title || Episode title (max. 254 characters) || custom || ✓
 
| title || Episode title (max. 254 characters) || custom || ✓
 
|-
 
|-
| length || Length of content in seconds for VOD. The estimated content length has to be passed for live content. || <code>seconds</code> (86400 for live stream) || ✓
+
| length || Length of content in seconds for VOD. The estimated content length has to be passed for live content. || <code>seconds</code> (0 for live stream) || ✓
 
|-
 
|-
 
| airdate || Original (local) air date and time (hh:mm:ss as 24h time stamp); if not known set it to eg. "19700101 00:00:00" || <code>YYYYMMDD hh:mm:ss</code> || ✓
 
| airdate || Original (local) air date and time (hh:mm:ss as 24h time stamp); if not known set it to eg. "19700101 00:00:00" || <code>YYYYMMDD hh:mm:ss</code> || ✓
Line 167: Line 217:
  
 
'''Note''': all parameters should be provided as strings (also length)
 
'''Note''': all parameters should be provided as strings (also length)
 
'''Note''': for Audiweb clients there is no need to use "mediaURL", "segB", "segC", "crossId1", "crossId2" and "hasAds". These parameters can be left out completely from structure. They are optional and not mandatory (and out of current reporting too).
 
  
 
=== Ad Object ===
 
=== Ad Object ===
Line 209: Line 257:
 
| <code>'5'</code> || playhead position || content play || Call when content or ads start playing or resumes from pause.  
 
| <code>'5'</code> || playhead position || content play || Call when content or ads start playing or resumes from pause.  
 
'''VOD''' (or ad): The playhead position must be passed.  
 
'''VOD''' (or ad): The playhead position must be passed.  
'''Live''': current unix timestamp (seconds since January 1st 1970).
+
'''Live''': current Unix timestamp (seconds since Jan-1-1970 UTC).
 
|-
 
|-
 
| <code>'6'</code> || playhead position || pause || Call when content or ads is pausing. Use Event 5 to resume ...
 
| <code>'6'</code> || playhead position || pause || Call when content or ads is pausing. Use Event 5 to resume ...
 
'''VOD''' (or ad): The playhead position must be passed.  
 
'''VOD''' (or ad): The playhead position must be passed.  
'''Live''': current unix timestamp (seconds since January 1st 1970).
+
'''Live''': current Unix timestamp (seconds since Jan-1-1970 UTC).
 
|-
 
|-
 
| <code>'7'</code> || playhead position || stop || Call when ads complete playing and at the very end of the stream. The playhead position must be passed when calling stop
 
| <code>'7'</code> || playhead position || stop || Call when ads complete playing and at the very end of the stream. The playhead position must be passed when calling stop
Line 222: Line 270:
 
|-
 
|-
 
| <code>'49'</code> || playhead position || playhead position || '''VOD''': current position in seconds.  
 
| <code>'49'</code> || playhead position || playhead position || '''VOD''': current position in seconds.  
'''Live''': current unix timestamp (seconds since January 1st 1970).
+
'''Live''': current Unix timestamp (seconds since Jan-1-1970 UTC).
 
Note: has to be called on a secondly basis.
 
Note: has to be called on a secondly basis.
 
For each ad the playheads starts with 0 (no Live unix timestamp for ads)
 
For each ad the playheads starts with 0 (no Live unix timestamp for ads)
Line 326: Line 374:
 
nSdkInstance.ggPM('49', 62);
 
nSdkInstance.ggPM('49', 62);
 
nSdkInstance.ggPM('6', 62); // now send nothing to SDK until player resumes (automatically because of buffering ends or user unpauses/resumes play
 
nSdkInstance.ggPM('6', 62); // now send nothing to SDK until player resumes (automatically because of buffering ends or user unpauses/resumes play
nSdkInstance.ggPM('5', 62); // play/5 when resume occurs (when user click play or buffering ends)
+
nSdkInstance.ggPM('5', 62); // ONLY WHEN PLAYING CONTENT (not ads!) - play/5 when resume occurs (when user click play or buffering ends)
 
nSdkInstance.ggPM('49', 63);
 
nSdkInstance.ggPM('49', 63);
 
nSdkInstance.ggPM('49', 64);
 
nSdkInstance.ggPM('49', 64);
Line 343: Line 391:
 
nSdkInstance.ggPM('6', 62); // use pause, because buffering will occur (to be on safe side)
 
nSdkInstance.ggPM('6', 62); // use pause, because buffering will occur (to be on safe side)
 
nSdkInstance.ggPM('8', 62,120);
 
nSdkInstance.ggPM('8', 62,120);
nSdkInstance.ggPM('5', 120); // play/5 when resuming
+
nSdkInstance.ggPM('5', 120); // ONLY WHEN PLAYING CONTENT (not ads!) - play/5 when resuming
 
nSdkInstance.ggPM('49', 120);
 
nSdkInstance.ggPM('49', 120);
 
nSdkInstance.ggPM('49', 121);
 
nSdkInstance.ggPM('49', 121);
Line 357: Line 405:
 
* Pressing the stop button
 
* Pressing the stop button
 
There are many cases where the player itself has the ability to detect such situations. If not, these interruption scenarios can be handled through JavaScript. The events that are called will depend on the asset being played (e.g. midroll vs. content).
 
There are many cases where the player itself has the ability to detect such situations. If not, these interruption scenarios can be handled through JavaScript. The events that are called will depend on the asset being played (e.g. midroll vs. content).
<syntaxhighlight lang="javascript">window.addEventListener('beforeunload', function(event)  
+
<syntaxhighlight lang="javascript">
{
+
function closePlayer() {
   // Only inside a midroll indicate 'stop' for the ad
+
  if (insideMidroll) {  // Only inside a midroll indicate 'stop' for the ad
  if (insideMidroll) {
+
     nSdkInstance.ggPM('7', playheadPositionMidroll);
     nSdkInstance.ggPM('7', playheadPosition);
 
 
   }
 
   }
 
    
 
    
 
   // Indicate 'end' for the content and 'stop' for the stream
 
   // Indicate 'end' for the content and 'stop' for the stream
   nSdkInstance.ggPM('57', playheadPosition);
+
   nSdkInstance.ggPM('57', playheadPositionContent);
   nSdkInstance.ggPM('7', playheadPosition);
+
   nSdkInstance.ggPM('7', playheadPositionContent);
});</syntaxhighlight>
+
};
 +
if ('onpagehide' in window) {
 +
window.addEventListener("pagehide", function (e) { // for iOS mobile recommended by apple
 +
closePlayer();  // call nielsensdk with end/stop
 +
});
 +
} else {
 +
window.addEventListener("beforeunload", function (e) {
 +
closePlayer();  // call nielsensdk with end/stop
 +
});
 +
}
 +
</syntaxhighlight>
  
<blockquote>'''Note''': User may need to add code to support specific browser versions (e.g. older versions of Internet Explorer).</blockquote>
+
<blockquote>'''Note''': User may need to add code to support specific browser versions (e.g. older versions of Internet Explorer or covering Safari on mobile browsers ... you may use "onpagehide" event as well).</blockquote>
  
 
== Opt-Out ==
 
== Opt-Out ==

Latest revision as of 01:41, 10 September 2020

Engineering Portal breadcrumbArrow.png Digital breadcrumbArrow.png International DCR breadcrumbArrow.png DCR Italy Video Browser SDK (6.0.1)

This guide will show how to integrate the Nielsen Software Development Kit (SDK) to enable Digital Content Ratings (DCR) video measurement on browser players.

Overview

The Nielsen SDK is one of multiple framework SDKs that Nielsen provides to enable measuring linear (live) and on-demand TV viewing using TVs, mobile devices, etc. The Browser SDK is the framework for browsers developers to integrate Nielsen Measurement into their media player pages. It supports a variety of Nielsen Measurement Products like Digital in TV Ratings, Digital Content Ratings (DCR & DTVR), and Digital Ad Ratings (DAR). Nielsen SDKs are also equipped to measure static content and can track key life cycle events of pages like:

  • Site launch events and how long page is viewed
  • Time of viewing a sub section / page.

Prerequisites

To get started, an App ID, clientid and vcid is needed. These values are provided by Nielsen.

The App ID is a unique ID assigned to the player/site/app. This will be provided upon starting the integration.

AppID:

PXXXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX


The clientid is your 'parent# or companyid'

clientid:

XX-XXXXXX"

// eg. "it-123456"


The vcid is your channel id

vcid:

"xXX"

// eg. "c01"


Remove Nielsen JS Library Call

  • For clients currently using the legacy tagging system (Object Video)

The Nielsen JS library call is no longer needed. You will need to remove:

<script src='http://cdn-gl.imrworldwide.com/novms/js/2/ggcmb39X.js'></script>

The initialization call in Step "Create SDK Instance" will handle the library download.


  • For clients not currently using the legacy tagging system (Object Video)

If you are integrating for the first time our Video Browser SDK, you should use the SDK version 6.0.0. Please see the following guide DCR Italy Video Browser SDK (6.0.0)

Remove Nielsen SDK Plugins

Nielsen SDK Plugins must be remove.

  • For existing Brightcove plugin clients. You Will need to remove:
<script src='http://cdn-gl.imrworldwide.com/novms/bc/3/ggng510.js'></script>


  • For existing JW Player plugin clients.You Will need to remove:
<script src='http://cdn-gl.imrworldwide.com/novms/jw/ggjw510.js'></script>


  • For existing The Platform/CTS plugin clients.You Will need to remove:
<script src='http://cdn-gl.imrworldwide.com/novms/tp/3/ggtp510.js'></script>

Configure SDK

There are two steps required for configuring the SDK:

  • Add Static Queue Snippet
  • Create SDK Instance

Add Static Queue Snippet

Add the following script tag to the website:

<script>
!function(t,n)
{
  t[n]=t[n]||
  {
    nlsQ:function(e,o,c,r,s,i)
    {
     return s=t.document,
     r=s.createElement("script"),
     r.async=1,
     r.src=("http:"===t.location.protocol?"http:":"https:")+"//cdn-gl.imrworldwide.com/conf/"+e+".js#name="+o+"&ns="+n,
     i=s.getElementsByTagName("script")[0],
     i.parentNode.insertBefore(r,i),
     t[n][o]=t[n][o]||{g:c||{},
     ggPM:function(e,c,r,s,i){(t[n][o].q=t[n][o].q||[]).push([e,c,r,s,i])}},t[n][o]
    }
  }
}
(window,"NOLBUNDLE");
</script>

The static queue snippet allows the SDK APIs to be called while the actual SDK and configuration file are still being downloaded. As the queue can capture all API calls before the download completes, there is no wait time. Once the SDK is available, the API calls will transition from directing to the queue to the SDK seamlessly.

Create SDK Instance

To initialize the SDK, create an SDK instance by making the initialization call:

Initialization API Call

NOLBUNDLE.nlsQ("<apid>", "<instanceName>",
    {
       clientid: "XX-XXXXXX",  // eg. "it-123456"
       vcid: "cXX",            // eg. "c01"
       nol_sdkDebug: "debug"   // should be deleted when going live
    }
)

When creating an instance, pass the following five values:

Parameter Description Values
apid Unique ID assigned to player/site "PXXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX"
instanceName Name of SDK instance "any string value"
clientid Brand value has to be passed in 3rd parameter object Nielsen provided
vcid VCID value has to be passed 3rd parameter object Nielsen provided
nol_sdkDebug Enables Nielsen console logging. Only required for testing. in 3rd parameter object {nol_sdkDebug: "debug"}


When the initialization call is made, a unique static configuration file, <apid>.js, will be downloaded based on the apid and will be cached on the user’s browser.

Once the configuration is downloaded, the SDK itself will be downloaded and initialized. All SDK modules are included in one file: “nlsSDK601.bundle.min.js”.

Example SDK Configuration

The configuration should include the Static Queue Snippet and an SDK Instance for an unique App ID as shown in the example:

<script type="text/javascript">
  // Add Static Queue Snippet
 !function(t,n)
{
  t[n]=t[n]||
  {
    nlsQ:function(e,o,c,r,s,i)
    {
     return s=t.document,
     r=s.createElement("script"),
     r.async=1,
     r.src=("http:"===t.location.protocol?"http:":"https:")+"//cdn-gl.imrworldwide.com/conf/"+e+".js#name="+o+"&ns="+n,
     i=s.getElementsByTagName("script")[0],
     i.parentNode.insertBefore(r,i),
     t[n][o]=t[n][o]||{g:c||{},
     ggPM:function(e,c,r,s,i){(t[n][o].q=t[n][o].q||[]).push([e,c,r,s,i])}},t[n][o]
    }
  }
}
(window,"NOLBUNDLE");
 
  // Created SDK Instance
  var nSdkInstance = NOLBUNDLE.nlsQ("P14273221-CF5C-46BF-A832-994AEFB73AA4","myPlayerName", {clientid: "it-123456", vcid: "c01", nol_sdkDebug: "DEBUG"});
</script>

Create Metadata Objects

There are two types of asset metadata:

  • content: identify video
  • ad: identify each ad (for Italy there is no need to tag ads)

The metadata received for each asset is used for classification and reporting.

Metadata can be passed through key-values using the Nielsen reserved keys. User will need to set up content and ad objects with the required Nielsen keys as shown in the sample code below.

Content Metadata

Content metadata should remain constant throughout the completion of an episode / clip including the ads play.

Key Description Values Required?
type

Type of measurement:

  • video – "content"
"content"
assetid Unique ID assigned to content (max. 40 characters) custom
program Program name (max. 254 characters) custom
title Episode title (max. 254 characters) custom
length Length of content in seconds for VOD. The estimated content length has to be passed for live content. seconds (0 for live stream)
airdate Original (local) air date and time (hh:mm:ss as 24h time stamp); if not known set it to eg. "19700101 00:00:00" YYYYMMDD hh:mm:ss
isfullepisode Full episode flag

"y" - full episode "n" - non-full episode

adloadtype

Type of ad load:

  1. Linear - matches TV ad load "1"
  2. Dynamic - Dynamic Ad Insertion (DAI) "2"
"1" - Linear

"2" - Dynamic

✓ (has to be "2" for DCR/Italy)
clientid Brand value is automatically populated through the App ID provided. The value passed here will override the default value. (e.g. Multiple brands in App) Nielsen provided
subbrand subbrand/VCID value is automatically populated through the App ID provided. This value passed here will override the default value. (e.g. Multiple Sub-brands in App) Nielsen provided

Example Content Object ... with all mandatory parameters - you may ignore the optional ones.

//create content object
var contentMetadataObject =
{  
  type:           "content",
  assetid:        "VID123-123456",
  program:        "program name",
  title:          "episode title",
  length:         "1020",
  airdate:        "19700101 00:00:00",
  isfullepisode:  "y",
  adloadtype:     "2"
};

Note: all parameters should be provided as strings (also length)

Ad Object

The ad metadata should be passed for each individual ad.

Attention: for Audiweb there is no need to tag ads in video stream ... you may ignore this paragraph. If there are ads in your stream, but not tagged than simply do nothing while ad is playing.


Keys Description Values Required
type type of ad "preroll", "midroll" or "postroll"
assetid uniqueID assigned to ad custom

Example Ad Object

//create ad object
var adMetadataObject = 
{  
  assetid: "AD-1",
  type:    "preroll"
};

URL Character Limit: There is a URL character limit of 2K characters due to browser limitations. Exceeding this value could impair data delivery on particular browsers.

Call Nielsen APIs

The method for calling events is ggPM().

nSdkInstance.ggPM('event', parameter, ...);

Events

The events are included in the table below:

Event Number Values to pass Event Name Description
'3' content/ad metadata object load content metadata Load metadata event for content. Has to be called at the very first beginning of each stream.
'5' playhead position content play Call when content or ads start playing or resumes from pause.

VOD (or ad): The playhead position must be passed. Live: current Unix timestamp (seconds since Jan-1-1970 UTC).

'6' playhead position pause Call when content or ads is pausing. Use Event 5 to resume ...

VOD (or ad): The playhead position must be passed. Live: current Unix timestamp (seconds since Jan-1-1970 UTC).

'7' playhead position stop Call when ads complete playing and at the very end of the stream. The playhead position must be passed when calling stop
'8' playhead position from, playhead position to seek Call when scrubbing forward or backward with playhead position 'from' and 'to'
'15' content/ad metadata object load ad metadata Call at the beginning of each ad, don’t use ‘play’ (event 5) if event 15 is used
'49' playhead position playhead position VOD: current position in seconds.

Live: current Unix timestamp (seconds since Jan-1-1970 UTC). Note: has to be called on a secondly basis. For each ad the playheads starts with 0 (no Live unix timestamp for ads)

'57' playhead position end This event has to be called once for the current video asset at the end of the playback.

At the end of the content stream, if the user switches to another piece of content or when the browser is refreshed or closed.

SDK Event Lifecycle

The sample event lifecycle can be used as a reference for identifying the order for calling events.

without Ads


example without ads:

// Start of stream
nSdkInstance.ggPM('3', contentMetadataObject); // must be called as start of stream

// Content
nSdkInstance.ggPM('5',  contentPlayheadPosition);
nSdkInstance.ggPM('49', contentPlayheadPosition); // must be fired every second with playhead starting from 0 (or with seconds since 1970-01-01 00:00:00 in case of livestream)
... /*** pass playheads every second ***/
nSdkInstance.ggPM('49', contentPlayheadPosition);
nSdkInstance.ggPM('6',  contentPlayheadPosition);  // pause is also needed for legacy reasons before event 57
nSdkInstance.ggPM('57', contentPlayheadPosition);  // has to be called here at the end of the content only once
 
// End of Stream
nSdkInstance.ggPM('7',  contentPlayheadPosition); // must be called as indicator for end-of-stream

Note: if there are ads played in stream simply use a pause (event 6) when ads start playing and a play (event 5) when content start playing.


with Ads

example with ads:

// Start of stream
nSdkInstance.ggPM('3', contentMetadataObject); // must be called as start of stream (even if 1st asset is preroll)
 
// Preroll
nSdkInstance.ggPM('15', prerollMetadataObject);
nSdkInstance.ggPM('49', individualAdPlayheadPosition); // must be fired every second with playhead starting from 0
... /*** pass playhead every second ***/
nSdkInstance.ggPM('49', individualAdPlayheadPosition);
nSdkInstance.ggPM('7',  individualAdPlayheadPosition);
 
// Content
nSdkInstance.ggPM('5',  contentPlayheadPosition);
nSdkInstance.ggPM('49', contentPlayheadPosition); // must be fired every second with playhead starting from 0 for the first segment (or with seconds since 1970-01-01 00:00:00 in case of livestream)
... /*** pass playheads every second ***/
nSdkInstance.ggPM('49', contentPlayheadPosition);
nSdkInstance.ggPM('6',  contentPlayheadPosition);
 
// Midroll
nSdkInstance.ggPM('15', midrollMetadataObject);
nSdkInstance.ggPM('49', individualAdPlayheadPosition); // must be fired every second with playhead starting from 0
... /*** pass playheads every second ***/
nSdkInstance.ggPM('49', individualAdPlayheadPosition);
nSdkInstance.ggPM('7',  individualAdPlayheadPosition);
 
// Content
nSdkInstance.ggPM('5',  contentPlayheadPosition);
nSdkInstance.ggPM('49', contentPlayheadPosition); // must be fired every second with playhead starting from where it left off before mid-roll (or with seconds since 1970-01-01 00:00:00 in case of livestream)
... /*** pass playheads every second ***/
nSdkInstance.ggPM('49', contentPlayheadPosition);
nSdkInstance.ggPM('6',  contentPlayheadPosition);  // pause is also needed for legacy reasons before event 57
nSdkInstance.ggPM('57', contentPlayheadPosition);  // has to be called here at the end of the content only once
 
// Postroll
nSdkInstance.ggPM('15', postrollMetadataObject);
nSdkInstance.ggPM('49', individualAdPlayheadPosition); // must be fired every second with playhead starting from 0
... /*** pass playhead every second ***/
nSdkInstance.ggPM('49', individualAdPlayheadPosition);
nSdkInstance.ggPM('7',  individualAdPlayheadPosition);
 
// End of Stream
nSdkInstance.ggPM('7',  contentPlayheadPosition); // must be called as indicator for end-of-stream


Attention: for Italy there is no need to tag ads in video stream ... ignore "with ads" example!


Note: Event '49' is used for calculating duration and must be passed every second. The final playhead position must be sent for the current asset being played before calling event '7', '57', or '15'.

Note: when buffering occurs you have to send a event 6 (pause) and after buffering finished a 5 (play).

Note: For Ad Pods, events must be called for each individual Ad. Each Ad playhead position should begin at ‘0’ when ad starts.

Note: When content has resumed following an ad break, the playhead position update must continue where previous content segment left off. The playhead position should be passed as a rounded number with no decimals.


Handling Pause The event 6 is used for handling pause. To indicate pause, stop passing the playhead position to the SDK and send Event 6 with playhead once. When content resumes, begin sending the playhead again with the correct playhead value. Also if buffering occurs for more than 1 second you may use Event 6 (pause) to indicate that. e.g. pause at 1m2s and resume after a couple of seconds:

...
nSdkInstance.ggPM('49', 61);
nSdkInstance.ggPM('49', 62);
nSdkInstance.ggPM('6', 62); // now send nothing to SDK until player resumes (automatically because of buffering ends or user unpauses/resumes play
nSdkInstance.ggPM('5', 62); // ONLY WHEN PLAYING CONTENT (not ads!) - play/5 when resume occurs (when user click play or buffering ends)
nSdkInstance.ggPM('49', 63);
nSdkInstance.ggPM('49', 64);
...


Handling Seek The event 8 is used for handling forward/backward seek. To indicate seek, send Event 8 with 'from' and 'to' playhead. e.g. seek from 1m2s to 2m0s:

...
nSdkInstance.ggPM('49', 61);
nSdkInstance.ggPM('49', 62);
nSdkInstance.ggPM('6', 62); // use pause, because buffering will occur (to be on safe side)
nSdkInstance.ggPM('8', 62,120);
nSdkInstance.ggPM('5', 120); // ONLY WHEN PLAYING CONTENT (not ads!) - play/5 when resuming
nSdkInstance.ggPM('49', 120);
nSdkInstance.ggPM('49', 121);
...


Interruption Scenarios The following possible browser interruption scenarios must be handled:

  • Browser/Tab close
  • Leaving the page to another destination
  • Pressing the stop button

There are many cases where the player itself has the ability to detect such situations. If not, these interruption scenarios can be handled through JavaScript. The events that are called will depend on the asset being played (e.g. midroll vs. content).

function closePlayer() {
  if (insideMidroll) {   // Only inside a midroll indicate 'stop' for the ad
    nSdkInstance.ggPM('7', playheadPositionMidroll);
  }
  
  // Indicate 'end' for the content and 'stop' for the stream
  nSdkInstance.ggPM('57', playheadPositionContent);
  nSdkInstance.ggPM('7', playheadPositionContent);
};
if ('onpagehide' in window) {
	window.addEventListener("pagehide", function (e) {	// for iOS mobile recommended by apple
		closePlayer();   // call nielsensdk with end/stop
	});
} else {
	window.addEventListener("beforeunload", function (e) {
		closePlayer();   // call nielsensdk with end/stop
	});
}

Note: User may need to add code to support specific browser versions (e.g. older versions of Internet Explorer or covering Safari on mobile browsers ... you may use "onpagehide" event as well).

Opt-Out

The site must provide a means for the user to opt-out of, or opt back into, Nielsen Measurement. A user can opt-out if they would prefer not to participate in any Nielsen online measurement research. To implement the opt-out option, include the following two items in your privacy policy.

On the Nielsen Digital Measurement Privacy Policy page, users can click Choices to read more detailed information about the measurement software, learn about their options with regard to Nielsen measurement, and, if they do not want to participate in Nielsen online measurement, click a link to receive an opt-out cookie.

The following paragraph is a template for an opt-out statement.

The properties may feature Nielsen proprietary measurement software, which will allow users to contribute to market research, such as Nielsen TV Ratings. To learn more about the information that Nielsen software may collect and your choices with regard to it, please see the Nielsen Digital Measurement Privacy Policy at https://priv-policy.imrworldwide.com/priv/browser/it/it/optout.html.

Opt Back In

Once users have opted-out, they can choose to opt back into Nielsen Measurement at anytime by selecting the opt back in link on the Nielsen Digital Privacy Policy page. When a user selects the link, their opt-out cookie will be deleted and they will be able to be measured.

Going Live

Following Nielsen testing, users need to make a couple of updates to the initialization call to ensure that the site is being measured properly.

  1. Debug Logging: Disable logging by deleting {nol_sdkDebug: 'DEBUG'} from initialization call.
    • Example Production Initialization Call - Refer to the production initialization call below:
      var nSdkInstance = NOLBUNDLE.nlsQ("P14273221-CF5C-46BF-A832-994AEFB73AA4","myPlayerName", {clientid: "it-123456", vcid: "c01"});