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

WebRTC: Connection swap displays black video

I'm trying to make a random system of connections. I have a button that initiates a connection and also looks for new peer for a new automatic call. But it is intermittent, sometimes it works perfect, sometimes I do not know anymore. Backend -…
luisdemarchi
  • 1,402
  • 19
  • 29
0
votes
1 answer

How to embed webrtc video call application from a https website into my website

I am working on WebRTC video call using Twilio and Firebase as described in this blog post. My website (e.g. http://example1.com) doesn't have SSL certificate and so this application cannot use my camera and microphone. So I am thinking of getting…
0
votes
0 answers

Signalling server, webrtc , android to android adhoc network

Hello everyone, I have implemented the following demo on my android phone (Video broadcast for android, https://github.com/muaz-khan/RTCMultiConnection/blob/master/docs/ios-android.md#cordova-demos) . Now i want to find out the…
0
votes
1 answer

WebRTC not working behind a VPN

The video chat works with most users, but I couldn't get a video chat to work with one of the user of my website. She couldn't see me, and I couldn't see her. I don't have any details how it failed like if it was at the SDP negotiation, or if she…
Dan P.
  • 1,707
  • 4
  • 29
  • 57
0
votes
0 answers

how can i create webRTC with 2 pc's?

I am completely new in WebRTC concept in PC's . I want to check and working of a simple WebRTC concept . I searched lot of document i got 2 source code . One is SimpleWebRTC https://github.com/andyet/SimpleWebRTC & another is easyrtc…
user2986042
  • 1,098
  • 2
  • 16
  • 37
0
votes
0 answers

Customizing SimpleWebrtc

I'm using simplewebrtc for my webrtc project. Is there anyway I can mute another person's audio whenever I want and unmute it? Is there anyway I can get the stream of a particular user in a room and not of the rest in the same room? window.onload =…
marukobotto
  • 759
  • 3
  • 12
  • 26
0
votes
0 answers

Webrtc Mix microphone output & mp3 into a single stream

I am creating a webrtc based chat application. (getUserMedia apis). Trying to achieve this: 1)choose a mp3 file(local file OR web url) which is like a background music & sing a song. 2)The user at the other end should be able to hear both of these…
0
votes
2 answers

Can I receive video without giving permission to browser to use my camera in SimpleWebRTC?

Does SimpleWebRTC has this feature to get data(video/audio) without giving permission to browser to use my camera/microphone? // create our webrtc connection var webrtc = new SimpleWebRTC({ // the id/element dom element that will hold "our"…
amateur
  • 51
  • 1
  • 8
0
votes
1 answer

Using Pusher with SimpleWebRTC

I've come across the SimpleWebRTC package. Trying to get it to work, but can't seem to get the remote stream coming through. I'm also using Pusher for signalling, rather than the default that comes with SimpleWebRTC. I've set up my own…
zetetic
  • 171
  • 1
  • 13
0
votes
0 answers

Are there any requirements for the internet for signalmaster to work?

I set up a WebRTC solution using signalmaster, simpleWebRTC and restund on my own server. I tried with 5 or 6 different people, and it all worked, except for one person who could not connect. I then asked that person to switch his internet to use…
Lucas
  • 16,930
  • 31
  • 110
  • 182
0
votes
0 answers

Simple WebRTC Remote Videos are not added sometimes

We are integrating SimpleWebRTC for allowing the users to have group communication. Xirsys service is used for STUN/TURN servers. We followed the tutorial in the below link, It uses the simplewebrtc sandbox singalling servers for testing purpose. It…
0
votes
1 answer

WebRTC and security - intercepting connections?

I have a question about WebRTC and its security. I have been reading that WebRTC if using a STUN server is direct first by the server to get some metadata, then it is a connection between user to user. And TURN is for a connection that is…
0
votes
1 answer

WebRTC and authentication implementations

Ok so recently I have been in need of creating a application with WebRTC for video voice etc. So after looking into some libraries I found SimpleWebRTC to be pretty handly looking: https://github.com/andyet/SimpleWebRTC So what I am interested in is…
user282190
  • 300
  • 4
  • 20
0
votes
0 answers

webrtc leaks audio played on other tabs

when i'm in a video call with someone else, and listen to a youtube music on another tab at the same time, that person can hear it crystal clear. BTW i'm using a headphone, so there's no way sound is from my speaker. I'm on Mac using Chrome. Why…
Saitama
  • 477
  • 6
  • 18
0
votes
1 answer

webRTC check if stun server is beeing used

I decided to create my own STUN server to use it together with the following JS library https://simplewebrtc.com. I decided to use this: http://www.stunprotocol.org/ I have followed the instructions and it seems like the server is running. The…
Jacob
  • 3,580
  • 22
  • 82
  • 146
1 2 3
10
11