Questions tagged [webrtc-android]

151 questions
2
votes
0 answers

How to track the person talking webrtc in android?

My problem is this. I want to keep track of the time other people are talking on webrtc. For example: PeerA, PeerB and PeerC is in one room. When peerA starts talking, I want to make any changes to the UI in PeerB and PeerC (for example, change…
2
votes
1 answer

WebRTC echo issues in Samsung S10, S21Ultra

We have an application which connects patient to doctor, doctor app is built on react, and patient app is build on Android. I am using OPUS as audio codec, and VP8 as video Codec in our webRtc based application, but there is an echo issues 100% of…
Nadeem Iqbal
  • 2,357
  • 1
  • 28
  • 43
2
votes
0 answers

Android WebRTC not receiving frames to display, getting 0 frames

I am attempting to receive video from a computer device camera to Android App. I am using Google's libwebrtc library. implementation("org.webrtc:google-webrtc:1.0.32006") I am making peer connection using a signaling server with REST Apis. I am…
2
votes
0 answers

Create org.webrtc.JavaI420Buffer from YUV420 ByteBuffer

Hi I am working on a live streaming solution where I need to edit the local video frame and send it to the connected peer, for this task I am…
Anuj J Pandey
  • 656
  • 1
  • 4
  • 17
2
votes
1 answer

Emulator shows black screen during a video call

I am testing a simple webrtc application and for that I do a video call using a browser. I have setup an emulator running Android R (10.0+) emulating Pixel 3 with 4 GB of ram and 6 GB of hard drive space. I made a call using the application between…
2
votes
0 answers

Web RTC Local audio issue

I am trying to implement a webrtc-based video chat room and I encountered the following problem. When the call starts and my local stream goes, I listen to my audio on my device before the other device receives it. The devices are far enough apart…
Matias
  • 21
  • 2
2
votes
1 answer

Webrtc Android: Screen Sharing stopped working on API 29 (Android 10)

In my app which was Targeting to Android API 28, screen sharing via. Webrtc was working fine. As per recent Google Guidelines(deadline for Target API 29 task is Nov 2, 2020), today I have changed the targetSdkVersion and compileSdkVersion to Android…
abhishek kumar gupta
  • 2,189
  • 6
  • 35
  • 56
2
votes
0 answers

Application crashed on closing peer connection appRTC android

I have implemented appRTC in my app but changed its flow to multiple guests with one host (like a conference meeting etc.). But the issue I am facing is when I disconnects from host side the app got crashed. It also shows different weird exceptions…
harperdev7
  • 153
  • 1
  • 7
2
votes
0 answers

How to use track.applyConstraints() to turn OFF torch from getUserMedia javascript on Android Studio Mega?

I have a Javascript web app using .getUserMedia(), .applyConstraints(), and related browser APIs to capture some video from mobile device web browsers and send it someplace with a websocket. The capture and send stuff is working well. I have…
O. Jones
  • 103,626
  • 17
  • 118
  • 172
2
votes
0 answers

How to reset video track renderer of remote media stream webrtc android

When the user comes to calling screen video track renderer has been set fine. Either user goes another activity or back activity without ending video call session, but when the user comes back to calling activity I've to set a remote media stream…
Syed Bilal
  • 81
  • 5
2
votes
1 answer

How to track the resolution/aspect ratio of a WebRTC remote VideoStream?

I have develop an android application which implement native WebRTC for video chat and i would like to present the remote video resolution and other video information but i was not able to find an WebRTC API for android that is providing this…
Zion Cohen
  • 182
  • 6
  • 19
2
votes
1 answer

Android (Kotlin) WebRTC - "Failed to parse: "". Reason: Invalid SDP line"

I'm working on integration of WebRTC into a project and using "implementation 'org.webrtc:google-webrtc:1.0.30039'". When I just use the example project from Google source https://webrtc.googlesource.com/src/, it works fine without any issue.…
2
votes
1 answer

Android webRTC video call inside a Background Service

Forgive me if this question was already asked, I couldn't find an answer for my case. So, I have an Android app with Voice & Video call feature. I used webRTC for this. I was able to make both Voice and Video call working perfectly inside an…
OussaMah
  • 817
  • 9
  • 19
2
votes
1 answer

WebRTC not creating IceCandidates for video

On an Android app I am trying to make a webRTC connection. When I am the callee I receive enough number of IceCandidates for video and audio from the socket connection. When my IceCandidates are created there are much fewer of them. Approximately 6…
Tahir Ferli
  • 636
  • 4
  • 16
2
votes
1 answer

'createVideoSource(boolean)' in 'org.webrtc.PeerConnectionFactory' cannot be applied to '(org.webrtc.CameraVideoCapturer)'

with google webrtc I've been facing this issue and this is the code for creating a video source private VideoTrack getVideoTrack() { this.capturer = createCapturer(); return factory.createVideoTrack("video1",…
MetalSaint
  • 53
  • 10
1 2
3
10 11