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

Webpack - window is not defined on installing SimpeWebRtc

Everything was working fine. I installed npm module simplewebrtc and it stopped working. The error I get is window is not defined: webpack:///./node_modules/@andyet/simplewebrtc/node_modules/webrtc-adapter/src/js/adapter_core.js?:16 const adapter =…
D555
  • 1,704
  • 6
  • 26
  • 48
1
vote
0 answers

Sip.js - how to catch MediaStreamError?

How to catch MediaStreamError when it occur (e.g. when being not on https): I think I've tried already all .on() events I've found in the Sip.js docs, but only "ended" is working when this error occurs (but I don't think this is a proper to use as…
lukaszkups
  • 5,790
  • 9
  • 47
  • 85
1
vote
1 answer

How to fix "Could not find "store" in either the context or props of "Connect(Provider)" issue (ReactJs, Redux, SimpleWebRTC)?

I am trying to launch the SimpleWebRTC app from here: https://docs.simplewebrtc.com/#/?id=getting-started App.js file: import React from "react"; import { Provider } from "react-redux"; import ReduxToastr from "react-redux-toastr"; import store from…
Roman Grinev
  • 929
  • 9
  • 18
1
vote
1 answer

how to restore the negotiation after changing the camera and microphone?

About a month ago, a Stackoverflow partner helped me with a big question, like changing the camera and the microphone during a conference. That question was answered in the following link: Using WebRTC how to choose mic and camera? After changing…
1
vote
1 answer

Store setup with simpleWebRTC

I'm trying to integrate simpreWebRTC to my React-Redux project, but the library has their own redux store and the documentation says this: "The provided createStore function makes a basic Redux store useful for getting things started. If you want…
Carlos Trujillo
  • 657
  • 5
  • 8
1
vote
0 answers

webRTC Video Calling in web

I am currently working on video calling app using webRTC. I have implemented it using peer-to-peer openTok simplewebrtc Componets that I was able to implement was: creating room two or more users can join this room real time chat can be…
1
vote
0 answers

After build webrtc for android, libjingle_peerconnection_java.jar becoming empty

I want to build webRtc for android. I find a build script(script) and I can build webRtc sucsessful. But after build webrtc, libjingle_peerconnection_java.jar include only one class(Empty.class).Why is it becomming empty ? I followed the steps below…
yhbaran
  • 31
  • 8
1
vote
1 answer

audiocodes and webrtc - can't connect the call

I'm beginner in WebRTC. I try to make phone call using audiocodes and WebRTC. I tried the link here. But the call is not connected. Note: The phone call initiated from an anonymous user to a registered user. An anonymous user cannot call other…
viji
  • 48
  • 1
  • 4
1
vote
1 answer

Live broadcast use of WebRtc in android is it possible.?

I want to develop Live Streaming like Facebook using WebRtc. is it possible..? I already develop this thing using WOWZA. want to develop the same this with WebRtc.
Arindam Ghosh
  • 33
  • 1
  • 9
1
vote
1 answer

Is jitsi-videobridge compatible with other webrtc's API or do we have to use it with meet?

I want to implement a SFU in my WebRTC videoconference app. Jitsi Videobridge seems like a good option, but can I use it with any webrtc API? For instance, I'm using SimpleWebRTC, is it possible to implement a SFU in this case with Jitsi…
ee11131
  • 51
  • 1
  • 6
1
vote
0 answers

how to create coturn server directly on subdomain

On my ec2 instance for CentOS, I want to create coturn server directly on my subdomain https://live.talkrecruit.com instead of live.talkrecruit.com:3478 I have already setup coturn live.talkrecruit.com:3478 but want to remove port 3478 and still…
Rizwan
  • 95
  • 1
  • 13
1
vote
1 answer

Live Video Streaming, Video Calls Red5, RTMP and WebRTC, WSS?

I have latest red5 installed on my VPS. I also know RTMP connection/link is used to communicate with the Red5 Server. RTMP connection/link is used by the flash application that is recording/streaming live from a clients webcam. But I would rather…
Tom
  • 117
  • 11
1
vote
1 answer

Quit and Re-join room

I am making a video chat application using simplewebrtc. It is working fine with one call.After hanging up(webrtc.leaveRoom()) when I try to call again then it is not working.It is not executing webrtc.on('readyToCall', function() { …
Zunnurain Badar
  • 920
  • 2
  • 7
  • 28
1
vote
1 answer

Issues with WebRTC based application

I have developed a WebRTC based application along with Kurento-Media-Server. Problems with this application is: It works but only on open network (i.e. if run on a network without firewall). When in firewall it runs sometimes (once out of 10…
Bilbo Baggins
  • 2,899
  • 10
  • 52
  • 77
1
vote
0 answers

How to implement WebRTC screen sharing in java webapp

I have a requirement to implement a screen sharing feature in java web dynamic project by using WebRTC.I have googled it in last 3 days and have not get any dedicated article with java.Please anybody suggest or post me how to go over with WebRTC in…