0

I am using Angular cli --ssl to run it on HTTPS.

this.api.setupVideoCall('localVideo','remoteVideo',true)

enter image description here

I was following mesibo javascript basic demo app as a reference. Above code is called without any error but still local video working properly, remotevideo is not working. Please help with this as soon as possible.

B.S.
  • 668
  • 1
  • 5
  • 15

1 Answers1

0

Seems like a browser security issue. You get media access (camera and microphone), you must run using the HTTPS URL and you MUST also use a valid certificate with recognized authority, the self-signed certificate will not work.

This restriction is by the browsers and not by the mesibo. Refer Mozilla documentation here.

https://developer.mozilla.org/en-US/docs/Web/API/MediaDevices/getUserMedia

mesibo
  • 3,970
  • 6
  • 25
  • 43
  • Thanks for your quick response. I have already tried using HTTPS URL, It's not working. any other solutions, – user15046230 Jan 21 '21 at 12:07
  • Not only HTTPS, but you also need a valid certificate, self-signed certificate will not work. If that's not an issue share URL here so we all can see – mesibo Jan 21 '21 at 15:06