First include playkit-seo.js after kaltura-player script in your web page.
<script src="https://unpkg.com/@playkit-js/kaltura-player-js@latest/dist/kaltura-ovp-player.js"></script>
<script src="./playkit-seo.js"></script>Add the seo to the player config under the plugins section.
const config = {
targetId: 'player-placeholder',
provider: {
partnerId: 1234567,
},
plugins: {
seo: {},
}
};
const player = KalturaPlayer.setup(config);The Plugin doesn't require any configuration
You can find Full working example here