This message was deleted.
# helpdesk
s
This message was deleted.
b
Any update? I found Audiosession function but it does nothing. I want to mute whole room at once.
e
have you tried setting the volume of the audio track? https://docs.livekit.io/client-sdk-js/classes/RemoteAudioTrack.html#setVolume
b
Copy code
const muteAudioOutput = () => {
    setMuted(prev => !prev);
    room?.participants.forEach(participant => {
      participant.setVolume(0);
    });
};
I did this and still there's no change in volume