160 questions
0
votes
0
answers
30
views
CallStyle notification in Kotlin
I've been working on a video conferencing sort of app that uses webRTC and Firebase. I have everything working as far as being able to add people to conferences and signaling servers and all of that ...
0
votes
0
answers
40
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
37
views
Google WebRtc Sdk Implementation with Android and SRS Server
I have some issue when I have setRemoteDescription, And the message showing like this:
"Failed to set remote answer sdp: The order of m-lines in answer doesn't match order in offer. Rejecting ...
0
votes
0
answers
26
views
Video Freezing on iOS When Calling from Android and Changing Dimensions
I have implemented video and audio calls using WebRTC. It works fine for iOS <-> iOS and Android <-> Android. However, when a user calls from Android to iOS and turns the video on and off ...
0
votes
0
answers
40
views
Android WebRtc - how to save video and audio in one file mp4
I created this post because I have an app in which one I do webrtc call.
I use this library :
https://github.com/GetStream/webrtc-android
I would like to know :
Is there a simple way to start to ...
0
votes
0
answers
20
views
"InvalidAccessError when setting remote description in WebView on Android VM"
I am currently working on a WebRTC project and encountering an issue when trying to set the remote description. My environment is an Android emulator running a WebView with version 95.0.4638.74. Below ...
4
votes
3
answers
320
views
Streaming screen record from WebRTC app - route audio to internal
TL;DR
How to route remote participants voice in WebRTC call so they can be treated as internal sounds by Streamlabs or similar streaming apps?
Long story
My game is using Google WebRTC library for the ...
0
votes
0
answers
32
views
Establishing WebRTC peer connection using existing connection tunnel
I have two WebRTC clients separated by rather complex network configuration. In time when connection between these clients can be established I have some sort of connection tunnel (supporting both TCP ...
0
votes
0
answers
25
views
Chrome displays the message "Unable to start camera" in a video conference through the Metered.ca iframe
I have developed a web application in C#/HTML/JS and I am using the embedded iframe feature from Metered Video SDK (metered.ca). The meeting is taking place with only 2 participants. Both are joining ...
1
vote
1
answer
307
views
How to use raw PCM audio data as a custom audio source in WebRTC on Android?
I'm integrating WebRTC into my project (using Java library), and as I can see, it can use pre-defined audio sources like microphone.
I've already implemented a custom audio source that generates PCM ...
0
votes
0
answers
37
views
Android WebRTC - How to release mic control from Android Wear OS App?
We have used WebRTC to implement audio call features to Android Wear OS devices. When call is in progress if the user tries use the Google assistance or any voice recorder, other apps don't get access ...
0
votes
0
answers
46
views
Android WebRtc with mediaProjection will be stutter/lag when move the app to background
My app work on Android TV, It seems all right when the app is in front.
I created virtualDisplay as below
mp.createVirtualDisplay("name", width, height, 300, DisplayManager....
3
votes
0
answers
644
views
Could not find org.webrtc:google-webrtc:1.0.32006
In my application I am using webrtc sdk but facing an issue, any help will really helpfull.
implementation("org.webrtc:google-webrtc:1.0.32006")
It syncing properly but while showing error ...
0
votes
0
answers
34
views
Android eglSwapBuffer() is slowing rendering leading to dropping frames
I have Android project using webrtc, using GL native code to draw video frames on a GL SurfaceViewRenderer.
The MediaCodec is decoding and feeding frame by frame. We create a SurfaceTexture which ...
0
votes
0
answers
96
views
WebRTC Android - Unable to get PeerConnection.Observer callbacks
I am trying to implement WebRTC sample and trying to get the ICECandidates from ICE Server in Android using WebRTC. I am not able to get the PeerConnection.Observer callback like onIceCandidate(). I ...