您好我已经创建了一个简单的p2p会议工具,但我有一个主要问题。我可以发送流,我知道我收到了流(我可以听到声音),但视频将无法播放。我不知道为什么。以下是与视频相关的代码
private function initconnect():void{
//test with UiElement
myvideo = new Video(320,240);
myvideo.x = 10;
myvideo.y = 50;
var uic:UIComponent = new UIComponent();
uic.addChild(myvideo);
addElement(uic);
othervideo = new Video(320,240);
othervideo.x = 10;
othervideo.y = 310;
var uic2:UIComponent = new UIComponent();
uic2.addChild(myvideo);
addElement(uic2);
myvideo可以在屏幕上看到。但是当我去接收视频时,我什么都没得到。
public function receive():void{
recvid = new NetStream(netconn,farpeerid);
recvid.addEventListener(NetStatusEvent.NET_STATUS,netStatusHandler);
recvid.play("cam");
othervideo.attachNetStream(recvid);
}
答案 0 :(得分:0)
尝试
uic2.addChild(othervideo);
注意参数。