Open meljason opened 3 years ago
I have implemented the screenshare feature with the use of OT.checkScreenSharingCapability then published a stream on like so:
publisher = OT.initPublisher( 'screen-preview', { videoSource: 'screen', insertMode: 'append', fitMode: 'contain', width: '100%', height: '100%', })
But once I click on share screen, the mute audio button stops working.
This is how my mute-audio works:
export function toggleAudio(state) { publisher.publishAudio(state); }
How do I fix this?
I have implemented the screenshare feature with the use of OT.checkScreenSharingCapability then published a stream on like so:
But once I click on share screen, the mute audio button stops working.
This is how my mute-audio works:
How do I fix this?