I just built something using the base of the SIP test demonstration, but I’m having trouble with something that isn’t supposed to be hard: muting/unmuting the microphone. I tried using this:
janusInstance.getSipCall().send({ message: { request: “set”, audio: !isMicMuted } });
and many other things.
Could you please help me with this?
Thanks a lot in advance.
Muting the microphone is something you do locally, with no need to involve the API. A few other demos (like the VideoRoom) have a “mute” button, so you can check how they implement the feature and do the same in the SIP application.
Thank’s a lot work perfectly