WebRTC Firefox:RTCPeerConnection.setLocalDescription的参数不足 [英] WebRTC Firefox: Not enough arguments to RTCPeerConnection.setLocalDescription

查看:104
本文介绍了WebRTC Firefox:RTCPeerConnection.setLocalDescription的参数不足的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在使用WebRTC开发一个网络平台,以创建用于采访的对等视频对话。通过ASP.NET SignalR建立通信。这是用于建立连接的javascript:

I'm developing a web platform with WebRTC to create a peer-to-peer video conversation for interviews. The communication is established with ASP.NET SignalR. Here's the javascript for the connection establishment:

function initInterview() {
                //Gets user's media

                navigator.getUserMedia({ video: true, audio: true }, function (stream) {
                    // Display local stream to the user
                    var localMediaElem = document.querySelector('video#me');
                    localMediaElem.volume = 0.0;
                    localMediaElem.srcObject = stream;

                    // Assign stream
                    _myMediaStream = stream;

                    showUI(true);

                    console.log("Added local media stream");

                    // No startInterview call (waiting for interviewee to create offer)
                }, function (event) {
                    // Something failed
                    console.log(event);
                });
            };

            function _createConnection() {
                console.log('Creating RTCPeerConnection...');

                // Create a new PeerConnection
                var connection = new RTCPeerConnection(null); // null = no ICE servers

                // A new ICE candidate was found
                connection.onicecandidate = function (event) {
                    if (event.candidate) {
                        // Let's send it to our peer via SignalR
                        interview.server.send(interviewGuid, JSON.stringify({ "candidate": event.candidate }));
                    }
                };

                // New remote media stream was added
                connection.onaddstream = function (event) {
                    // Get other video element
                    var newVideoElement = document.querySelector('video#other');

                    // Attach the stream to the Video element via adapter.js
                    newVideoElement.srcObject = event.stream;
                };

                return connection;
            }

            // Callback that receives notifications from the SignalR server
            interview.client.newMessage = function (data) {
                console.log("Received message");
                console.log(data);
                var message = JSON.parse(data),
                    connection = _myConnection || _createConnection(null);

                // An SDP message contains connection and media information, and is either an 'offer' or an 'answer'
                if (message.sdp) {
                    console.log("Received session description");
                    connection.setRemoteDescription(new RTCSessionDescription(message.sdp), function () {
                        console.log("Description:");
                        console.log(connection.remoteDescription);
                        if (connection.remoteDescription.type == 'offer') {
                            console.log('received offer, sending answer...');

                            // Add our stream to the connection to be shared
                            connection.addStream(_myMediaStream);

                            // Create an SDP response
                            connection.createAnswer(function (desc) {
                                // Which becomes our local session description
                                connection.setLocalDescription(desc, function () {
                                    // And send it to the originator, where it will become their RemoteDescription
                                    interview.server.send(interviewGuid, JSON.stringify({ 'sdp': connection.localDescription }));
                                });
                            }, function (error) { console.log('Error creating session description: ' + error); });
                        } else if (connection.remoteDescription.type == 'answer') {
                            console.log('got an answer');
                        }
                    });
                } else if (message.candidate) {
                    console.log('adding ice candidate...');
                    connection.addIceCandidate(new RTCIceCandidate(message.candidate));
                }

                _myConnection = connection;
            };




            function startInterview() {
                console.log("Starting interview");

                _myConnection = _myConnection || _createConnection(null);

                // Add our stream to the peer connection
                _myConnection.addStream(_myMediaStream);

                // Create an offer to send our peer
                _myConnection.createOffer(function (desc) {
                    // Set the generated SDP to be our local session description
                    console.log(desc);
                    _myConnection.setLocalDescription(desc, function () {
                        // And send it to our peer, where it will become their RemoteDescription
                        interview.server.send(interviewGuid, JSON.stringify({ "sdp": desc }));
                    });
                }, function (error) { console.log('Error creating session description: ' + error); });
            };

受访者通过以下方式创建要约:

