webRTC与本地网络

时间:2015-10-23 03:47:50

标签: php html5 video

需要一些帮助。

我正在创建一个html5 / php网站,允许用户使用网络摄像头向目前正在使用webRTC的多个用户播放视频,但如果有很多用户正在观看视频,则该网站会滞后。

我正在尝试使用我的本地PC作为主要来自Intranet的用户的服务器。我还可以使用webRTC来实现它吗?如果是这样我该怎么做?

我能阅读的任何教程吗?

 var iceServers = [];

        iceServers.push({
            url: 'stun:stun.l.google.com:19302'
        });

        iceServers.push({
            url: 'stun:stun.anyfirewall.com:3478'
        });

        iceServers.push({
            url: 'turn:turn.bistri.com:80',
            credential: 'homeo',
            username: 'homeo'
        });

        iceServers.push({
            url: 'turn:turn.anyfirewall.com:443?transport=tcp',
            credential: 'webrtc',
            username: 'webrtc'
        });

        connection.iceServers = iceServers;

1 个答案:

答案 0 :(得分:1)

我会考虑在这个实例中使用带有node.js的WebSockets,因为它们可以提供更好的连接。

https://developer.mozilla.org/en-US/docs/Web/API/WebSockets_API/Writing_WebSocket_client_applications

https://github.com/websockets/ws