问题标签 [rtcmulticonnection]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
0 回答
27 浏览

webrtc - 使用 webrtc 的屏幕共享应用程序连接不好

我用 rtcmulticonnection 建立了一个 webrtc 屏幕共享系统。

我将 ICE 服务器定义为:

信令服务器 - rtcmulticonnection

Stun - 谷歌 stun 服务器:stun.l.google.com:19302

转-我自己配置

connection.iceServers.push({ urls: 'turn:185.231.59.67:7878', credential: 'comcom12', username: 'amir' });

移动互联网系统无法接收或发送视频到其他网络,但移动网络和对称 nat 用户无法发送或接收他们的屏幕。

我应该实施什么解决方案,问题是什么?感恩的

我把我的代码放在下面

0 投票
1 回答
43 浏览

node.js - Aws Lightsail 中的 RTCMultiConnection-Server

RTCmulitiConnection 服务器在域名中不起作用

服务器代码:https ://github.com/muaz-khan/RTCMultiConnection-Server

从本地主机连接到服务器时,它可以正常工作,但从公共 IP 或域名返回 400 错误

server.js 代码

它为域或 ip 返回 400 错误错误

运行服务器后,它只在 http://localhost:9001 上运行

但不在我的 Aws 公共 IP 或映射域中

请帮助我任何一个

0 投票
0 回答
27 浏览

javascript - 如何使用 RTCMultiConnection 再次从共享屏幕切换到相机

我需要再次从共享屏幕切换到视频。我首先使用此代码共享屏幕。connection.addStream ({ screen: true, oneway: true, streamCallback: function (screen) { addStreamStopListener (screen, function () { selectFrontCameraDuringActiveSession (); }); }, })

然后我使用此代码再次显示我做错的视频。

每个倾听的人都会得到改变。但是传递变化的那个人并没有反映出来。并关闭视频和激活视频,例如停止工作。