Wowza 和 Video.js 没有流式传输

Wowza and Video.js not streaming

我正在尝试 运行 使用 Video.js 从 wowza 接收的 rtmp 流。但是我一直无法玩任何东西。来源如下,我已经浏览了每篇文章并且 post 我可以找到,这似乎应该有效。但我无法做到。

p.s。我已经将下面的 rtmp url 加载到 VLC 播放器中,它加载得很好,所以它肯定是实时的并流式传输到该地址

<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8 />
<title>Live</title>
  <link rel="stylesheet" type="text/css" href="video-js.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="1280" height="720"
     data-setup='{"example_option":true}'>
      <source src="rtmp://192.168.32.15:1935/live/myStream" type="rtmp/mp4">
   </video>
 </center>
</body>
</html>

我使用的是 video.js 的 CDN 版本,它可以与来自 Wowza 的 RTMP 直播流一起正常工作。

<html>

<head>
  <link href="http://vjs.zencdn.net/5.8.8/video-js.css" rel="stylesheet">

  <!-- If you'd like to support IE8 -->
  <script src="http://vjs.zencdn.net/ie8/1.1.2/videojs-ie8.min.js"></script>
</head>

<body>
  <video id="my-video" class="video-js" controls preload="auto" width="640" height="264"
  poster="MY_VIDEO_POSTER.jpg" data-setup="{}">
    <source src="rtmp://192.168.1.20:1935/live/myStream" type='rtmp/mp4'>
    <p class="vjs-no-js">
      To view this video please enable JavaScript, and consider upgrading to a web browser that
      <a href="http://videojs.com/html5-video-support/" target="_blank">supports HTML5 video</a>
    </p>
  </video>

  <script src="http://vjs.zencdn.net/5.8.8/video.js"></script>
</body>

</html>

您还可以为 video.js 安装 HLS 插件并从您的 Wowza 服务器播放 HLS 流。

 http://192.168.1.20:1935/live/myStream/playlist.m3u8