可以通过属性为发布者div元素设置宽度/高度: http://www.tokbox.com/opentok/docs/js/reference/TB.html
但是,对其他流不可能做同样的事情。属性没有宽度/高度: http://tokbox.com/opentok/webrtc/docs/js/reference/Session.html#subscribe
即使通过CSS设置,它们也会被覆盖。
例如,如何制作像facetime这样的应用,其中订阅的视频流比发布商流大得多?
答案 0 :(得分:3)
您可以通过将具有width和height属性的对象传递给session.subscribe
函数来设置订阅者div的高度和宽度:
session.subscribe(stream, divid, {width: 320, height: 240});
您还可以使用父容器并将订阅者的宽度/高度设置为100%来使用CSS设置样式:
session.subscribe(stream, divid, {width: "100%", height: "100%"});
Here's an example of making a large subscriber that might help you.