Questions tagged [flutter-webrtc]
45 questions
4
votes
1 answer
flutter crash when using flutter-webrtc
I use the following code for video calling using flutter-webrtc package, this code works in the web, but it crashes in Android
Everything is updated and I use the latest versions of all the tools. and I set the compile Sdk Version to 32
import…

shapoor molaee
- 101
- 5
3
votes
1 answer
flutter webrtc RTCPeerConnection.addStream not working
Friends, I want to develop an application for Flutter using webrtc, but unfortunately I am facing problems that I am not able to solve.
errorCode: AddStream is not available with Unified Plan SdpSemantics. Please use AddTrack…

EbrahimAghdasi
- 61
- 5
3
votes
1 answer
Why is my `flutter_webrtc` peer connection always failing?
I'm stuck in establishing a WebRTC connection. I've successfully established WebRTC connections on several web applications using this signaling flow but I'm stuck in flutter. I'm using the flutter_webrtc package and here's my signaling flow -
//…

Piyush
- 693
- 1
- 7
- 12
2
votes
0 answers
Flutter WebRTC MediaStream Track mixing
I am using sip_ua dart package for VOIP phone calls.
I achieved one to one calls using sip.
Server used : Asterisk
Now I am trying to achieve conference calling for Android & iOS App.
https://github.com/flutter-webrtc/dart-sip-ua/issues/189
Need…

KDOSHI
- 309
- 4
- 15
2
votes
1 answer
flutter-webrtc is not working in phone but working in browser
the flutter_webrtc work on browser but on phone it is not working.
in debug console it gives
***I/org.webrtc.Logging( 5106): EglRenderer: Duration: 4001 ms. Frames received: 46. Dropped: 0. Rendered: 46. Render fps: 11.5. Average render time: 1359…

Jeevan Shrestha
- 117
- 7
2
votes
0 answers
Flutter WebRTC can't create datachannel
I'm trying to create WebRTC datachannel with flutter_webrtc package but have some Issues.
What I'm doing:
I'm creating RTCPeerConnection? _peerConnection;. I have working video and audio stream.
But then I'm trying to add dataChannels.
On Offer side…

Marvin Heemeyer
- 133
- 9
2
votes
0 answers
multiple webRTC replaceTrack() calls for swapping two video streams
I'm making a video call application with two video sources: camera / screen record,
and let the users switch camera <-> screen record multiple times during a call.
RTCRtpSender.replaceTrack() allows me to replace the camera stream with the screen…

user987654
- 5,461
- 5
- 23
- 26
1
vote
0 answers
Flutter webRTC video/audio calls terminates on back button tap
I have used [flutter_webrtc][1] for video and audio calls in my application. I have implemented it successfully. And everything is going well but in one case I am facing a problem with one functionality like WhatsApp.
For ex:
If 2 people making a…

Sagar R Anghan
- 220
- 1
- 10
1
vote
0 answers
flutter app exit before build while using webrtc
I'm working on a Flutter project that involves WebRTC functionality using the flutter-webrtc package. However, whenever I try to build the app, it crashes before even launching. I have tried running the app on both Android and iOS devices, but the…

Jeevan Shrestha
- 117
- 7
1
vote
1 answer
Flutter WebRTC Audio Issue in iOS
Flutter WebRTC video call voice is not hearing in iPhone speaker
Getting UnimplementedError when I use _localStream.getAudioTracks()[0].enableSpeakerphone(true);
I have using flutter_webrtc: ^0.9.24 package for video call. it's working fine in…

Ranjith Jith
- 21
- 1
- 5
1
vote
1 answer
Dart Sip Ua va Call Keep flutter vs Flutter_webrtc
I am familiar with webrtc and worked with it before. callkeep service can be used for managing calling states in mobile application but then what is the use case of dart-sip-ua. The documentation is not sufficient to distinguish between them
By the…

Yogesh Dubey
- 53
- 4
1
vote
0 answers
flutter webrtc remote stream
I am having a problem with onaddremotestream in flutter webrtc
I am following this guide https://github.com/cyb3rcod3/flutter-openvidu-demo
trying to integrate flutter with openvidu…

Mus'ab Hajabi
- 11
- 2
1
vote
0 answers
How to change status bar clock design
How to do like this in flutter I am using flutter/webrtc flutter/callkeep. I want to show onacitve call icon with green background when in webrtc call.
I can only change status bar background color

Orgil
- 251
- 4
- 19
1
vote
0 answers
How to send local stream to backend using flutter_webrtc?
I am creating some kind of streaming app on mobile phones. I am launching front camera and displaying it on phone. Main purpose is to send that footage to my backend and then display it on website.
How I am supposed to do this? I need some server to…

Karol Wiśniewski
- 378
- 4
- 15
1
vote
1 answer
Flutter video chat using WebRTC always getting RTCPeerConnectionStateFailed state
I am trying to make a Video Calling app using Flutter and Webrtc. I am using the webrtc plugin for flutter from https://pub.dev/packages/flutter_webrtc.
I have made two different projects, one does the calling, the other receives the call. I made a…

Ajith Kumar
- 21
- 4