Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)
Running...
test markup, will be hidden
Player.js iframe receiver
Demonstrates iFrame players.js API.
This Receiver API is enabled default to maximize compatibility with players.js / embed.ly embeds.
You can disable the plugin by setting playersJsReceiver.plugin=false in your player config.
Methods:
Loading ...
Event Log:
You can learn more about embed.ly and player.js on their respective product pages.
To make use of embed.ly simply include open graph tags in your page content pointing to Kaltura iframe player,
also see the Kaltura share page
Setup the player and listen to events or call methods:
<script type="text/javascript">
var player = new playerjs.Player( document.getElementById('kaltura_player') );
//listen to play start
player.on(playerjs.Events.PLAY, function(
console.log('play');
));
// call play to start playback:
$('#play-btn').click(function(){
player.play();
})
</script>