我对 JavaScript、webRTC 和 Kurento 有疑问。我自己无法解决。我正在尝试将来自局部变量的远程流放在全局变量中,但我遇到了一些麻烦。我尝试解释解决问题的所有步骤: 第一步,我有 Kurento webRtcEndpoint 函数:
webRtcPeer = kurentoUtils.WebRtcPeer.startRecvOnly(videoElement, onPlayOffer, onError);
它调用函数“onPlayOffer”,即:
function onPlayOffer(sdpOffer) {
co(function * () {
try {
if (!client) client = yield kurentoClient(args.ws_uri);
pipeline = yield client.create('MediaPipeline');
var webRtc = yield pipeline.create('WebRtcEndpoint');
var player = yield pipeline.create('PlayerEndpoint', { uri: args.file_uri });
yield player.connect(webRtc);
var sdpAnswer = yield webRtc.processOffer(sdpOffer);
webRtcPeer.processSdpAnswer(sdpAnswer, recordVideo);
console.log('DEBUG: ok, AGAIN, localStream: ');
console.log(localStream);
yield player.play();
我已经编辑了函数 processSdpAnswer 以这种方式获取流:
WebRtcPeer.prototype.processSdpAnswer = function(sdpAnswer, callbackEvent, successCallback) {
//WebRtcPeer.prototype.processSdpAnswer = function(sdpAnswer, successCallback) {
var answer = new RTCSessionDescription({
type : 'answer',
sdp : sdpAnswer,
});
console.log('Kurento-Utils: SDP answer received, setting remote description');
var self = this;
self.pc.onaddstream = function(event) {
var objectURL = URL.createObjectURL(event.stream);
//Added the string below to create the callback
callbackEvent(event.stream);
};
self.pc.setRemoteDescription(answer, function() {
if (self.remoteVideo) {
var stream = self.pc.getRemoteStreams()[0];
//console.log('Kurento-Utils: Second self.pc');
//console.log(self.pc)
self.remoteVideo.src = URL.createObjectURL(stream);
}
if (successCallback) {
successCallback();
}
}, this.onerror);
所以,在这种情况下,回调是函数recordVideo,它被传递“event.stream”
function recordVideo(stream) {
console.log("DEBUG: called function recordVideo()");
localStream = stream;
console.log("DEBUG: Copied stream -> localStream:");
console.log(localStream);
console.log("DEBUG: the stream object contains:");
console.log(stream);}
所以我希望在函数“onPlayOffer”中,我可能将对象 localStream(全局声明)作为流的副本(即本地)。变量“stream”是正确的,而变量“localStream”是未定义的。
你能帮我理解为什么吗?我读过也许问题出在控制台上,但我试图评论所有 console.log 行但没有成功。你能帮助我吗?谢谢大家!
(如果有人知道一种更快的方法来全局获取 event.stream 对象,我将感谢您的帮助!)