基于RTMP协议的Flash流媒体网页直播播放器

    本文记录一些基于Flash技术的网页播放器。基于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】

技术分享

【下载地址】

基于RTMP协议的Flash流媒体网页播放器


参考:http://blog.csdn.net/wishfly/article/details/44534139

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。