如何使用VLC在网站上实现实时视频流

时间:2013-11-22 13:14:53

标签: html jsp

我正在创建一个网站,播放任何活动的现场视频 我知道的方式是VLC,有没有办法实现更快更顺畅 流???

1 个答案:

答案 0 :(得分:0)

要从VLC生成FLV流,请执行此操作 link

现在使用Flow flash播放器播放FLV流式传输此link

以下是在浏览器中播放视频的代码

<html><head>
    <script type="text/javascript" src="flowplayer-3.2.12.min.js"></script>
</head><body>
        <a  
             href="http://10.100.200.123:11443"
             style="display:block;width:520px;height:330px"  
             id="player"> 
        </a> 
        <script>
            flowplayer("player", "flowplayer-3.2.16.swf");
        </script>
</body></html>