網易視訊雲:用Nginx搭建flv,mp4,hls流媒體伺服器
網易視訊雲是網易傾力打造的一款基於雲端計算的分散式多媒體處理叢集和專業音視訊技術,提供穩定流暢、低時延、高併發的視訊直播、錄製、儲存、轉碼及點播等音視訊的PAAS服務,線上教育、遠端醫療、娛樂秀場、線上金融等各行業及企業使用者只需經過簡單的開發即可打造線上音視訊平臺。今天,網易視訊雲就給大家分享關於用Nginx搭建flv,mp4,hls流媒體伺服器的技術乾貨!
模組:nginx_mod_h264_streaming(支援h264編碼MP4格式的視訊)
模組:http_flv_module (支援flv)
模組:http_mp4_module (支援mp4)
模組: nginx-rtmp-module (支援rtmp協議,也支援HLS)
(1)模組下載和解壓
wget http://nginx.org/download/nginx-1.6.0.tar.gz
wget http://h264.code-shop.com/download/nginx_mod_h264_streaming-2.2.7.tar.gz
wget http://sourceforge.net/projects/pcre/files/pcre/8.35/pcre-8.35.tar.gz
wget http://zlib.net/zlib-1.2.8.tar.gz
wget http://www.openssl.org/source/openssl-1.0.1g.tar.gz
wget -O nginx-rtmp-module.zip https://github.com/arut/nginx-rtmp-module/archive/master.zip
unzip nginx-rtmp-module.zip
tar -zxvf nginx-1.6.0.tar.gz
tar -zxvf nginx_mod_h264_streaming-2.2.7.tar.gz
tar -zxvf pcre-8.35.tar.gz
tar -zxvf zlib-1.2.8.tar.gz
tar -zxvf openssl-1.0.1g.tar.gz
(2)配置命令,會生成makefile檔案
./configure \
--prefix=/usr/local/nginx \
--add-module=../nginx_mod_h264_streaming-2.2.7 \
--add-module=../nginx-rtmp-module \
--with-http_flv_module \
--with-http_mp4_module \
--with-http_stub_status_module \
--with-http_ssl_module \
--with-pcre=../pcre-8.35 \
--with-zlib=../zlib-1.2.8 \
--with-debug
(3)編譯和安裝
make
make install
(4)問題解決
【1】如果在configure過程中出現以下錯誤:
/root/nginx_mod_h264_streaming-2.2.7/src/ngx_http_streaming_module.c: In function ‘ngx_streaming_handler’:
/root/nginx_mod_h264_streaming-2.2.7/src/ngx_http_streaming_module.c:158: error: ‘ngx_http_request_t’ has no member named ‘zero_in_uri’
make[1]: *** [objs/addon/src/ngx_http_h264_streaming_module.o] Error 1
make[1]: Leaving directory `/root/nginx-0.8.54'
make: *** [build] Error 2
那麼將src/ngx_http_streaming_module.c檔案中以下程式碼刪除或者是註釋掉就可以了:
/* TODO: Win32 */
if (r->zero_in_uri)
{
return NGX_DECLINED;
}
如果你沒有對這個檔案做個更改,那麼應該在原始碼的第157-161行。這個問題是由於版本原因引起,在此不再討論。
修改完之後,記得先執行make clean,然後再進行重新執行configure、make,最後make install。
【2】如果在編譯過程中出現以下錯誤:
cc1: warnings being treated as errors
那麼修改/nginx-1.6.0/objs/Makefile檔案
CFLAGS = -pipe -O -W -Wall -Wpointer-arith -Wno-unused-parameter -Werror -g -D_LARGEFILE_SOURCE -DBUILDING_NGINX -I../nginx-rtmp-module-master
把上面的 -Werror去掉,不把warnning當作error處理
(5)Nginx的配置
#user nobody;
worker_processes 1;
#error_log logs/error.log;
#error_log logs/error.log notice;
#error_log logs/error.log info;
#pid logs/nginx.pid;
events {
worker_connections 1024;
}
rtmp {
server {
listen 1935;
chunk_size 4000;
# video on demand for flv files
application vod {
play /usr/local/nginx/html/flv;
}
# video on demand for mp4 files
application vod2 {
play /usr/local/nginx/html/mp4;
}
application hls {
live on;
hls on;
hls_path /tmp/hls;
}
# MPEG-DASH is similar to HLS
application dash {
live on;
dash on;
dash_path /tmp/dash;
}
}
}
http {
include mime.types;
default_type application/octet-stream;
#log_format main '$remote_addr - $remote_user [$time_local] "$request" '
# '$status $body_bytes_sent "$http_referer" '
# '"$http_user_agent" "$http_x_forwarded_for"';
#access_log logs/access.log main;
sendfile on;
#tcp_nopush on;
#keepalive_timeout 0;
keepalive_timeout 65;
#gzip on;
server {
# in case we have another web server on port 80
listen 8080;
server_name localhost;
#charset koi8-r;
#access_log logs/host.access.log main;
location / {
root html;
index index.html index.htm;
}
#error_page 404 /404.html;
# redirect server error pages to the static page /50x.html
#
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
location ~ \.mp4$ {
mp4;
}
location ~ \.flv$ {
flv;
}
# This URL provides RTMP statistics in XML
location /stat {
rtmp_stat all;
rtmp_stat_stylesheet stat.xsl;
}
location /stat.xsl {
# XML stylesheet to view RTMP stats.
# Copy stat.xsl wherever you want
# and put the full directory path here
root /var/www/;
}
location /hls {
# Serve HLS fragments
types {
application/vnd.apple.mpegurl m3u8;
video/mp2t ts;
}
#where the m3u8 and ts files are
alias /usr/local/nginx/html/hls;
#live streaming setting
#root /tmp;
#add_header Cache-Control no-cache;
}
location /dash {
# Serve DASH fragments
root /tmp;
add_header Cache-Control no-cache;
}
}
}
(6)用ffmpeg生成測試序列
【1】對於mp4檔案,生成moov資訊前移的mp4格式,適合流媒體播放。
ffmpeg -i /home/administrator/Videos/Amelia_720p.mp4 -c:v libx264 -c:a libvo_aacenc -f mp4 -movflags faststart /home/administrator/Videos/moovfront.mp4
【2】對於flv檔案,用flvmeta工具在metadata中注入關鍵幀的資訊,支援隨意拖動播放。
ffmpeg -i/home/administrator/Videos/Baroness.mp4 -vcodec libx264 -acodec libvo_aacenc -b:a 128k -ar 44100 -ac 2 -f flv /home/administrator/Videos/Baroness.flv
flvmeta -U -m -k /home/administrator/Videos/Baroness.flv /home/administrator/Videos/Baroness_meta.flv
【3】對於flv的播放,或者直接生成f4v格式的檔案。
ffmpeg -i /home/administrator/Videos/sample/vc1_1080p.mkv -acodec libfdk_aac -ac 2 -b:a 128k -ar 48000 -vcodec libx264 -pix_fmt yuv420p -profile:v main -level 32 -b:v 1000K -r 29.97 -g 30 -s 960x540 -f f4v /home/administrator/Videos/hddvd_1000k.f4v
(7)Nginx啟動,重啟,關閉命令
start nginx 開啟
nginx -s stop 快速關閉
nginx -s quit 完全關閉
nginx -s reload 修改過配置檔案,快速關閉舊的,開啟新服務
nginx -s reopen 重新開啟日誌檔案
[停止操作]
停止操作是通過向nginx程序傳送訊號來進行的
步驟1:查詢nginx主程序號
ps -ef | grep nginx
在程序列表裡 面找master程序,它的編號就是主程序號了。
步驟2:傳送訊號
從容停止Nginx:
kill -QUIT 主程序號
快速停止Nginx:
kill -TERM 主程序號
強制停止Nginx:
pkill -9 nginx
另外, 若在nginx.conf配置了pid檔案存放路徑則該檔案存放的就是Nginx主程序號,如果沒指定則放在nginx的logs目錄下。有了pid文 件,我們就不用先查詢Nginx的主程序號,而直接向Nginx傳送訊號了,命令如下:
kill -訊號型別 '/usr/nginx/logs/nginx.pid'
[平滑重啟]
如果更改了配置就要重啟Nginx,要先關閉Nginx再開啟?不是的,可以向Nginx 傳送訊號,平滑重啟。
平滑重啟命令:
kill -HUP 主程序號或程序號檔案路徑
或者使用
/usr/nginx/sbin/nginx -s reload
注意,修改了配置檔案後最好先檢查一下修改過的配置檔案是否正 確,以免重啟後Nginx出現錯誤影響伺服器穩定執行。判斷Nginx配置是否正確命令如下:
nginx -t -c /usr/nginx/conf/nginx.conf
或者
/usr/nginx/sbin/nginx -t
(8)播放測試
啟動nginx後測試:
http://192.168.1.105/player.swf?type=http&file=test1.flv
說明: #我的ip是192.168.1.105
#player.swf是我的JW Player播放器
#http是表示居於http分發方式
#test1.flv是我的flv視訊檔案
[flash]
http://localhost:8080/mediaplayer/player.swf?type=http&file=../mp4/HaroldKumar.mp4
http://localhost:8080/mediaplayer/player.swf?type=http&file=../flv/Baroness.flv
[hls --> flash]
http://localhost:8080/jwplayer/HLSprovider/test/jwplayer6/index2.html
[hls]
http://10.240.155.183:8080/hls/movie.m3u8
[rtmp --> http]
http://10.240.155.183:8080/flowplayer/index2.html
[live stream]
./ffmpeg -loglevel verbose -re -i /home/administrator/Videos/sample/h264_720p_hp_5.1_6mbps_ac3_unstyled_subs_planet.mkv -vcodec libx264 -vprofile baseline -acodec libmp3lame -ar 44100 -ac 2 -f flv rtmp://localhost:1935/hls/movie
更多技術分享,請關注網易視訊雲官方網站(http://vcloud.163.com/)或者網易視訊雲官方微信(vcloud163)進行交流與諮詢。