The interviewee creates an offer in the following way:

        function initInterview() {
                //Gets user's media

                navigator.getUserMedia({ video: true, audio: true }, function (stream) {
                    // Display local stream to the user
                    var localMediaElem = document.querySelector('video#me');
                    localMediaElem.volume = 0.0;
                    localMediaElem.srcObject = stream;

                    // Assign stream
                    _myMediaStream = stream;

                    showUI(true);

                    console.log("Added local media stream");

                    // Create offer for interviewer
                    startInterview();
                }, function (event) {
                    // Something failed
                    console.log(event);
                });
            };

当我们使用谷歌浏览器时,它可以很好地工作,但是当我们使用Firefox时,会出现以下错误:

It works perfectly when we're using Google Chrome, but whenever we use Firefox we get the following error:

Started SignalR hub b39c24ad-bd2d-42bf-829a-176bda8e3905:224:21

Added local media stream b39c24ad-bd2d-42bf-829a-176bda8e3905:344:25

Starting interview b39c24ad-bd2d-42bf-829a-176bda8e3905:355:21
Creating RTCPeerConnection... b39c24ad-bd2d-42bf-829a-176bda8e3905:265:21
onaddstream is deprecated! Use peerConnection.ontrack instead.
RTCSessionDescription { type: "offer", sdp: "v=0 o=mozilla...THIS_IS_SDPARTA-47.…" } b39c24ad-bd2d-42bf-829a-176bda8e3905:365:25
Received message b39c24ad-bd2d-42bf-829a-176bda8e3905:292:21
"{"sdp":{"type":"offer","sdp":"v=[...]a0f1\r\n"}}" b39c24ad-bd2d-42bf-829a-176bda8e3905:293:21

Received session description b39c24ad-bd2d-42bf-829a-176bda8e3905:299:25

Received message b39c24ad-bd2d-42bf-829a-176bda8e3905:292:21

{"candidate":{"candidate":"candidate:2880323124 2 udp 2122260222 192.168.1.116 43234 typ host generation 0 ufrag bg8D7wuLUvtu/QjB network-id 1","sdpMid":"audio","sdpMLineIndex":0}} b39c24ad-bd2d-42bf-829a-176bda8e3905:293:21

adding ice candidate... b39c24ad-bd2d-42bf-829a-176bda8e3905:322:25

Received message b39c24ad-bd2d-42bf-829a-176bda8e3905:292:21

{"candidate":{"candidate":"candidate:2880323124 1 udp 2122260223 192.168.1.116 56886 typ host generation 0 ufrag bg8D7wuLUvtu/QjB network-id 1","sdpMid":"audio","sdpMLineIndex":0}} b39c24ad-bd2d-42bf-829a-176bda8e3905:293:21

[...]

{"candidate":{"candidate":"candidate:3844981444 2 tcp 1518280446 192.168.1.116 9 typ host tcptype active generation 0 ufrag bg8D7wuLUvtu/QjB network-id 1","sdpMid":"video","sdpMLineIndex":1}} b39c24ad-bd2d-42bf-829a-176bda8e3905:293:21

adding ice candidate... b39c24ad-bd2d-42bf-829a-176bda8e3905:322:25

TypeError: Not enough arguments to RTCPeerConnection.setLocalDescription.


推荐答案

setLocalDescription 可能会失败,并且接受三个参数:说明,成功回调和失败回调。您缺少后者。 Chrome错误。

setLocalDescription can fail, and takes three arguments: the description, a success callback, and a failure callback. You are missing the latter. Chrome is wrong.

请注意,此旧API已被替换为一个现代的,它返回承诺代替:

Note that this old API has since been replaced with a modern one that returns promises instead:

       if (message.sdp) {
           connection.setRemoteDescription(message.sdp).then(() => {
               if (connection.remoteDescription.type == 'answer') {
                   return;
               }
               connection.addStream(_myMediaStream);
               return connection.createAnswer()
                   .then(desc => connection.setLocalDescription(desc))
                   .then(() => interview.server.send(interviewGuid,
                       JSON.stringify({ 'sdp': connection.localDescription })));
           })
           .catch(error => console.log('Error: ' + error));
       } else if (message.candidate) {
           connection.addIceCandidate(message.candidate))
           .catch(error => console.error(error));
       }

使用 adapter.js ,WebRTC官方polyfill。

Access it in older browsers using adapter.js, the official WebRTC polyfill.

这篇关于WebRTC Firefox:RTCPeerConnection.setLocalDescription的参数不足的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