Thank you for your reply! we use cuplayer(
http://www.cuplayer.com/FlvPlayer/download.asp?DownId=212),
Here are examples of the use,
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "
http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="
http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>直播测试</title>
<SCRIPT LANGUAGE=JavaScript>
<!--
function getLight(pars)
{
//alert("播放器模式参数值:"+string+"");
if(pars == "open")
{
close_light(this);
}
else
{
close_light(this);
}
}
//兼容性
function thisMovie(movieName) {
if (navigator.appName.indexOf("Microsoft") != -1) {
return window[movieName]
}
else {
return document[movieName]
}
}
//-->
</SCRIPT>
</head>
<body>
<DIV class=close_light_bg id=close_light_bg></DIV>
<!--极酷播放器/代码开始-->
<script type="text/javascript" src="/live/js/swfobject.js"></script>
<div class="video" id="CuPlayer"><b>网页视频播放器加载中,请稍后...</b></div>
<script type="text/javascript" src="/lib/jquery/jquery-1.7.2.min.js"></script>
<script type="text/javascript">
var so = new SWFObject("/live/Player.swf","ply","650","478","9","#000000");
so.addVariable("JcScpFile","/live/livesetting.xml");
so.addVariable("JcScpServer","rtmp://xx.xx.xx.xx/live"); //流服务器地址
so.addVariable("JcScpVideoPath","eW91bmcx"); //流名称streaname
so.addParam("allowfullscreen","true");
so.addParam("allowscriptaccess","always");
so.addParam("wmode","opaque");
so.addParam("quality","high");
so.addParam("salign","lt");
so.write("CuPlayer");
</script>
<!--极酷播放器/代码结束-->
</body>
</html>