Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
嗨,我正在使用 opentok。
当我说
publisher = OT.initPublisher(); session.publish(publisher);
我自己的视频对我自己可见。我只想看到其他参与者的视频,而不是我自己的。我希望我的视频对会话中的其他人可见,但我除外。
如何使这成为可能。
我可以让其他人全屏视频吗?
请帮忙...
你可以试试这个...
var publisher = OT.initPublisher('myPublisherDiv', {display: 'none'});
session.publish(发布者);
或者,您可以使用 firebug 或 chrome dev 工具明确检查视频,看看它是否具有现有的类或 id,然后您可以在类 ex 上添加 display none。
.video-class{ 显示:无 }