0

したがって、フロープレーヤーを使用して rtmp ストリームを再生しますが、現在、ストリームの Web ビューにはストリームの「キー」または URL が表示されます。

これが真の場合、他のユーザーがストリームを「引き継ぐ」ことができますが、これは望ましくありません..したがって、Web コードで「キー」または URL を非表示にできる必要があります。多くの一般的なRTMPストリーマープログラムがストリーミング時に認証をサポートしていないため、認証は必要ありません。

そして、あなたが言う前に、私はすでにhttp://flash.flowplayer.org/demos/plugins/streaming/secure-streaming.htmlを見てきましたが、固定の .flv ストリームのみをストリーミングする RTMP で動作させることはできません.. .

ここに私のコードがあります:

<a  
style="display:block;width:960px;height:540px;margin:10px auto"
id="stream">
</a>
<script type="text/javascript">
flowplayer("stream", "http://xxx.net/live/files/flowplayer-3.2.15.swf",
{
clip: {
url: 'stream name url key goes here',
live: true,
provider: 'rtmp'
},
plugins: {
rtmp: {
url: 'http://xxx.net/live/files/flowplayer.rtmp-3.2.11.swf',
netConnectionUrl: 'rtmp://xxx.net/live'
}
}
}
);
</script>
4

1 に答える 1

1

PHPファイル(または別の代替ファイル)を使用してURLを動的に提供する必要があります。これはサーバー側のコードである必要があり、次のようになります

<?php
  $hash = $_GET['h'];
  $streamname = $_GET['v'];
  $timestamp = $_GET['t'];
  $current = time();
  $token = 'sn983pjcnhupclavsnda';
  $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/');
  }

?>

$streamname は JS の URL セクションから取得されることに注意してください。

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

Flow Player は URL を難読化するため、誰かがソースを Flash Player から直接取得しようとすると、domain.com/md5hashtimestamp/md5hashtoken/md5hashstreamname/trailer.flv になり、ソースを表示するとファイル名だけが表示されますが、ドメインなどは、php ファイルを通じて提供されます。

于 2013-09-06T03:49:46.713 に答える