Hi there. I created a ServerStream in my application to broadcast a piece of
movie, like following:
SimplePlayItem item = new SimplePlayItem();
item.setStart(0);
item.setLength(1000000);
item.setName("tw-china.flv");
ServerStream serverStream = StreamUtils.createServerStream(appScope,
"red5StreamDemo");
serverStream.addItem(item);
serverStream.setRepeat(true);
serverStream.setRewind(true);
serverStream.start();
It works: mutiple viewers can watch the stream synchronous. But it's death
slow: it seems to me 2 times slower than the original movie. I'm wondering
whether it's the right way to provide movie broadcasting or not. Please give
me some hints.
(BTW, the movie stopped after a period of time. I don't know the reason yet.
Anyone can help me?)
Jeff
_______________________________________________
Red5 mailing list
[email protected]
http://osflash.org/mailman/listinfo/red5_osflash.org