I'm using Sinch javascript SDK to build a browser to browser video calling app. When the video call is ended with a call to call.hangup();
in chrome (at least) the red camera icon is still visible with the message "This tab is using your camera or microphone".
How can I hide this warning after the call has ended? Is there a call in the Sinch SDK I should be making, or something in the underlying WebRTC framework?
I'm using Sinch javascript SDK to build a browser to browser video calling app. When the video call is ended with a call to call.hangup();
in chrome (at least) the red camera icon is still visible with the message "This tab is using your camera or microphone".
How can I hide this warning after the call has ended? Is there a call in the Sinch SDK I should be making, or something in the underlying WebRTC framework?
Share Improve this question asked Oct 6, 2017 at 17:39 Jonny LeighJonny Leigh 1252 silver badges8 bronze badges 1- I found this github ment to be helpful: github./streamproc/MediaStreamRecorder/issues/… – raksheetbhat Commented Apr 12, 2019 at 8:17
2 Answers
Reset to default 6You need to ensure that all MediaStreamTracks are stopped. If you have access to the stream from getUserMedia, doing this should help:
stream.getTracks().forEach(t => t.stop())
I found the following was required:
sinchClient.stopActiveConnection();