鍍金池/ 問(wèn)答/HTML/ vediojs如何播放rtmp視頻流呢?

vediojs如何播放rtmp視頻流呢?

在做視頻直播,想要用vediojs播放rtmp視頻流,請(qǐng)問(wèn)該如何實(shí)現(xiàn)呢?

回答
編輯回答
護(hù)她命

移動(dòng)端不支持rtmp

2018年8月8日 09:16
編輯回答
懷中人
<html>
<head>
<title> Stream Player </title>
  <link href="video-js.css" rel="stylesheet" type="text/css">
  <script src="video.js"></script>
  <script>
    videojs.options.flash.swf = "video-js.swf";
  </script>
</head>
<body>
 <center>
   <video id="livestream" class="video-js vjs-default-skin vjs-big-play-
centered"
     controls autoplay preload="auto" width="600" height="300"
     data-setup='{"techorder" : ["flash"] }'>
      <source src="rtmp://10.0.0.35:1935/live/test" type="rtmp/mp4">
   </video>
 </center>
</body>
</html>
2018年5月28日 12:20