Red5 中默认的 oflaDemo 应用程序使用 JWplayer 播放 flv/mp4 视频。代码(在 index.html 文件中)是:
<center>
<b>RTMP</b>
<div id='mediaspace'>This text will be replaced</div>
<script type='text/javascript'>
jwplayer('mediaspace').setup({
'flashplayer': 'player.swf',
'file': 'hobbit_vp6.mp4',
'streamer': 'rtmp://localhost/oflaDemo',
'controlbar': 'bottom',
'width': '848',
'height': '360'
});
</script>
<br />
<div>
但是,JW Player 网站中的此页面声明可以使用 HTML5video
标签而不是 flash 来流式传输视频。但是,据我所知,该video
标签不支持 RTMP 流。如何在 oflaDemo页面中将video
标签合并到上述代码中?index.html