nginx & flv

1. install nginx

sudo apt-get install nginx

2. setup nginx to support flv streaming

edit  /etc/nginx/sites-enabled/default like this

server {
  listen   80 default;
  server_name  localhost;

  access_log  /var/log/nginx/localhost.access.log;

  location / {
    root   /var/www/nginx-default;
    index  index.html index.htm;
  }

  location /doc {
    root   /usr/share;
    autoindex on;
    allow 127.0.0.1;
    deny all;
  }
  location /images {
    root   /usr/share;
    autoindex on;
  }

  location ~ \.flv$ {
    root /var/www/nginx-default;
    flv;
  }
}


3. test.html

<html>
<body>

<h1>Adobe Flash Player</h1>


<object width="640" height="480">
  <param name="movie" value="JWPlayer.swf"/>
  <param name="allowFullScreen" value="true"/>
  <param name="allowscriptaccess" value="always"/>
  <param name='flashvars' value="file=1.f4v">
  <embed src="JWPlayer.swf" flashvars="file=1.f4v" width="640" height="480" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true">
  </embed>
</object>

</body>
</html>





test2.html<javascript>

<html>
    
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
</head>

<body>  

<h1>Adobe Flash Player</h1> 
<div id='player'>This div will be replaced by the JW Player.</div>
 
<script type='text/javascript' src='./jwplayer.js'></script>
 
<script type='text/javascript'>
 jwplayer('player').setup({
 'flashplayer': './JWPlayer.swf',
 'width': '640',
 'height': '480',
 'controlbar': 'bottom',
 'file': encodeURI("./videos/犬夜叉/123.flv")
 });
 </script>

</body>
</html> 


Note:

       1) please download JWPlayer.swf from http://www.longtailvideo.com/players/jw-flv-player/

             and put 'player.swf'   'jwplay.js' to your web root directory, rename 'player.swf' as 'JWPlayer.swf'



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

duanbeibei

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值