loading...

Flash中播放red5环境中的视频

作者:kimi 发布时间:June 11, 2007 分类:Flash

// 建立链接
var nc:NetConnection = new NetConnection();

// 连接到本地red5服务器
nc.connect("rtmp://localhost/oflaDemo");

var ns:NetStream = new NetStream(nc);

videoContainer.attachVideo(ns);

playButton.addEventListener("click", this);

function click():Void
{
// Spiderman3_trailer_300.flv文件在red5安装目录下的webapps/oflaDemo/streams/
// oflaDemo是上面连接中的地址
ns.play("Spiderman3_trailer_300.flv");
}