Questions tagged [signaling]

56 questions
1
vote
2 answers

How to deploy Apprtc's collider into Google App Engine?

I have deployed the apprtc's google app engine code on my own GAE server. I don't find instructions on how to deploy the Go based collider for websocket signaling. Here is the collider project:…
ssk
  • 9,045
  • 26
  • 96
  • 169
1
vote
0 answers

How can WebRTC signaling state be saved on a server

Recently I have read a article about WebRTC in the real world, it said that JSEP's architecture also avoids a browser having to save state: that is, to function as a signaling state machine. This would be problematic if, for example, signaling…
Joey Tang
  • 103
  • 1
  • 4
1
vote
1 answer

Is it possible to show WebRTC peers only from a local network?

It's more of a signaling issue than WebRTC, but is it somehow possible to find computers only within the same local network? E.g. would it be possible to create a service similar to OS X AirDrop, where you could go to page e.g. https://airdrop.com…
szimek
  • 6,404
  • 5
  • 32
  • 36
1
vote
3 answers

Signaling between threads

Application design I have a c++ application that has a producer thread, multiple queues (created during run time) and consumer thread. Producer thread gets data via Tcp/Ip and puts into the respective queue (for E.g., if data is type A and put…
sanju
  • 11
  • 2
1
vote
3 answers

WebRTC Firefox to Chrome video call not working

My WebRTC app works fine when I connect two of the same browsers, but when I try a combination neither respond to each others signaling messages. Something probably worth mentioning is that I have not implemented TURN, however I don't see why that…
user1890615
1
vote
1 answer

Any resource about signaling process

I am using Socket.io to implement a signaling process, such as connect, call, answer, reject, etc... and also onUserCalling, onUserRejected, etc... I don't know what is the best way to handle the all statuses, for example, if A is calling B, at that…
Kos
  • 61
  • 6
0
votes
1 answer

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 over a websocket (therefor TCP). What about if…
TSG
  • 4,242
  • 9
  • 61
  • 121
0
votes
1 answer

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 way to archive this? If yes, please give me a…
0
votes
0 answers

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 NO communication between a third server. What I…
Aaron
  • 1
  • 1
0
votes
1 answer

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)
0
votes
0 answers

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 wrong. I would appreciate any comment or…
Juan Gil
  • 21
  • 1
  • 4
0
votes
1 answer

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 method which can increase the…
0
votes
1 answer

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 communication. Example: Suppose User1 , User2 and…
user2986042
  • 1,098
  • 2
  • 16
  • 37
0
votes
1 answer

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 working working in this setup?
durgesh
  • 11
  • 4
0
votes
1 answer

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 exception functionalities via fenv.h, however that…