CloudWebRTC
CloudWebRTC
可以试试用xcode 打开,用性能分析看看执行add audio track 是否有高占用代码或锁竞争
Ah, this issue looks strange, have you tried to use visual studio debug?
@elonmaph you can try this branch https://github.com/livekit/client-sdk-flutter/pull/509, and change `VideoTrackRenderer` like this. ```dart VideoTrackRenderer( _videoTrack!, fit: RTCVideoViewObjectFit.RTCVideoViewObjectFitContain, renderMode: VideoRenderMode.platformView, ) ```
fixed https://github.com/livekit/client-sdk-flutter/pull/518
I should try to implement them in the next few months, which is related to native layer audio/video processing.
This usually requires clearing the pod cache, Please refer to the steps below 1) Make sure `platform :ios, '12.1'` is in `ios/Podfile` 2) Run the following commands ``` flutter clean...
This can be fixed in the future by disabling the HW codec on specific devices
fixed the label get for Wired Headset https://github.com/flutter-webrtc/flutter-webrtc/pull/1305
However, due to the device control mechanism of the Android system, when the input is selected as Wired Headset, the audio output must also be selected as the same, otherwise...
My idea is to notify the default device to be switched to `currentDevice` through `onDeviceChange`. This event will be triggered when a wired headset is plugged in. The Android system...