標籤:
http://blog.csdn.net/xst686/article/details/9763995
加入流媒體擴充後要重啟 httpd
flv 流媒體
<textarea style="line-height: 15px ! important; font-size: 12px ! important; -moz-tab-size: 4; width: 548px; height: 51px;" class="crayon-plain print-no" readonly="readonly" data-settings="">wget http://people.apache.org/~pquerna/modules/mod_flvx.c /usr/local/apache/bin/apxs -c -i mod_flvx.c</textarea>
12 |
wgethttp://people.apache.org/~pquerna/modules/mod_flvx.c/usr/local/apache/bin/apxs-c-i mod_flvx.c |
httpd.conf 加入
<textarea style="line-height: 15px ! important; font-size: 12px ! important; -moz-tab-size: 4; width: 507px; height: 50px;" class="crayon-plain print-no" readonly="readonly" data-settings="">LoadModule flvx_module modules/mod_flvx.so AddHandler flv-stream .flv</textarea>
12 |
LoadModuleflvx_module modules/mod_flvx.soAddHandler flv-stream.flv |
mp4 流媒體
<textarea style="line-height: 15px ! important; font-size: 12px ! important; -moz-tab-size: 4; width: 846px; height: 107px;" class="crayon-plain print-no" readonly="readonly" data-settings="">wget http://h264.code-shop.com/download/apache_mod_h264_streaming-2.2.7.tar.gz tar -zxvf apache_mod_h264_streaming-*.tar.gz cd apache_mod_h264_streaming-* ./configure --with-apxs=/usr/local/apache/bin/apxs make make install</textarea>
123456 |
wgethttp://h264.code-shop.com/download/apache_mod_h264_streaming-2.2.7.tar.gztar -zxvfapache_mod_h264_streaming-*.tar.gzcd apache_mod_h264_streaming-*./configure--with-apxs=/usr/local/apache/bin/apxsmakemake install |
httpd.conf 加入
<textarea style="line-height: 15px ! important; font-size: 12px ! important; -moz-tab-size: 4; width: 602px; height: 53px;" class="crayon-plain print-no" readonly="readonly" data-settings="">LoadModule h264_streaming_module modules/mod_h264_streaming.so AddHandler h264-streaming.extensions .mp4</textarea>
12 |
LoadModuleh264_streaming_module modules/mod_h264_streaming.soAddHandler h264-streaming.extensions.mp4 |
配置Nginx、Apache伺服器支援flv流媒體拖動播放
http://www.php1.cn/article/59985.html
nginx下配置flv拖動
首先,下載nginx源碼包,以0.8.54版本為例
wget http://nginx.org/download/nginx-0.8.54.tar.gz
重編譯之前,停掉nginx服務。查看一下nginx原來的編譯參數
/usr/local/nginx/sbin/nginx ?V
在原來的參數基礎上添加flv的支援
0.8.54版本為例,進行編譯
./configure --user=www --group=www --prefix=/usr/local/nginx --with-http_stub_status_module --with-http_ssl_module --with-http_gzip_static_module --with-ipv6 --with-http_flv_module
make && make install
編譯完成後,在nginx.conf檔案裡添加flv支援
location ~ \.flv$ {
flv;
}
啟動nginx,使用curl ?I 來查看是否成功。
主要查看的是 Content-Length的數值。和加上參數start 之後進行對比。
例如:
curl -I http://video.zhangyuc.com/flv/110718/video.flv
Content-Length: 1218888
對比
curl -I http://video.zhangyuc.com/flv/110718/video.flv?<strong>start=12345</strong>
Content-Length: 1206556
以上樣本只列出Content-Length的值。
假如加上參數之後,Content-Length值依舊和之前相同,則表示配置沒有成功
apache下配置flv拖動
Windows伺服器下配置拖動,一共需要兩步
第一步,下載mod_flvx.so並放到apache目錄下的modules檔案夾下
:
http://www.mosalov.com/files/mod_flvx.so
第二步,在apache的設定檔中,添加以下內容,重啟apache服務
LoadModule flvx_module modules/mod_flvx.so
AddHandler flv-stream .flv
linux伺服器下配置拖動,需要下載mod_flvx.c檔案後進行編譯
第一步,下載mod_flvx.c,並進行編譯。
wget https://github.com/osantana/mod_flvx/blob/master/mod_flvx.c
使用apxs進行編譯,編譯前,請檢查apxs版本
apxs -c -i ./mod_flvx.c
第二步,在apache的conf.d目錄下建立mod_flvx.conf檔案,並寫入以下內容
LoadModule flvx_module /usr/lib/apache2/modules/mod_flvx.so
AddHandler flv-stream .flv
配置完成後重啟即可
centos 6.4 Apache 配置 flv mp4.h264 流媒體拖動