KalturaHTML5:EmbedPlayer.AttributionButton
From HTML5 Video
White-label the player or custom logo
By default, like the flash player the the HTML5 player displays an attribution logo. You may want to remove or disable that attribution. To disable the attribution set:
mw.setConfig('EmbedPlayer.AttributionButton', false);To change the attribution to a custom logo, with custom link set:
mw.setConfig('EmbedPlayer.AttributionButton', {
'title' : 'Title for your custom link',
'href' : 'url to link to for your player icon',
// Style icon to be applied
'class' : 'kaltura-icon',
// An icon image url 16x16 image url or data url )
'iconurl' : "http://url.to.your/custom/icon.png"
});