LoginSignup
3
4

More than 5 years have passed since last update.

Brightcove Player(NGP)で音量をデフォルトミュートにする方法

Last updated at Posted at 2015-05-18

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>
3
4
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
4