CloudWebRTC

Results 295 comments of CloudWebRTC

hey, Is this issue more on Android or ios?

The session mode has been modified many times, and video or voice will have different side effects, so the final modification here is to export an audio mode setting parameter...

fixed https://github.com/flutter-webrtc/dart-sip-ua/commit/ec6617230a05fad7db8ff4024eeeb97ce600d5d7

Thanks @mikaelwills, this is great work. Before merging, we may need to do some checks 1. Make sure this patch does not affect Flutter Web because the browser does not...

hey @srnerturk, Are there any steps can reproduce this issue?

I think you need to call `_localRenderer.srcObject = _localStream;` in `setState` to notify flutter to update your widget. ```dart setState((){ _localRenderer.srcObject = _localStream; }); ```

> Seems that it also happens when both users are connected and windows one changes audio input/output. After the change, second user will hear this white noise for 1-2 sec....

It seems that firefox needs to run getUserMedia before it can get device.label https://stackoverflow.com/questions/46648645/navigator-mediadevices-enumeratedevices-not-display-device-label-on-firefox I did some experiments in dart-webrtc and confirmed this

This issue seems to have to be solved in the app, getUserMedia displays the video preview and then gets the device list.

@Parfyonator Here's a captureFrame method fix related to color bugs. maybe you can try if solves your issue https://github.com/flutter-webrtc/flutter-webrtc/pull/1258