i see this option also on https://meet.jit.si/mymeeting
I want to show the volume option in Jitsi external iframe API,
My question is related to https://github.com/jitsi/jitsi-meet/issues/5858
however, i m using jitsi using the external iframe API, how do i turn on this option so that all participants can lower or raise volumes for other participants?
My code looks something like this,
<script>
if ((typeof(JitsiMeetExternalAPI) !== "undefined") && (JitsiMeetExternalAPI === JitsiMeetExternalAPI)){
var domain = "mydomain.com";
var options = {
roomName: "community3",
configOverwrite: {
startWithVideoMuted:true
},
interfaceConfigOverwrite: {
filmStripOnly: true,
VERTICAL_FILMSTRIP: false,
MOBILE_APP_PROMO:false,
TOOLBAR_BUTTONS: [
'microphone', 'closedcaptions', 'desktop', 'fullscreen',
'fodeviceselection', 'profile', 'chat', 'recording',
'livestreaming', 'etherpad', 'sharedvideo', 'raisehand',
'filmstrip', 'invite', 'feedback', 'stats', 'shortcuts',
'tileview'
],
}
}
var api = new JitsiMeetExternalAPI(domain, options);
api.executeCommand('displayName',this.app.user.username);
if (this.app.user.username == "Guest") {
api.executeCommand('avatarUrl', "https://i.pravatar.cc/300"+"?v="+Math.random());
} else {
api.executeCommand('avatarUrl', this.app.user.picture);
}
} else {
location.reload();
}
My iframe looks like this, but i dont see the 3 dots to lower or raise volume of each participant, what am i doing wrong or what am i missing?
Tagging some helpful devs here, @saghul @rishabhchd19 @Fuji @hkhait @Cuong_Quyet_Nguyen @damencho