Questions tagged [simplewebrtc]

SimpleWebRTC is an open source javascript library for joining and managing mesh p2p WebRTC conferences. Questions using this tag should be specific to this library.

Questions about the SimpleWebRTC library should use the simplewebrtc tag.

WebRTC is a technology stack for establishing (S)RTP and SCTP streams between peers. Peers are normally browser sessions.

p2p means "peer to peer," indicative of a transport between peers without a server or translation layer in the middle.

SimpleWebRTC normalizes browser API differences for peer connections and user media access. The library manages multiple RTCPeerConnections to provide a clean API for joining mesh (fully connected graph of p2p sessions) "rooms."

See https://simplewebrtc.com/ for more information and demos. See https://github.com/andyet/simplewebrtc for source code and issues.

159 questions
0
votes
1 answer

how to specify max frame rate, width and height, and quality of webrtc videos?

I want to decrease the quality of videos in WebRTC using SimpleWebRTC, How can I do that? I did this but doesn't work properly: var webrtc = new SimpleWebRTC({ localVideoEl: 'localVideo', remoteVideosEl: 'remoteVideo', autoRequestMedia:…
Arya Basiri
  • 177
  • 2
  • 14
0
votes
1 answer

Using Primus instead of socket-io with simplewebrtc

I want to use Primus instead of socket-io with simplewebrtc. Can any one help me to convert the below code to use Primus? https://github.com/andyet/SimpleWebRTC/blob/master/socketioconnection.js
0
votes
0 answers

Audio played back in android Webrtc

Hey Android webrtc peeps. I am working on android webrtc audio calling and the audio quality seems to be great. I have managed to somehow eliminate the echo using AEC. However, sometimes I hear my voice being played back to me and I have no idea…
-1
votes
1 answer

How to reconnect a connected webRTC peer to another peer?

I have my client A and client B connected to each other. However I wish to disconnect my client A and connect it to client C. How can I achieve that?
Hypothesis
  • 1,208
  • 3
  • 17
  • 43
-1
votes
1 answer

about running WEB Rtc sample

I cloned the files from google Lab where it says try the live demos. then I installed npm and i tryied to find the index.js which triggers the program to start, but there were few files which are gulpfile.babel.js / nightwatch.conf.js. Before try…
StevePark
  • 123
  • 2
  • 10
-1
votes
1 answer

How to add add audio tracks to a mediaStream object?

I came up with the idea of ​being able to record the lectures I make with other pairs so I can download them later, according to my theory, the simplest way would be to record the screen sequence and add the remote audio tracks. Try using…
-1
votes
1 answer

WebRTC more than one peer connection

I searched almost everywhere and can't seem to find any resource on this scenario for some reason. Any help would greatly be appreciated. The problem is this: I have 4 users. Lets say: A,B,C and D. I want to match them according to url. For…
user4709059
  • 125
  • 1
  • 8
-1
votes
1 answer

How to recording current screen(not open popup) and audio by muaz-khan WebRTC-Experiment webrtc

muaz-khan WebRTC-Experiment How to edit the extension to be as I want Thanks
-3
votes
1 answer

Getting video stream from different pages WebRTC

Can we get all the video stream of peers on one page, and peer would be streaming it from any other page. The diagram explain the rest graphical representation
1 2 3
10
11