Mute

KWIKplayer can be set to load with the videos muted.

When this feature is set, the player will always load with mute on. Mute can still be removed by the user (if controls are enabled).

In order to activate this, a "mute" key needs to be added to the player's object.

mute takes a boolean variable of either true or false. When set to true, the videos will load muted. Else, they will load normally. When this key is not included, the default value for it is false.


 <script>
    kwikMotion("player", {
            sources: [          //video sources
                {file: "https://clvod.itworkscdn.net/itwvod/smil:itwfcdn/admin/515002-R204MDrB22W6kG8.smil/playlist.m3u8"},
                {file: "https://clvod.itworkscdn.net/itwvod/smil:itwfcdn/admin/515002-R204MDrB22W6kG8.smil/manifest.mpd"},
                {file: "https://clvod.itworkscdn.net/itwvod/smil:itwfcdn/admin/515002-R204MDrB22W6kG8.smil/Manifest"}],
            mute : true     //setting our player to load the video muted. 
        });
 </script>