Questions tagged [webrtc]

21 questions
7
votes
1 answer

WEBRTC MCU/SFU inside kubernetes - Port Ranges?

I am using janus-gateway as a webrtc media server for group videocalling. Previously I had deployed it in a single node using docker-compose but now I want to be able to scale it horizontally. For this, I am trying to use kubernetes but I am facing…
Abdul Basit
  • 171
  • 1
  • 2
4
votes
1 answer

Firewall rules for WebRTC and STUN

I'm trying to get a WebRTC service running, through a corporate firewall. The service works on the local network, but it appears that the firewall is stopping it from working globally. I'm using a code example from the Python aiortc package, found…
Soren
  • 41
  • 1
  • 1
  • 3
2
votes
0 answers

Kubernetes and MCU, is it possible?

I'm new to Kubernetes and amazed by the potential, but I'm having quite a hard time to set my mind and think a solution to this: I'm trying to set a WebRTC MCU (Multipoint Conferencing Unit), all peers connect to a single server, server combine…
2
votes
1 answer

WebRTC vs one peer symmetric NAT

I read some documents about WebRTC nat traversal. I see that if one of the peers is behind a symmetric NAT, then a TURN server has to be used. I am wondering why shouldn't protocol allow traversal when at least one of the clients has public IP or…
akostadinov
  • 1,178
  • 1
  • 9
  • 18
2
votes
0 answers

WebRTC: Use of multiple STUN servers in iceServers property of RTCPeerConnection for fallback

The question concerns the behavior of fallback ice servers in the WebRTC context. Here is an example: myPeerConnection = new RTCPeerConnection({ iceServers: [ { urls: ["stun:…
asinix
  • 125
  • 6
1
vote
0 answers

how to configure xivo for WebRTC

I used this document to test the implementation of the webrtc on my website https://flashphoner.com/call-from-browser-to-mobile/ But I do not want to use their WCS5 server but my xivo pabx server. so I wanted to know what is the configuration that…
1
vote
0 answers

mariadb-libs is needed by turnserver

I am trying to install TURN server on centOS7 for one of my webrtc application. This TURN server would be used in a video calling application. I had followed below steps: yum install -y make gcc cc gcc-c++ wget yum install -y openssl-devel libevent…
newbie
  • 11
  • 3
1
vote
1 answer

Do I need STUN if only one party is behind NAT?

One party is connected through a symmetric NAT, other party can be accessed directly, and there is a STUN server. The parties are going to communicate via WebRTC. Both are configured to use that STUN server. Will it work? Do I need a STUN server…
Velkan
  • 344
  • 3
  • 19
1
vote
0 answers

WEBRTC peer connection blocked in UAE where as webRTC call to and from other countries works

I am using React Native WebRTC to develop p2p calling application. It works everywhere except UAE and maybe Middle East. I am using my own TURN server with port 4211 also tried TURN server with port 443 as mentioned in this answer. But that never…
ch3t
  • 111
  • 1
1
vote
0 answers

How to config coturn on Nginx for webRTC?

I am making a WebRTC application which is working fine on wifi. But when I open the app on my phone via 4G the webRTC livestream wont start. enter image description here It seems something is going wrong by making the iceConnectionState. For the…
Dominique
  • 11
  • 1
  • 4
0
votes
1 answer

Error with simpl5 on call to freeswitch (onGetUserMediaError)

I have been working on setting up an HTML5 client (sipml5 by doubango: https://www.doubango.org/). The infrastructure of my setup is shown below: Server 1: sipml5 client, served through ngnix and https. Server 2: webrtc2sip setup with doubango,…
Husk Rekoms
  • 217
  • 1
  • 4
  • 15
0
votes
0 answers

Packet loss with local WebRTC clients

I stream live audio to clients via WebRTC, and a streaming app called Barix on a local network for translated events. When there are more than 20 or so clients, the network undergoes significant packet loss at a start of the event, for the first…
Reedz
  • 1
  • 2
0
votes
0 answers

Which combinations of NAT requires TURN servers?

I wanna test my Webrtc app, as part of this, I need to test the app with different NAT Types. Here I'm not sure, in which combinations the TURN server is required for the below NAT Types: Full Cone Restricted Cone Port Restricted Symmetric I went…
0
votes
0 answers

COTURN Server not reachable

I am running a coturn server on my system,and am having trouble accessing it. The coturn server configuration is provided below. Note that the addresses for the relay-ip and the listenoing-ip are set to localhost (127.0.0.1). Other settings conform…
Factor Three
  • 101
  • 1
0
votes
0 answers

Best way to host a TURN server using Coturn

We are researching into what would be the best way to host several Coturn servers, around 3 instances for availability reasons. We need them because we are using WebRTC. We thought of hosting the servers inside a process/container orchestration…
Alecu
  • 101
  • 1
1
2