2

为了重新启动我们的视频点播系统,我必须实施 Flash 流传输,但要么是因为我之前没有使用过与 Flash 相关的系统,要么是因为我太愚蠢了,我无法让系统正常工作。

我们需要:

  • 每文件和用户访问控制,每分钟检查一次 WebService
  • 如果租用时间在中途用完:取消流
  • rtmp 流式传输
  • 动态带宽检查
  • 使用 Flowplayer 播放视频(现有许可证)

我已经进行了流媒体和带宽检查,但我似乎无法让访问控制正常工作。我不知道如何知道播放哪个文件或如何根据客户端发送的密钥播放文件。

服务器端代码(main.asc):

application.onAppStart = function()
{
        trace("Starting application");
        this.payload = new Array();

        for (var i=0; i < 1200; i++) {
                this.payload[i] = Math.random();        //16K approx
        }
}

application.onConnect = function( p_client, p_autoSenseBW )
{
        p_client.writeAccess = "";

        trace("client at     : " + p_client.uri);
        trace("client from : " + p_client.referrer);
        trace("client page: " + p_client.pageUrl);

        // try to get something from the query string: works
        var i = 0;
        for (i = 0; i < p_client.uri.length; ++i)
        {
                if (p_client.uri[i] == '?')
                {
                        ++i;
                        break;
                }
        }

        var loadVars = new LoadVars();
        loadVars.decode(p_client.uri.substr(i));
        trace(loadVars.toString());
        trace(loadVars['foo']);

        // And accept the connection
        this.acceptConnection(p_client);
        trace("accepted!");

        //this.rejectConnection(p_client);

        // A connection from Flash 8 & 9 FLV Playback component based client
        // requires the following code.
        if (p_autoSenseBW)
        {
                p_client.checkBandwidth();
        }
        else
        {
                p_client.call("onBWDone");
        }
        trace("Done connecting");
}

application.onDisconnect = function(client)
{
        trace("client disconnecting!");
}

Client.prototype.getStreamLength = function(p_streamName) {
        trace("getStreamLength:" + p_streamName);
        return Stream.length(p_streamName);
}

Client.prototype.checkBandwidth = function() {
        application.calculateClientBw(this);
}

application.calculateClientBw = function(p_client)
{
/* lots of lines copied from an adobe sample, appear to work */
}

客户端代码:

<head>
  <script type="text/javascript" src="flowplayer-3.1.4.min.js"></script>
</head>
<body>
  <a
                        class="rtmp"
                        href="rtmp://xx.xx.xx.xx/vod_project/test_flv.flv"
                        style="display: block; width: 520px; height: 330px"
                        id="player">
                </a>

<script>
                        $f(
                                "player",
                                "flowplayer-3.1.5.swf",
                                {
                                        clip:  {
                                                provider: 'rtmp',
                                                autoPlay: false,
                                                url: 'test_flv'
                                        },
                                        plugins: {
                                                rtmp: {
                                                        url: 'flowplayer.rtmp-3.1.3.swf',
                                                        netConnectionUrl: 'rtmp://xx.xx.xx.xx/vod_project?foo=bar'

                                                }
                                        }
                                }
                        );
                </script>
</body>

我的第一个想法是从查询字符串中获取一个密钥,询问网络服务该密钥用于哪个文件和用户并播放文件,但我似乎无法找到如何从服务器端播放文件。

我的第二个想法是让 flowplayer 播放文件,将密钥作为查询字符串传递,如果文件名和密钥不匹配,则拒绝连接,但我似乎无法找出它当前正在播放的文件。

我唯一剩下的想法是:创建一个允许用户打开并设置 allowReadAccess 的所有文件的列表,或者它被称为允许这些文件,但由于当前的基础设施,这将是笨拙的。

有什么提示吗?

谢谢。

4

1 回答 1

0

我今天找到了 FlowPlayers clip.connectionArgs,我现在正在为它实施一个解决方案。

生成的代码将类似于以下内容:

服务器端 main.asc onConnect:

application.onConnect( p_client, p_userid, p_streamname )
{
  if (p_client.check_access(p_userid, p_streamname))
  {
    p_client.readAccess = "streams/_definst_/" + p_streamname;
    this.acceptConnection(p_client);
  }
  else
  {
    this.rejectConnection(p_client);
  }
}

客户端:

$f(
  "player",
   "flowplayer-3.1.5.swf",
   {
     clip:  {
       provider: 'rtmp',
       autoPlay: false,
       url: 'test_flv',
       connectionArgs: ["12345", "test_flv"]
     },
     plugins: {
       rtmp: {
         url: 'flowplayer.rtmp-3.1.3.swf',
         netConnectionUrl: 'rtmp://xx.xx.xx.xx/vod_project?foo=bar'
       }
     }
   }
);
于 2010-04-29T08:11:01.567 回答