Hi,
analog to peer-video-state-change, is there any possibility to check if a user has muted his microphone in Video SDK?
Best,
Hanno
Hi,
analog to peer-video-state-change, is there any possibility to check if a user has muted his microphone in Video SDK?
Best,
Hanno
Hi @hanwel you can use the user-updated
event. You’ll see an array of object with a “muted” property that you can use:
[
{
"userId": 33556480,
"muted": false
}
]
Thanks, Ekaansh.
That’s working great.