Flash——视频孩子不会播放

发布于 2024-10-12 16:25:40 字数 1036 浏览 3 评论 0原文

你好,我创建了一个简单的 p2p 会议工具,但我有 1 个主要问题。我可以发送流,我知道我收到流(我可以听到声音),但视频无法播放。我不知道为什么。 视频 myvideo 相关的代码

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);

下面是与屏幕上可以看到的 。但当我去接收视频时却什么也没得到。

public function receive():void{
                recvid = new NetStream(netconn,farpeerid);
                recvid.addEventListener(NetStatusEvent.NET_STATUS,netStatusHandler);
                recvid.play("cam");
                othervideo.attachNetStream(recvid);
            }

Hello I have created a simple p2p conference tool, but I have 1 major problem. I can send the stream, I know I receive the stream( I can hear the sound) but the Video will not play. I don't know why. Below is the code related to the video

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 can be seen on the screen. But when I go to receive the video I get nothing.

public function receive():void{
                recvid = new NetStream(netconn,farpeerid);
                recvid.addEventListener(NetStatusEvent.NET_STATUS,netStatusHandler);
                recvid.play("cam");
                othervideo.attachNetStream(recvid);
            }

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

十年九夏 2024-10-19 16:25:40

尝试

uic2.addChild(othervideo);

注意这个论点。

Try

uic2.addChild(othervideo);

Notice the argument.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文