Brightcove Playerとは
VideoJSのAPIやプラグインを拡張したプレイヤー
http://www.videojs.com/
Developer Docsはこちら
http://docs.brightcove.com/en/video-cloud/brightcove-player/index.html
やりたいこと
プレイヤーロード後に音量をデフォルトミュートにしたい。
<script id="script" type="text/JavaScript">
videojs("PlayerId").ready(function(){
var player = this;
player.muted(true);
});
</script>