javascript - WebRTC 适用于 Chrome 但不适用于 Firefox

标签 javascript html webrtc

我阅读了有关相关问题的其他几个问题,但没有一个回答了我的问题。我有一个奇怪的问题,我可以使用 WebRTC 从 chrome 到 firefox 进行音频聊天,但不能使用 firefox 到 chrome。

基本上,当用户希望进行音频聊天时,他/她单击按钮 #audioChatBtn,该按钮使用 getUserMedia() 来设置流。问题是,从 Firefox 中单击 #audioChatBtn 不会在 Chrome 上触发 onaddstream 回调,但从 Chrome 中单击按钮会在 Firefox 上触发 onaddstream .因此,我可以从 Chrome 到 Firefox 进行语音聊天,但反过来不行。几个小时以来,我一直在努力解决这个问题,但我希望这里可能有人能给出答案。

相关来源:

var configuration = {
    'iceServers': [
        { url: 'stun:stun.l.google.com:19302' },
        { url: 'stun:stun1.l.google.com:19302' },
        { url: 'stun:stun2.l.google.com:19302' },
        { url: 'stun:stun3.l.google.com:19302' },
        { url: 'stun:stun4.l.google.com:19302' }
    ]
};
var pc = RTCPeerConnection(configuration);
var myStream = null;
var currentAudioIndex = 0; // Number of created channels
var myAudioEnabled = false;

// send any ice candidates to the other peer
pc.onicecandidate = function (evt) {
    if (evt.candidate)
        $(document).trigger("persistState", { mode: 'rtc', 'candidate': evt.candidate });
};

// let the 'negotiationneeded' event trigger offer generation
pc.onnegotiationneeded = function () {
    pc.createOffer(localDescCreated, logError);
}

// once remote stream arrives, play it in the audio element
pc.onaddstream = function (evt) {
    console.log('creating and binding audio');

    var idx = (currentAudioIndex++);
    var audioElement = $('#audio' + idx);

    if (audioElement.length == 0) {
        var audio = $('<audio id="audio' + idx + '" autoplay>');
        $('body').append(audio);
        audioElement = $('#audio' + idx);
    }

    var audioObject = audioElement[0];
    attachMediaStream(audioObject, evt.stream);
};

function localDescCreated(desc) {
    pc.setLocalDescription(desc, function () {
        $(document).trigger("persistState", { mode: 'rtc', 'sdp': pc.localDescription });
    }, logError);
}

function logError(e) {
    bootbox.alert("Audio chat could not be started.");
}

function hasGetUserMedia() {
    return !!(navigator.getUserMedia || navigator.webkitGetUserMedia ||
              navigator.mozGetUserMedia || navigator.msGetUserMedia);
}

server.onPersist = function(msg) {
    if (msg.mode == "rtc") {
        if (msg.sdp)
            pc.setRemoteDescription(new RTCSessionDescription(msg.sdp), function () {
                // if we received an offer, we need to answer
                if (pc.remoteDescription.type == 'offer')
                    pc.createAnswer(localDescCreated, logError);
            }, logError);
        else
            pc.addIceCandidate(new RTCIceCandidate(msg.candidate));
    }
}



// On click, start audio chat from this user.
$('#audioChatBtn').click(function() {
    if (!hasGetUserMedia()) {
        bootbox.alert('Audio conferencing is not supported by your browser. (Currently only supported by Chrome, Firefox, and Opera web browsers.)');
        return;
    }

    if (myAudioEnabled) {
        myStream.stop();
        displayAlert('Streaming closed', 'Audio chat is off');
        $('#audioChatBtn').removeClass('btn-success').addClass('btn-primary');

    } else {
        getUserMedia({ video: false, audio: true }, function (localMediaStream) {
            myStream = localMediaStream;
            pc.addStream(localMediaStream);
            displayAlert('Streaming...', 'Audio chat is enabled');
            $('#audioChatBtn').removeClass('btn-primary').addClass('btn-success');
        }, logError);
    }

    myAudioEnabled = !myAudioEnabled;
});

我尝试过的

  • 在阅读 this question 后尝试在配置中使用 'optional': [{ 'DtlsSrtpKeyAgreement': 'true' }]
  • 尝试为每个请求创建一个新的 RTCPeerConnection()
  • 尝试使用 native 浏览器功能而不是 adapter.js .
  • 探索 Web Audio API 而不是 getUserMedia()

最佳答案

Firefox 目前不支持 onnegotiationneeded,因为我们目前不支持现有连接的重新协商。所有 addStream/addTrack 和单个 createDataChannel(如果您想使用它们)都需要在 createOffer() 或 createAnswer 之前完成。如果您是在 createOffer 之前创建的,则您可以在连接之后创建数据通道。

连接后添加流将不起作用。

一个(恼人的)替代方案是创建一组新的 PeerConnections 来替换旧的(使用旧对中的 DataChannel 作为信号 channel 以降低延迟)

解决这个问题在我们的优先列表中名列前茅,但还需要发布更多版本。

关于javascript - WebRTC 适用于 Chrome 但不适用于 Firefox,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25986267/

相关文章:

webrtc - 如何使用 webrtc 录制视频

webrtc - 部署到 TURN 服务器,不会耗尽调用

javascript - 获取访问 token 时无效的签名 LinkedIn Oauth

javascript - NodeJS 在同一文件夹中找不到模块

javascript - 加载页面时如何选择文本框内的内容?

javascript - 保留一份干净的 HTML 元素的副本,以便以后以正确的方式使用 jQuery 进行克隆

javascript - Angular js 音频问题

html - 一旦导航栏到达窗口顶部,如何将其保持在那里?

javascript - 在 Javascript 的内联函数中将参数作为值传递

.net-core - WebRTC 和 Asp.Net Core