基于RTMP协议的Flash流媒体网页直播播放器
主要是几种常用的网页播放器:
rtmp_player_adobe: 从Adobe Flash Media Sever提取出来的测试播放器
rtmp_player_wowza: 从Wowza服务器中提取出来的测试播放器
rtmp_player_flowplayer: 基于FlowPlayer的RTMP/HTTP播放器(添加RTMP plugin)
【rtmp_player_adobe】
【rtmp_player_wowza】
<!DOCTYPE html> <html> <head> <script type="text/javascript" src="flowplayer-3.2.8.min.js"></script> <title>HacFin FlowPlayer</title> </head> <body> <h1>HacFin FlowPlayer</h1> <!-- this A tag is where your Flowplayer will be placed. it can be anywhere --> <a href="#" style="display:block;width:720px;height:576px" id="player"> </a> <!-- this will install flowplayer inside previous A- tag. --> <script> flowplayer("player", "flowplayer-3.2.8.swf",{ clip: { url: 'hkfystream', //流的名称 provider: 'rtmp', live: true, }, plugins: { rtmp: { url: 'flowplayer.rtmp-3.2.8.swf', netConnectionUrl: 'rtmp://192.168.3.189/oflaDemo' //流的服务器地址 } } }); </script> <p> Sample RTMP URL (Live) is "rtmp://192.168.3.189/oflaDemo/hkfystream" </p> </body> </html>
【rtmp_player_flowplayer】
【下载地址】
参考:http://blog.csdn.net/wishfly/article/details/44534139
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。