CloudWebRTC

Results 280 comments of CloudWebRTC

MediaRecorder is currently not stable and not recommended for use in a production environment.

I think we should implement Insertable Streams. This feature can support audio/video raw data export, import, or pass raw data through filters, I will open a new issue and try...

In another PR, I tried to call the global initialization operation when the invokeMethod was first invoked. Maybe we can add some special definitions to this map, such as forcing...

looks like this ```dart await WebRTC.initialize( options: { 'bypassVoiceProcessing': true, 'forceUseSWDecoder': true, 'logLevel': 'info', } ); ```

@ycherniavskyi Yes, it makes sense, we can do a plugin settings API, ```dart await WebRTC.initialize( options: { 'bypassVoiceProcessing': true, 'forceUseSWDecoder': true, 'logLevel': 'info', } ); await WebRTC.updateSettings( options: { 'bypassVoiceProcessing':...

The good news is that I have successfully run flutter-webrtc on Sony's flutter-elinux https://github.com/flutter-webrtc/flutter-webrtc/pull/741, and what I need to do in this branch is to create a layer of adaptation...

Please try the latest version https://pub.dev/packages/flutter_webrtc/versions/0.8.3

Yesterday I tested a related issue. If RTCRenderer is repeatedly created without calling dispose to release SurefaceHelper, it will cause DecoderQueue initialization to fail after accumulating for a certain period...

> What do you think about choose some common formatter rules (with configs for popular IDEs)? I used to add a clang-format styles file https://github.com/flutter-webrtc/flutter-webrtc/blob/main/.clang-format, but also need to add...

@ycherniavskyi It seems that iOS can't enumerate all audio outputs devices and can't select output devices, do you have any ideas? @ollydixon Perhaps we have to hand over control of...