2

Please Could you help me for solving my problem.I am using the ngx-agora package in angular 10+ version that package is working fine before 1 month but now it's creating the issue.

Whenever we try to make a video/audio call or try to join into a room for video/audio call, we get an error This browser doesn't support webRTC.

2 Answers2

0

The issue you are facing is because of a recent update with Chrome browsers. You will need to update to the latest version of the Agora Web SDK. Since you are using the open-source community NGX wrapper, you will want to use Agora Web v3.6.10, don't use 4.x because it has breaking changes to the API that will cause issues when used in the Angular/NGX wrapper.

Agora SDK Downloads Page
3.6.10 Release Notes

Hermes
  • 2,828
  • 2
  • 14
  • 34
  • 1
    Thanks using latest build of sdk worked for me – Nikita garg Apr 12 '22 at 14:19
  • Can you please help me about the video controls. I am not able to fetch the controls to pause video and enable/disable the camera during video call. – Nikita garg Apr 13 '22 at 15:15
  • The video stream is live so there isn't a concept of pausing the video, but you can control mute/unMute the video. use the `this.localStream.` to get the local stream. use `muteVideo` to disable the camera https://docs.agora.io/en/Video/API%20Reference/web/interfaces/agorartc.stream.html#mutevideo and use `unMuteVideo` to enable https://docs.agora.io/en/Video/API%20Reference/web/interfaces/agorartc.stream.html#unmutevideo – Hermes Apr 13 '22 at 21:22
  • @Nikitagarg did this information help you? or do you have any more questions? – Hermes Apr 20 '22 at 16:29
0

Use AgoraSDK 3.6.10 but my suggestion is to upgrade your code to agora4. AgoraSDK3.6.10

Sajeed Kannoje
  • 931
  • 1
  • 5
  • 13