Questions tagged [rtcpeerconnection]
140 questions
3
votes
1 answer
Webrtc Android DTMF Support
I am trying to implement DTMF for Android/iOS Application based out on WebRTC.
Is there any API for DTMF for Android? I have tried calling the…

Aagman
- 684
- 6
- 18
3
votes
1 answer
Unable to fetch IP V4 address from RTCPeerConnection - chrome
I need to fetch the client local IP address from a web application.
For which I am using a standard RTCPeerConnection implementation to fetch. But the ice candidate that is returned does not carry the IP V4 address, but an address that look like a…

Neo
- 115
- 1
- 10
3
votes
2 answers
addIceCandidate with argument null result in error
I am trying to learn WebRTC, I had achieved connecting two RTCPeerConnection in same page and I am now attempting to separate them into two separate pages and connects them.
However, after code are written and exchanged offer and answer, I noticed…

8749236
- 444
- 7
- 12
3
votes
2 answers
How to destroy RTCPeerConnection?
I can use the following code to create a new peer connection object:
var peer = new RTCPeerConnection();
When this happens, chrome shows it as new connection object in chrome://webrtc-internals/
I would like to destroy this object later. How to do…

Tomas M
- 6,919
- 6
- 27
- 33
2
votes
0 answers
How to share a screen from one page to the other web page using webRTC and signalR?
Here's the scenario, I have 2 Urls, let's say
Url 1 - http://mydomain/teacher/dashboard
Url 2 - http://mydomain/students/workspace
In Url 1 is where the user can only share the screen and needs to be shared or broadcasted to the other url page which…

timmack
- 590
- 2
- 12
- 43
2
votes
1 answer
WebRTC - What is the proper way to create RTC Data Channel?
I work on WebRTC JS app and stcuk at a point where I need to crete a data channel. I have this part of code which actually works but openRTCDataChannel method is being executed twice:
…

SuperYegorius
- 754
- 6
- 24
2
votes
0 answers
Audio Call Stops working when Android App goes in Background and device is on Battery Saver Mode
My question is more like client side.
I am using Janus AudioBridge Room to make audio call.
Android app works fine in foreground and background mode if device is not on Batter saver mode.
But when device is in Battery saver mode. App gets hold while…

Sajid Zeb
- 1,806
- 18
- 32
2
votes
0 answers
RTCPeerConnection - MediaStreamTrack has only black frames when restreaming it from external source
I'm currently working on a library that sends a MediaStreamTrack from one electron window to another one via an RTCPeerConnection.
The problem I currently have is that everything works fine except remote tracks. A MediaStreamTrack of my camera is…

sapkra
- 21
- 3
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 get multiple streams in a peerConnection
Hello I am going to create a surveillance system. I would like to get a webcam video and a shared screen, but using addtrack will only get the media stream I declared later. Is there any way to get both streams.
thanks.
here is code offer side
let…

신재익
- 21
- 1
- 2
2
votes
0 answers
Need to capture data from RTCPeerConnection.getStats() using selenium python [webRTC]
I have created an application using python selenium-webdriver where 1st browser say(FF) initiates a video call and another browser say (Chrome) accepts the call and starts exchanging Audio and Video data.
While the active video call, I want to…

Shubham Goel
- 21
- 2
2
votes
1 answer
Unable to play a remote video using webRTC in angular 8
I am trying to play webRTC videos in chrome using angular. I am having IP cameras and I am converting their RTSP Streams to webRTC using Wowza Streaming Engine.
Wowza has shared a sample index.html which uses webrtc.js github link for these files to…

Aak
- 269
- 4
- 16
2
votes
1 answer
Should empty string icecandidate be added by addicecandidate?
My question is about webrtc negotiation.
There is a contradiction in many online tutorials and what is described in MDN.
In MDN, it says link
At the end of each generation of candidates, an end-of-candidates
notification is sent in the form of an…

Sang
- 4,049
- 3
- 37
- 47
2
votes
2 answers
rtcpeerconnection track event sometimes returning empty stream
What is the best approach for setting up an RTC connection that will success the first time ?
The following code sometimes works, sometimes doesn't. I think it's a problem with addIceCandidate being called either before or after createAnswer, and I…

B''H Bi'ezras -- Boruch Hashem
- 3,665
- 3
- 33
- 83
2
votes
1 answer
Javascript WebRTC Failed to set remote answer sdp: Called in wrong state: kHaveRemoteOffer and Called in wrong state: kStable
I can't get my WebRTC code to work properly.. I did everything right I believe and it's still not working. There is something strange why ontrack gets called so early maybe it's suppose to be like that.
The website uses javascript code, the server…

SSpoke
- 5,656
- 10
- 72
- 124