在nginx基本配置中, configure 时加入 --with-http_mp4_module 参数(支持mp4)以及 --with-http_flv_module 参数(支持flv)即可,参看:http://wiki.nginx.org/HttpMp4Module
./configure --add-module=../nginx_mod_h264_streaming-2.2.7 --with-http_ssl_module --with-pcre=../pcre-8.32 --with-zlib=../zlib-1.2.7 --user=www --group=www --prefix=/usr/local/nginx2 --with-http_mp4_module --with-http_flv_module --with-http_stub_status_module
在 nginx.conf 中加入mp4的配置如下:
location ~ \.mp4$ {
mp4 ;
limit_rate_after 2m; }
这样配置后,nginx即支持HTTP伪流协议(HTTP Pseudo-Streaming)。对Flash而言,http请求需加入start参数,来指定从哪里下载。对HTML5, 包括Android, iOS手机,由于支持"Accept-Range" HTTP 1.1 header头,伪流天然支持,不需要如上配置。 (责任编辑:IT) |