Brightcove Player v7.44.0

Brightcove Player 7.44.0 is available for manual update.

No existing players have been auto-updated to this version. Customers eager for a feature or fix that is only available in this version may manually update via the Studio Players JSON Editor or the Player Management API.


Features

Brightcove Adobe Analytics (Web SDK) Plugin

The new bcAaWebSdk packaged plugin sends Brightcove Player events to Adobe Analytics using the Adobe Experience Platform Web SDK (alloy.js).

Options: eventsToTrack and paramsToTrack map player events and dimensions to Adobe variables, datastreamId and orgId let the plugin configure alloy (omit them if the page already does), and instanceName selects the alloy global (default alloy).

player.bcAaWebSdk({
  datastreamId: '<YOUR_DATASTREAM_ID>',
  orgId: '<YOUR_ORG_ID>@AdobeOrg',
  instanceName: 'alloy', // optional; default 'alloy'
  eventsToTrack: { bcvideo_player_load: 'event10', bcvideo_video_engagement: 'event11' },
  paramsToTrack: { bcvideo_player_name: 'prop2', bcvideo_account: 'prop3' }
});

To enable it, add it to the player configuration as a packaged plugin:

{ "name": "bcAaWebSdk", "is_packaged": true, "options": {...} }

Fixes