H5浏览器播放RTMP直播流

Posted DoubleLi

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了H5浏览器播放RTMP直播流相关的知识,希望对你有一定的参考价值。

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
<link href="http://vjs.zencdn.net/5.19/video-js.min.css" rel="stylesheet">
<script src="http://vjs.zencdn.net/5.19/video.min.js"></script>
</head>
<body>
<video
id="my-player"
class="video-js"
controls
preload="auto"
poster="//vjs.zencdn.net/v/oceans.png"
data-setup=‘{}‘>
<source src=‘rtmp://live.hkstv.hk.lxdns.com/live/hks‘ type=‘rtmp/flv‘/>
</p>
</video>
<script type="text/javascript">
var player = videojs(‘my-player‘);
var options = {};

var player = videojs(‘my-player‘, options, function onPlayerReady() {
videojs.log(‘Your player is ready!‘);
// In this context, `this` is the player that was created by Video.js.
this.play();
// How about an event listener?
this.on(‘ended‘, function() {
videojs.log(‘Awww...over so soon?!‘);
});
});

</script>
</body>
</html>

以上是关于H5浏览器播放RTMP直播流的主要内容,如果未能解决你的问题,请参考以下文章

写了个项目 Web-Rtmp: 使用 WebSocket 在网页上播放 RTMP 直播流

手机浏览器 H5直播

如何在所有PC浏览器中播放HTTP直播(HLS)?

开发直播网站,想在手机浏览器播放,用rtmp推流,但是手机浏览器无法接收rtmp,请问有啥好的方法吗

为啥 Flash-Player 不能播放 RTMP 直播流

如何使用videojs播放rtmp直播流?