Kai
Kai
The WebRTC.xframework compiled after the m104 release no longer supports iOS arm devices, so need to add the config.build_settings['ONLY_ACTIVE_ARCH'] = 'YES' to your ios/Podfile in your project ios/Podfile post_install do...
@sagarstackapp try using this [iceServers](https://github.com/waterbustech/waterbus-flutter-sdk/blob/main/lib/constants/webrtc_configurations.dart)
I recently developed an online meeting application and has a virtual background feature. It is developed using [MediaPipe](https://developers.google.com/mediapipe) for Android and [VisionKit](https://developer.apple.com/documentation/vision/vngeneratepersoninstancemaskrequest) for iOS. Currently, the ability to separate person...
@sollarp Thank you for your support. @mehrdadpasiyann We neglected this project for quite a while, because of some factors, I think it's small enough for a reference project. In addition,...
Hi, I found this [article](https://blog.nextideatech.com/openai-gpt-3-5-turbo-instruct/) and it says that `gpt-3-5-turbo-instruct` is another model not alternative for `gpt-3-5-turbo`, so I think you need to keep `gpt-3.5-turbo` and add the new one...
Could you please give me the error logs in details?
yes, it's my mistake, thank you @TimRivoli. I'll fix it tomorrow.
Let's create a class that extends `RTCVideoCapturerDelegate`: ```swift // // RTCVideoPipe.swift // flutter_webrtc // // Created by lambiengcode on 06/03/2024. // import Foundation import WebRTC @objc public class RTCVideoPipe: NSObject,...
Same on Android 11T (21081111RG) works well with CPU delegate but catch "Batch size mismatch" error when modify to GPU. I use this device and use mediapipe studio demo, when...
try edit file [MethodCallHandlerImpl.java](https://github.com/flutter-webrtc/flutter-webrtc/blob/main/android/src/main/java/com/cloudwebrtc/webrtc/MethodCallHandlerImpl.java): import: ```java import org.webrtc.voiceengine.WebRtcAudioManager; import org.webrtc.voiceengine.WebRtcAudioUtils; import org.webrtc.voiceengine.WebRtcAudioEffects; ``` ```java AudioAttributes audioAttributes = null; if (androidAudioConfiguration != null) { Integer usageType = AudioUtils.getAudioAttributesUsageTypeForString( androidAudioConfiguration.getString("androidAudioAttributesUsageType")); Integer contentType...