Load event · Flowplayer
<head/>
<script>
$(function() {
$(".player").flowplayer("//releases.flowplayer.org/5.3.2/flowplayer.swf", function() {
console.info("init", arguments);
}).bind("load", function() {
console.info("load", arguments)
});
flowplayer().bind("load", function() {
console.info("load2", arguments);
});
});
<body/>
<div class="player" data-ratio="0.4167">
<video>
<source type="video/webm" src="http://stream.flowplayer.org/bauhaus/624x260.webm"/>
<source type="video/mp4" src="http://stream.flowplayer.org/bauhaus/624x260.mp4"/>
<source type="video/ogg" src="http://stream.flowplayer.org/bauhaus/624x260.ogv"/>
</video>
</div>