2014-07-08 49 views

回答

0

如果您的相機和麥克風連接到系統時,你應該能夠看到和聽到自己

+0

這應該是一個答案或批評。 –

0

你可以連接到一個會話作爲出版商和檢查stream.hasVideo ...

例子:

session.connect(userToken, function() { 
    var publisherProperties = {insertMode: "append", width: $('#publisher-tokbox').width(), height: $('#publisher-tokbox').height()}; 

    var publisher = OT.initPublisher('publisher-tokbox', publisherProperties, function (error) { 
     if (error) { 
      console.log(error); 
     } 
     else { 
      console.log("Publisher initialized."); 
     } 
    }); 
    publisher.on("streamCreated", function (event) { 
     console.log("The publisher started streaming.", event); 
     if (event.stream.hasVideo) { 
      console.log("Video is present"); 
     } 

    }); 

    self.set('publisher', publisher); 
    session.publish(publisher); 
}); 

注意,用戶需要授予他的瀏覽器設置訪問攝像機。

相關問題