Questions tagged [rtcmulticonnection]

RTCMultiConnection is a JavaScript library for establishing WebRTC connections for peer-to-peer communications.

RTCMultiConnection is a WebRTC JavaScript library for peer-to-peer applications.

60 questions
8
votes
0 answers

Webrtc not connecting on different network even on TURN

I am using RTCmulticonnection in one of my project everything works fine except it is not working on different networks. I Have gone through Github issue which state that it needs turn server to run it on different networks. but i already configured…
asimdev
  • 705
  • 1
  • 8
  • 22
8
votes
1 answer

localhost: how to setup XHR-Signaling (connection.openSignalingChannel not getting called)

I am using RTCMultiConnection v3.4.4 I want to run WebRTC on localhost. I have chosen XHR-Signaling because I want the project to be completely offline. I do not want it to depend on the internet, since everything is on localhost (to be later…
Damilola Olowookere
  • 2,253
  • 2
  • 23
  • 33
6
votes
1 answer

RTCMulticonnection not working with Firebase

I'm setting up a one-to-one video chat using RTCMultiConnection. How to use firebase as a signaling server? I have installed rtcmulticonnection and opened the Video Conferencing using Firebase demo and then applied this step here, but it did not…
ilya
  • 611
  • 6
  • 17
5
votes
0 answers

Safari 11 mediaElement['srcObject'] = mediaStream throws Type Error

I am trying to implement WebRTC using this library (RTCMulticonnection) and am encountering a Type Error when trying to set the 'srcObject' on the video mediaElement in Safari Tech Preview 11. Relevant code: if (isSafari) { //I've tried the 4…
VIN
  • 6,385
  • 7
  • 38
  • 77
4
votes
1 answer

WebRTC settings for Low Latency

i searched already in Stack Overflow, but i was not able to get the Answer i searched for. I am currently developing a Remote Control App with WebRTC. I played around with the WebRTC Settings. Like Resolution, Bitrate, Codec. But after a bit of…
Daniel Ehrhardt
  • 908
  • 7
  • 16
4
votes
1 answer

switch camera in webRTC

how can I switch cameras in RTCMulticonnection i fetch list of divices and their ids var videoDevices = document.getElementById('video-devices'); var audioDevices = document.getElementById('audio-devices'); …
asimdev
  • 705
  • 1
  • 8
  • 22
4
votes
2 answers

MediaStream Unhandled Promise Rejection: [object DOMError] (in Safari 11)

I am getting an Unhandled Promise Rejection in Safari Tech Preview 11 in my method below to initialize WebRTC. Specifically, it occurs when I assign the MediaStream to the video element like this: video.srcObject = event.stream; - the stack trace…
VIN
  • 6,385
  • 7
  • 38
  • 77
3
votes
1 answer

Can't limite bandwidth usage in RTCMulticonnection

I am using RTCMulticonnection in one of my projects. Where I want to limit video stream bandwidth to 500-600kbp. I gone through the documentation and set sdp constraints with bandwidth Handeller. and I reduced the width to 320p and height 180 using…
asimdev
  • 705
  • 1
  • 8
  • 22
3
votes
0 answers

WebRTC Connection fails

I have already installed RTCMultiConnection from : https://github.com/muaz-khan/RTCMultiConnection It works on PC IOS and some Android systems but while Android connects with laptop for joining video chat, laptop's user can't see video. The laptop…
BlueOops
  • 61
  • 2
2
votes
0 answers

After leaving room, showing black screen in safari browser in RTCMultiConnection

I am using latest version of RTCMultiConnection and I am facing an issue in safari browser. Issue is after leaving , instead of removing screen, it is showing black screen. This issue is there in RTCMultiConnection demos also. Also I have an another…
2
votes
1 answer

startRecording not working using RecordRTC with RTCMultiConnection

I am trying to record every new session/user added to RTCMultiConnection. i am using the following demo url in application https://rtcmulticonnection.herokuapp.com/demos/Audio+Video+TextChat+FileSharing.html Now i have added the following cdn…
Khaan
  • 759
  • 7
  • 23
2
votes
2 answers

Bug with screen sharing with RTCMulticonnection from Chrome to Mozilla

I am creating p2p application to share video and screen from Chrome to Mozilla. When I work with Chrome on both sides, it works fine. But when Mozilla is receiving screensharing video, I get a problem. To start screenshare I do the following in…
Stepan Yakovenko
  • 8,670
  • 28
  • 113
  • 206
1
vote
1 answer

How can i use socket.io to increase performance of RTC multi Connection using JavaScript?

I am using below socket.js file and port, but it freezes computer after 4-5 user comes in video conferencing. Socket url is, https://rtcmulticonnection.herokuapp.com/socket.io/socket.io.js and Port…
MAYUR SANCHETI
  • 420
  • 3
  • 10
1
vote
0 answers

How to send MediaStream object from video to canvas element which is being used in opencv.js?

Basically what I'm trying to do is locally detect faces while being in a video conference. For this purpose I'm using RTCMultiConnection for the video conference part, this specific part to be exact and OpenCV.js for the computer vision part,…
1
vote
0 answers

WebRTC mobile cameras not switching

I'm trying to make a live stream app and I want the functionality of switching cameras in smartphones. I've followed this article from MDN but I couldn't get the expected results. The following are the results I'm getting: Chrome mobile results:…
Daljit Singh
  • 113
  • 1
  • 9
1
2 3 4