Nielsen DCR & DTVR
Nielsen Digital Content Ratings (DCR) and Digital TV Ratings (DTVR) are both measurement systems developed by Nielsen to provide insights into audience behavior and engagement across digital media.
Configuration
| Attribute | Type | Required | Description | 
|---|---|---|---|
| enabled | boolean | Yes | Enable the plugin (Defaults to false if no value is given.) | 
| appId | string | Yes | Unique ID assigned to the player/site and configured by product provided by Nielsen | 
| initialization | Object<[key: string]: string> | No | The initialization parameters of the Nielsen SDK. | 
| metadata | Object<[key: string]: string> | No | The metadata to be sent to the Nielsen. | 
const config = {
    ...
    plugins: {
        ...
        nielsen: {
            enabled: true,
            appId: "APP_ID_PROVIDED_BY_NIELSEN",
            initialization: {
                ...
                key: "value",
                ...
            },
            metadata: {
                ...
                key: "value",
                ...
            }
        },
        ...
    },
    ...
};
const player = new lura.Player();
player.setConfig(config);