Name is required.
Email address is required.
Invalid email address
Answer is required.
Exceeding max length of 5KB

How do I mute a playlist


I have two playlists created with a custom player. I need to mute the video. Is there a way to do this. My embed code is

<script type="text/javascript" src="http://content.jwplatform.com/players/4u8P6Cjq-R9TljpB9.js"></script>

1 Community Answers

Andrew

JW Player Support Agent  
0 rated :

You can use our API for this by using:

jwplayer().onReady(function(event){
jwplayer().setVolume(0);
});

below your platform embed. Alternatively, we should be adding mute functionality to platform in the near future. You can then configure this via the JW Platform interface.

This question has received the maximum number of answers.