2012-10-26 228 views
1

我使用的WebRTC尝试了一个简单的视频聊天中的一个网页,我收到以下错误 未捕获的错误:SYNTAX_ERR:DOM异常12视频聊天12

我的代码是

<button id='btn2' onclick='call();'>call</button> 
    ...... 
    function call(){ 
     pc1 = new webkitPeerConnection00(null,icecallback1); 
     console.log('created local peer connection object pc1'); 
     pc2 = new webkitPeerConnection00(null,icecallback2); 
     console.log('created local peer connection object pc2'); 
     pc2.onaddstream = gotremotestream; 

     pc1.addstream = localstream; 
     console.log('loclastream added'); 
     var offer = pc1.createOffer(null); 
     pc1.setLocalDescription(pc1.SDP_OFFER,offer); 
     console.log('localdesc'); 
     pc2.setRemoteDescription(pc2.SDP_OFFER,offer); 
     console.log('pc2remotedesc'); 

     var answer = pc2.createAnswer(offer.toSdp(),{has_audio:true,has_video:true}); 

     pc2.setLocalDescription(pc2.SDP_ANSWER,answer); 
     pc1.setRemoteDescription(pc1.SDP_ANSWER,answer); 

     pc1.startIce(); 
     pc2.startIce(); 

}; 

function gotremotestream(e){ 
    video2.src = webkitURL.createObjectURL(e.stream); 
} 

function icecallback1(candidate,bmore){ 
    if(candidate){ 
     pc2.processIceMessage(candidate); 
     console.log("local ICE candidate: " + candidate.toSdp()); 
    } 

} 


function icecallback2(candidate,bmore){ 
    if(candidate){ 
     pc1.processIceMessage(candidate); 
     console.log("remote ICE candidate: " + candidate.toSdp()); 
    } 

} 

有人可以帮我解决我的问题,因为我tottaly难住了吗?

+0

只是改变浏览器铬铬金丝雀,它会工作 – vaibhav

回答

0

您使用的是哪个版本的Chrome?请注意www.webrtc.org/blog中描述的PeerConnection00弃用。

+0

我使用铬22 ..但运行在金丝雀上的代码解决了我的问题 – vaibhav