52 questions
0
votes
0
answers
23
views
Bug Report: Foreground Service Crash on Android 14+ (API 34+) with mediaProjection due to Missing Permissions
When attempting screen sharing using flutter_webrtc on Android 14 (API 34) or higher, the app crashes with a SecurityException because the required foreground service permissions for mediaProjection ...
1
vote
1
answer
135
views
Install flutter webrtc=
When i install a package of flutter_webrtc and i run my emulater they show me this error
unching lib\main.dart on Android SDK built for x86 in debug mode...
C:\AppData\Local\Pub\Cache\hosted\pub.dev\...
0
votes
0
answers
38
views
How to use Flutter RtcVideoRenderer object in Android native activity
In my Flutter app I created separate Flutter plugin to keep all call feature separate. This plugin has signaling server and web RTC implementation in Flutter. One of the reason to create this plugin ...
0
votes
0
answers
36
views
Flutter-webrtc for calling not working in public network with my own coturn configured server on my ubuntu computer having public IP
My flutter-webrtc app is working in local network but in public network it is not working even i configured coturn server on my computer which I choose a computer with public IP to be stun/turn server....
0
votes
0
answers
70
views
Rendering H.264 video failed on Android
I am using this library for live streaming my camera's feed which uses video-codec H.264 and audio-codec ALAW. I am able to create the RTC peer connection successfully and receive both audio and video ...
0
votes
1
answer
101
views
RTP Header Extension in Flutter
I am building an app with Flutter and struggling to implement a RTP Header Extension.
I am currently sending a video stream from my app to a server and would like to add metadata (a dict with several ...
0
votes
0
answers
49
views
Flutter Webrtc - Sending MediaStream between Isolates
Is it possible to send MediaStream between isolates?
Since only primitive types can be directly transferred between isolates, I've implemented the following extensions to handle this:
MediaStream ...
0
votes
0
answers
84
views
How to Keep SIP Calls Persistent in Background in Flutter Using flutter_foreground_task?
I'm developing a Flutter application that needs to keep SIP calls persistent even when the app is killed. I've been using the flutter_foreground_task plugin to achieve this, but I'm encountering some ...
0
votes
0
answers
56
views
RTCVideoView Crashes Application Under Certain Constraints
The RTCVideoView widget from the flutter_webrtc package causes the application to crash when the available dimensions (height or width) fall below certain thresholds. This issue appears to occur ...
0
votes
0
answers
159
views
onTrack not getting called in flutter_webrtc package
I am trying to integrate a video calling feature in my app which would have flutter app on one end and angular web app on the other side (caller would be user with angular website and receiver would ...
3
votes
0
answers
395
views
Can't connect Flutter Webrtc to a Chrome Client
No matter what I do, I just can't seem to connect Flutter Webrtc to a Chrome client. I can confirm the ICE candidate and SDP were exchanged successfully.
I'm debugging with a Physical Android phone
I ...
1
vote
1
answer
400
views
Share Screen with Flutter WebRtc
I am using Webrtc in flutter to share my screen.
i have this code
Signaling {
RTCVideoRenderer localRenderer = RTCVideoRenderer();
RTCVideoRenderer remoteRenderer = RTCVideoRenderer();
...
0
votes
1
answer
184
views
How can we set bit width(bits per second) for PCMU codec audio in webrtc in flutter?
I am using flutter_webrtc package for streaming video from a camera. There is a requirement to implement a two way communication in which the user can speak through the mobile and the audio can be ...
0
votes
0
answers
255
views
How to use setCodecPreferences in flutter webrtc to set PCMU as audio codec?
I am using flutter_webrtc package for streaming video from a camera. There is a requirement to implement a two way communication in which the user can speak through the mobile and the audio can be ...
1
vote
0
answers
81
views
Remote video rendering is only depend on SDP answer?
I am creating meeting app using Flutter(flutter_webrtc). The local and remote video is stream and display in Android, Web and Windows. In iOS and macOS the remote video is not stream and display. Here ...