我正在尝试实现一个仅限语音的WebRTC应用程序。我正在Chrome Version 29.0.1547.0 dev
上运行它。我的应用程序使用Socket.IO作为信号机制。
peerConnection.addIceCandidate()
给我这个错误:Uncaught SyntaxError: An invalid or illegal string was specified.
另外,peerConnection.setRemoteDescription();
给了我这个错误:Uncaught TypeMismatchError: The type of an object was incompatible with the expected type of the parameter associated to the object.
这是我的代码:
服务器(在CoffeeScript中)
app = require("express")()
server = require("http").createServer(app).listen(3000)
io = require("socket.io").listen(server)
app.get "/", (req, res) -> res.sendfile("index.html")
app.get "/client.js", (req, res) -> res.sendfile("client.js")
io.sockets.on "connection", (socket) ->
socket.on "message", (data) ->
socket.broadcast.emit "message", data
客户端(JavaScript)
var socket = io.connect("http://localhost:3000");
var pc = new webkitRTCPeerConnection({
"iceServers": [{"url": "stun:stun.l.google.com:19302"}]
});
navigator.getUserMedia = navigator.webkitGetUserMedia ||
navigator.mozGetUserMedia;
navigator.getUserMedia({audio: true}, function (stream) {
pc.addStream(stream);
}, function (error) { console.log(error); });
pc.onicecandidate = function (event) {
if (!event || !event.candidate) return;
socket.emit("message", {
type: "iceCandidate",
"candidate": event.candidate
});
};
pc.onaddstream = function(event) {
var audioElem = document.createElement("audio");
audioElem.src = webkitURL.createObjectURL(event.stream);
audioElem.autoplay = true;
document.appendChild(audioElem);
console.log("Got Remote Stream");
};
socket.on("message", function(data) {
if (data.type === "iceCandidate") {
console.log(data.candidate);
candidate = new RTCIceCandidate(data.candidate);
console.log(candidate);
pc.addIceCandidate(candidate);
} else if (data.type === "offer") {
pc.setRemoteDescription(data.description);
pc.createAnswer(function(description) {
pc.setLocalDescription(description);
socket.emit("message", {type: "answer", description: description});
});
} else if (data.type === "answer") {
pc.setRemoteDescription(data.description);
}
});
function offer() {
pc.createOffer( function (description) {
pc.setLocalDescription(description);
socket.emit("message", {type: "offer", "description": description});
});
};
HTML只包含一个调用offer()
的按钮。
我可以确认ICECandidates
和SessionDescriptions
正在成功地从一个客户端转移到另一个客户端。
我做错了什么?我应该如何修复这些错误和任何其他错误,以便将音频从一个客户端传输到另一个客户端?
PS:如果你知道一个很好的源文件记录WebRTC API(除了W3C文档),请告诉我它!
谢谢!
对于该错误,必须在成功设置远程描述后才能添加ICE候选者。
请注意,在创建Offer(由Offer)后,会立即生成ice候选者。因此,如果回答者在设置远程描述(理论上会在候选人之前到达)之前,不知何故收到了这些候选人,你就会出错。
报价人也是如此。在添加任何ice候选者之前,它必须设置远程描述。
我看到,在您的javascript代码中,您并不能保证在添加ice候选者之前设置了远程描述。
首先,您可以在pc.addIceCandidate(candidate);
之前检查pc的remoteDescription是否已设置。如果您看到它为空(或未定义),您可以在本地存储收到的候选ice,以便在设置remoteDescription后添加它们(或在offer中等待以在适当的时间发送它们)