iceCandidate因Mozilla Firefox中的webRTC而失败

时间:2014-12-26 10:52:58

标签: javascript html chat webrtc videochat

我在webRTC中进行了视频通信的示例应用程序。它适用于Chrome,但在Firefox中它给出了iceCandidatefailed错误。你能建议我吗?这是有一些问题的代码。 提前谢谢。

function onicecandidate(iceCandidate) {
    debugger;
        console.log("ice candidate send to room ", iceCandidate);
        // send candidates to other guy
        if (!peerConnection || !event || !event.candidate) return;
        var candidate = event.candidate;
        debugger;
        var data = {
            'type': 'candidate', 'label':candidate.sdpMLineIndex, 'sdpMid':candidate.sdpMid, 'candidate':candidate.candidate
        };
        socket.emit('message', data);
    };

0 个答案:

没有答案