http://itindex.net/detail/48702-nginx-rtmp-http
一、串流播放方式
1、 HTTP方式
這種方式要下載FLV視訊檔案到本地播放,一旦FLV視訊檔案下載完成,就不會消耗伺服器的資源和頻寬,但是拖曳功能沒有RTMP/RTMP串流媒體方式強大,許多視訊網站都是用HTTP方式實現的,如:YouTube,土豆,酷6等
2、 RTMP/RTMP流媒體方式
這種方式不用下載FLV視頻文件到本地,可以實時的播放flv文件,可以任意拖曳播放進度條,但比較消耗伺服器的資源。
二、使用nginx來搭建flv串流伺服器
1.安裝git
yum install git
2.安裝相依性套件lib -devel openssl-devel expat-devel gettext-devel libtool mhash.x86_64 perl-Digest-SHA1.x86_64
3、安裝ffmpeg及其相依性套件(我的依賴套件在/us/地點可以依個人習慣而定)
以下安裝包能用yum安裝的,盡量用yum來安裝,沒有的再wget來獲得。
#wget http://www.tortall.net/projects/yasm/releases/yasm-1.2.0.tar.gz
#tar xzvf yasm-1.2.0.tar.gz#tar xzvf yasm-1.2.0.tar.ggz yasm-1.2.0
#./configure
#make
#make install
#cdo.
#cd x264
#./configure --enable-shared
#make
#make install
. lame/lame/3.99/lame-3.99.5.tar.gz
#tar xzvf lame-3.99.5.tar.gz
#cd lame-3.99.gz
#cd lame-3.99.5
-nasm
#make
#make install
#cd ..
#yum install libogged不過安裝後再安裝libvorbis,libvpx等會發現找不到libogg安裝位置,導致安裝失敗。
#wget http://downloads.xiph.org/releases/vorbis/libvorbis-1.3.3.tar.gz
#tar xzvf libvorbis-1.3.3.3.
#tar xzvf libvorbis-1.3.3.3.m.g>o
. 1.3.3
#./configure
#make
#make install
rom/gito.alcfolal.
#cd libvpx
#./configure --enable-shared
#make
#mget install#make
.net/專案/faac/faad2-src/faad2-2.7/faad2-2.7.tar.gz
#tar zxvf faad2-2.7.tar.gz
#tar zxvf faad2-2.7.tar.cdr.gzfa 77
7.
# ./configure
#make
#make install
#cd ..
#wwget http 1.28/faac- 1.28.tar.gz
#tar zxvf faac-1.28.tar.gz
#cd faac-1.28
#cd faac-1.28
#make install
#cd . .
#wget http://downloads.xvid.org/downloads/xvidcore-1.3.2.tar.gz
#tar zxvf xvidcore-1.3.2.tar.gzcd xvidcore/build /generic
# ./configure
#make
#make install
#cd ffmpeg
#./配置--prefix=/opt/ffmpeg/ --enable-version3 --enable-libvpx --enable-libfaac --enable-libmp3lame --enable-libvorbis --enable-libx264 --enable- libxvid --enable-shared --啟用-gpl --enable-postproc --enable-nonfree --enable-avfilter --enable-pthreads
#make && make install
#cd ..
/conf包括ld.so.conf.d/*.conf
/lib
/lib64
/usr/lib
/usr/lib
/ usr/local/lib64
/opt/ffmpeg/lib
三、安裝nginx模組
#wget http://h264.code-9.com/download/cinx7264. gz 。#yum install pcr
nginx找不到地址,只能手動下載,然後上傳了。
#tar zxvf nginx-1.2.6.tar.gz
#cd nginx-1.2.6
#./configuredprefix=/usr/local/in
#./configureaddnfix=/usr/local/in /nginx_mod_h264_streaming-2.2.7 --with-http_flv_module --with-http_gzip_static_module --with-http_stub_status_module --with-http_mp4_module --add-module=../nginx-rtmp-module --add-module=../nginx-rtmp-module/hls --with-cc-opt=-I/opt/ffmpeg/include --with- ld-opt='-L/opt/ffmpeg/lib -Wl,-rpath=/opt/ffmpeg/lib'
#make && make install
安裝yam 關鍵幀,才能實現拖曳播放
#下載yadmi
wget http://sourceforge.net/projects/yamdi/files/yamdi/1.4/yamdi-1.4.tar.gz/download yadmi
tar xzvf yamdi-1.4.tar.gz
cd yamdi-1.4
make && m install
給input. flv檔案新增關鍵幀,輸出為out.flv檔
四、修改nginx主設定檔
vi /usr/local/nginx/conf/nginx.conf
50, 30%; ;
error_log /usr/local/nginx/logs/error.log crit;
pid usr/local/
use epoll;
worker_connections 65535;
}
http {
包括 mime.types;
default_type 應用程式/八位元位元組流;
log_format main '$remote_ "$http_user_agent" '
gzip_ratio" ';
keepalive_timeout 60;
server_names_hash_bucket_size 128cli; _size 32k;
large_client_header_buffers 4 32k;gzip 開啟;
gzip_min_length 1100;
;
gzip_types 文字/純文字;
延遲輸出1460;
client_header_逾時3m;
end_timeout 3m;
寄送文件上; ? 80;
伺服器名稱 192.168.1.105;
root /usr/local/nginx/html/local/nginx/html;
limit_rate_after 5m; ####在flv視訊檔案下載了5M以後開始限速
####速度限制為512K
index index.html;
字符集 utf-8;
位置 ~
}
位置 ~ .mp4$ {
}
error_page 500 502 503 504 /50x.html;
root html;
}
}
啟動前偵測nginx.conf檔案設定
/usr/local/nginx/sbin/nginx -t -c /usr/nginx/conf/nginx.conf
或nginx -t
如果出錯根據報錯行數進行修正。
如果報錯:[error]: invalid PID number "" in "/var/run/nginx.pid"
usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx .conf
nginx啟動
/usr/local/nginx/sbin/nginx -s reload
測試
.
(其中player.swf為播放器,test1.flv為視訊檔案)
播放器要和視訊檔案放在一起。
視訊檔案位置依據nginx.conf中設定位置對應。
本文附件下載:play.rar (89 KB)
nginx-0.8.55.tar.gz (632.6 KB)
以上就介紹了用nginx搭建基於rtmp或http的flv、mp4串流媒體伺服器,包括了方面的內容,希望對PHP教程有興趣的朋友有所幫助。