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>
但是,this page in the JW Player website声明可以使用HTML5 video
标记代替Flash来流式传输视频。但是,据我所知,video
标记不支持RTMP流。如何将video
标记合并到oflaDemo index.html
页面中的上述代码中?