Lap_Dog_Shuffle
09-07-2004, 05:07 PM
Hi, I'm trying to create a "video wall" type effect with 4 instances of the same streaming video.. My problem is that when I have more than one video object using the same NetStream object the video quality drops..
nc = new NetConnection();
nc.connect(null);
ns = new NetStream(nc);
vid.attachVideo(ns);
vid1.attachVideo(ns);
vid2.attachVideo(ns);
ns.play("plaid.flv");
In the example above there are 3 video objects showing the same flv file; the video quality is much less than when only one video object is used. :(
Does anybody know of a workaround?
nc = new NetConnection();
nc.connect(null);
ns = new NetStream(nc);
vid.attachVideo(ns);
vid1.attachVideo(ns);
vid2.attachVideo(ns);
ns.play("plaid.flv");
In the example above there are 3 video objects showing the same flv file; the video quality is much less than when only one video object is used. :(
Does anybody know of a workaround?