You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You can check the state of mute / unmute on the remote or local media stream.
call.remoteStream.getAudioTracks()[0].enabled// true or false. call.remoteStream.getAudioTracks().forEach(track=>{track.addEventListener('mute',()=>{console.log(`${track.kind} track is muted`);});track.addEventListener('unmute',()=>{console.log(`${track.kind} track is unmuted`);});});
The SDK doesn't keep track of the call duration. That would have to be tracked by your implementation depending on the call state (active or on hold).
Id like to get information about the existing call to enable some functionality.
The text was updated successfully, but these errors were encountered: