Page 1 of 1

Streaming FLV

Posted: Fri Oct 28, 2005 7:45 pm
by BrianWeed
Does anyone have sample code for streaming a FLV ?

Posted: Sat Oct 29, 2005 9:33 am
by Softanics
As soon as I know code for this is available with Macromedia Flash IDE. Something looks like:

Code: Select all

var netConn:NetConnection = new NetConnection();
netConn.connect(null);
var netStream:NetStream = new NetStream(netConn);
my_video.attachVideo(netStream);
netStream.setBufferTime(0);
netStream.play("http://somesite.com/something.flv");