一款Flv的网页播放器的详解

来源:互联网 发布:货币金属论论文知乎 编辑:程序博客网 时间:2024/05/02 04:33
一个媒体文件列表的xml文件,一个就是FLVPlayer的主文件了,还有就是flv视频文件了
用以下方是嵌入网页中(vsastr.html)

<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="240" height="233">
<param name="movie" value="/flvplayer/vcastr.swf?vcastr_xml_url=http://www.laoweng.com/flvplayer/vcastr.xml">
<param name="quality" value="high">
<embed src=“/flvplayer/vcastr.swf?vcastr_xml_url=http://www.laoweng.com/flvplayer/vcastr.xml" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="240" height="233"></embed>
</object>
其中
/flvplayer/vcastr.swf?vcastr_xml_url=http://www.laoweng.com/flvplayer/vcastr.xml
是播放列表的xml地址
也可以用
flvplayer/vcastr.swf?vcastr_flie=http://www.laoweng.com/flvplayer/flv/happy_feet.flv
http://www.b-y-d.com/flvplayer/flv/江南.flv
http://www.b-y-d.com/flvplayer/flv宁波.flv
直接给出flv文件地址,多个使用|分开
OK就这么多 大家尝试一下 希望喜欢。谢谢支持。


http://www.laoweng.com/flvplayer/vcastr.xml 文件内容:
<?xml version="1.0" encoding="utf-8" ?>
<vcaster>
  <item item_url="http://www.laoweng.com/product/vcastr/flv/happy_feet.flv" item_title="脚丫" />
  <item item_url="http://www.laoweng.com/transformers_640.flv" item_title="变形金刚" />
</vcaster>