如何为flowplayer安全流媒体插件添加时间戳(使用rtmpe / wowza)

时间:2012-02-17 14:44:58

标签: security timestamp token flowplayer wowza

我一直在寻找过去2天找到解决此问题的方法,所以我们将非常感谢您的帮助。

我在另一端使用wowza服务器使用自定义令牌(我重新编译了插件swf)。它工作正常,但人们仍然可以复制我们的播放器代码并通过链接到我们的swf在他们的网站上播放。

我想在我的安全流配置中实现时间戳。我添加了一个时间戳并将urlResolvers添加到剪辑部分,但随后我的flowplayer给了我一个错误,它无法找到视频(无效链接是哈希和时间戳)。

我的问题是,如果我在播放机中使用时间戳,我还需要做什么其他配置?我需要对我的wowza服务器做些什么吗?因为很明显,添加时间戳,服务器无法找到视频。

请帮助我提供您的任何信息。谢谢! :)

1 个答案:

答案 0 :(得分:0)

时间戳用作安全令牌或模糊网址。你需要做的就是

// <![CDATA[
  window.onload = function () {
    $f("player", "flowplayer-3.2.16.swf", {
      plugins: {
        secure: {
          url: "flowplayer.securestreaming-3.2.8.swf",
          timestampUrl: "sectimestamp.php"
        }
      },
      clip: {
        baseUrl: "YOUR BASE URL",
        url: "trailer.flv",
        urlResolvers: "secure",
        scaling: "fit",
        onStart: function (clip) {
          document.getElementById("info").innerHTML = clip.baseUrl + "/" + clip.url;
        }
      }
    });
  };
  // ]]>
  </script>

在你的sectimestamp.php中,它是一行非常简单的代码:

<?php
echo time();
?>

然后你在video.php文件

中使用它
$hash = $_GET['h'];
$streamname = $_GET['v'];
$timestamp = $_GET['t'];
$current = time();
$token = '12359khlsdfhlasiu3'; // I recommend using a dynamically generated token
$checkhash = md5($token . '/' . $streamname . $timestamp);

if (($current - $timestamp) <= 2 && ($checkhash == $hash)) {
  $fsize = filesize($streamname);
  header('Content-Disposition: attachment; filename="' . $streamname . '"');
  if (strrchr($streamname, '.') == '.mp4') {
    header('Content-Type: video/mp4');
  } else {
    header('Content-Type: video/x-flv');
  }
  header('Content-Length: ' . $fsize);
  session_cache_limiter('nocache');
  header('Expires: Thu, 19 Nov 1981 08:52:00 GMT');
  header('Last-Modified: ' . gmdate('D, d M Y H:i:s') . ' GMT');
  header('Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0');
  header('Pragma: no-cache');
  $file = fopen($streamname, 'rb');
  print(fread($file, $fsize));
  fclose($file);
  exit;
} else {
  header('Location: /URL/');
}

这是在流媒体中使用它的一个例子