将WebRTC视频会议设置为我自己的服务器

时间:2017-10-03 12:50:23

标签: javascript webrtc video-conferencing

我已经尝试过在Muaz Khan解释的服务器上设置webRTC的示例。 这是link

这是配置代码

var config = {
    openSocket: function (config) {
        var SIGNALING_SERVER = 'https://webrtcweb.com:9559/',
            defaultChannel = location.href.replace(/\/|:|#|%|\.|\[|\]/g, '');

        var channel = config.channel || defaultChannel;
        var sender = Math.round(Math.random() * 999999999) + 999999999;

        io.connect(SIGNALING_SERVER).emit('new-channel', {
            channel: channel,
            sender: sender
        });

在更改配置代码时,我改变了"的值。 SIGNALING_SERVER"变量到我自己的域

var SIGNALING_SERVER = 'https://myweb.com:9559/'

该代码无效,我也尝试了其他例子,但我无法成功。请帮助我,我在做错了,或者我应该做什么,因为我是WebRTC的新手。感谢

0 个答案:

没有答案