流媒体wowza视频没有播放

时间:2015-08-28 15:47:38

标签: flowplayer wowza

我是使用wowza 的流媒体新手,以便拥有安全的流媒体。下面是我正在使用的代码,但视频根本没有播放。我很确定所有文件都正确加载而没有任何404或403错误。

以下是代码:

<html>
  <head>
    <title>Wow! This is video</title>
    <script src="js/flowplayer-3.1.4.min.js"></script>
  </head>
  <body>
    <a href="videos/MyVideo.mp4"
       style="display:block;width:425px;height:300px;"
       id="wowza" class="player">

    <!-- splash image inside the container -->
<img src="./flow_eye.jpg"
    alt="Search engine friendly content" /></a>

    <script language="JavaScript">

        flowplayer("wowza", "swf/flowplayer-3.1.5.swf", {

          log: { level: 'debug', filter: 'org.flowplayer.rtmp.,org.flowplayer.securestreaming.' },

            clip: {
            url: 'mp4:videos/MyVideo.mp4',
            // use RTMP streaming
            provider: 'rtmp',

            // with a secured connection
            connectionProvider: 'secure'
            },

            plugins: {

            // set up the RTMP streaming plugin
            rtmp: {
                url: "swf/flowplayer.rtmp-3.2.13.swf",

                // The net connection URL with HDDN looks like this
                netConnectionUrl: 'rtmpte://d.securevod.flowplayervod.netdna-cdn.com:1935/securevod.flowplayervod'
            },

            // set up the secure streaming plugin
            secure: {
                url: "swf/flowplayer.securestreaming-3.2.9.swf",

                // the token value (shared secret).
                token: 'bky9p52t'
            }
            }
        });


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

请从您的结尾进行测试,并告诉我上述代码中还需要添加哪些内容。

1 个答案:

答案 0 :(得分:1)

您使用的是错误的脚本。

我看到的是,您正尝试使用RTMP(Real Time Messaging Protocol)制作直播信息流。你想播放视频。

flow-player你不需要重新发明轮子。 只需使用任何示例脚本。

Embed Videos in your Web Pages with Flowplayer