@bitmovin/player-web-integration-cmcd
v0.4.0
Published
Conviva analytics integration for the Bitmovin Player
Readme
Bitmovin Player CMCD Integration
This project adds support for the Common Media Client Data (CMCD) plugin. Please find more information about the Consumer Technology Association (CTA) Specification in https://cdn.cta.tech/cta/media/media/resources/standards/pdfs/cta-5004-final.pdf
Install
Install with npm:
npm install --save @bitmovin/player-web-integration-cmcdUsage
Create an instance of the CmcdIntegration with a CmcdConfig and set the different callbacks in the PlayerConfig as follows:
const playerConfig: PlayerConfig = {
// all configurations you would typically set
};
const cmcdConfig: CmcdConfig = {
useQueryArgs: true,
sessionId: '6e2fb550-c457-11e9-bb97-0800200c9a66',
contentId: '1111-111111-111111-11111',
};
const cmcdIntegration = new CmcdIntegration(cmcdConfig);
playerConfig.network = {
preprocessHttpRequest: cmcdIntegration.preprocessHttpRequest,
preprocessHttpResponse: cmcdIntegration.preprocessHttpResponse,
};
playerConfig.adaptation = {
desktop: {
onVideoAdaptation: cmcdIntegration.onVideoAdaptation,
onAudioAdaptation: cmcdIntegration.onAudioAdaptation,
},
mobile: {
onVideoAdaptation: cmcdIntegration.onVideoAdaptation,
onAudioAdaptation: cmcdIntegration.onAudioAdaptation,
},
};After that, you create a Bitmovin Player instance as usual, then pass the player instance to the CMCD integration:
cmcdIntegration.setPlayer(player);It is recommended to set the CMCD Session ID to the Analytics Impression ID as this enables you to connect CDN logs with CMCD data to Analytics sessions:
cmcdIntegration.setSessionId(player.analytics.getCurrentImpressionId());Load the source into the player after these steps:
player.load(source);Setup for Development
- Run
npm installto install dependencies - Use the npm script defined in the package.json like
- Run
npm startto start the dev server with a watch task and auto-reloading - Run
npm run debugto create a dev build bundle (non-minified, with source maps) - Run
npm run buildto create a production bundle (minified) - Run
npm run formatto format all files in thesrc/andtest/folders
- Run
Preparing a release
- Make sure all relevant changes were merged into the
mainbranch, and there is an entry for each change inCHANGELOG.md - Use the Release New Version Github Action Workflow and run it on the
mainbranch
That's it! The workflow will take care of bumping the version (based on Changelog entries), updating the CHANGELOG.md file with release date and version, committing and tagging in this repository, and publishing the package to NPM.
Principles
- The Bitmovin Player shall not be packaged into the JS file created by the build of this integration. To achieve this, types can be imported and used, but no code must be imported/used (including string enums!)
