59 questions
0
votes
1
answer
74
views
webRTC - Failed to set remote answer only for public (LAN or same access point works fine)
I use RTCMulti and all works fine if i use my own wifi point.
I have running turnserver.
For public not work.
Error can be :
InvalidStateError: Failed to execute 'setRemoteDescription' on '...
0
votes
1
answer
117
views
Issues with Handling Remote Tracks and Updating UI in WebRTC Peer Connections
I'm working on a WebRTC application where I need to handle remote tracks and update the UI for each participant. I’ve encountered several issues with handling remote tracks, updating the participant ...
1
vote
1
answer
829
views
Nextcloud Talk Failed to establish signaling connection. Retrying error only appears on chrome browser
After migrating from the old to the new signaling server, I'm experiencing an issue with Talk when I try to use it i get the "Failed to establish signaling connection. Retrying..." error on ...
0
votes
1
answer
695
views
Signaling in SIPJS over UDP
I realize that media will run over UDP with a webRTC connection, but what about signaling? Does it require TCP or can it run over UDP? All of the examples using SIPJS I could find run the signaling ...
0
votes
1
answer
643
views
How to do signaling in WebRTC without using WebSocket or http or mail
As far as I search, All WebRTC handshakes are done through any signaling server [ HTTP, WebSocket, etc..] even through Mail or Whatsapp.
But I expect to connect without using any of them. Is there any ...
0
votes
0
answers
1k
views
WebRTC Peer to Peer without ICE / STUN / TURN but with SSH
Let's say I have access to a server via ssh and my own laptop. However, I wish to use webrtc to transmit data via a peer connection for it's ultra low latency over UDP. It's also crucial that I have ...
0
votes
1
answer
305
views
Can using a dht replace the use of signaling servers in P2P networks holepunching?
While learning about p2p networks I found out that P2P networks need signaling servers but can modern DHT replace the need for signaling servers? (Holepunching mainly)
1
vote
0
answers
168
views
CodenameOne WebRTC CN1LIB Serverless, Manual Signaling
I am trying to breakdown the process of the webrtc signaling using the PeerConnectionStates Demo by copying the signaling strings manually like as in here Youtube:https://www.youtube.com/watch?v=...
0
votes
0
answers
159
views
WebRTC connectiong only send one candidate
I am new coding in Javascript.
I am creating a WebRTC connection between my iPhone and my browser.
The connection works but my code only send one candidate and I don't know if I am doing anything ...
0
votes
1
answer
199
views
How to find local maximum (minimum) more accurate in python?
I'm wondering when using Scipy api (as the code below) to find the local maximum and local minimum, the result (as the picture attached) are seems to be not accuracy as imagine. Is there any tips or ...
1
vote
1
answer
836
views
Can i re-use webRTC Peer Connection object for Multi user chat?
I have used WebRTC for my chat application. My idea is whenever any user has joined in the chat application then a new RTCPeerConnection object will create. The chat room will allow only one-to-one ...
1
vote
1
answer
655
views
Signaling between WebRCT client and SFU
If a client A, wants to connect to 2 other end points B and C. How does A initiates call with B and C using SFU. I mean, how will A communicate to SFU that it needs to connect to B and C? How is ICE ...
0
votes
1
answer
1k
views
How do I get C++ signaling_nan() to throw an exception, without needing if tests?
I am trying to use signaling_nan() to automatically throw an exception if a variable whose value will be set post-initialization, is used before being set.
I have tried using the floating point ...
2
votes
0
answers
992
views
WebRTC setRemoteDescription Session is Null error in flutter
So, I was trying to write a webRTC mobile app. Caught some error.
import 'dart:convert';
import 'package:flutter/material.dart';
import 'package:flutter_webrtc/flutter_webrtc.dart';
import 'package:...
1
vote
0
answers
419
views
What is the correct approach to storing a WebRTC connection for later use?
I'm working on implementing a distributed hash table using WebRTC and IndexedDB, and I ran into an issue I can't quite find the correct solution for. I have a simple application I've been using to ...