目錄
- 概述
- 編譯nginx
- 點(diǎn)播服務(wù)器的配置
- 直播服務(wù)器的配置
- 實(shí)時(shí)回看服務(wù)器的配置
- 問題
1. 概述
Nginx是一個(gè)非常出色的HTTP服務(wù)器栓拜,F(xiàn)Fmpeg是一個(gè)非常出色的音視頻解決方案。
兩者通過nginx的nginx-rtmp-module模塊組合可以搭建一個(gè)功能相對(duì)完善的流媒體服務(wù)器惠昔,可以支持RTMP和HLS流媒體協(xié)議幕与。
2. 編譯nginx
(1) 系統(tǒng)和版本
- ubuntu 16.04,這里使用的阿里云的ECS服務(wù)器上搭建的環(huán)境镇防。
- nginx-1.8.1
(2) nginx和nginx-rtmp-module下載
- 以root用戶在etc目錄下面創(chuàng)建rtmpServer
- 下載nginx-rtmp-module啦鸣,官方github地址:https://github.com/arut/nginx-rtmp-module
- 下載nginx并解壓, nginx的官方網(wǎng)站為:http://nginx.org/en/download.html
git clone https://github.com/arut/nginx-rtmp-module.git
wget http://nginx.org/download/nginx-1.16.1.tar.gz
tar -zxvf nginx-1.16.1.tar.gz
(3) 安裝nginx的依賴庫
sudo apt-get install libpcre3 libpcre3-dev
sudo apt-get install openssl libssl-dev
(4) 配置并編譯nginx
進(jìn)入到nginx-1.16.1安裝目錄来氧, 使用nginx的默認(rèn)配置诫给,添加nginx的rtmp模塊。 add-module為下載的nginx-rtmp-module文件路徑啦扬。
cd nginx-1.16.1
./configure --add-module=../nginx-rtmp-module
make
sudo make install
(5) 運(yùn)行測(cè)試nginx
進(jìn)入安裝目錄/usr/local/nginx中狂,運(yùn)行命令./sbin/nginx
注意:以后所有的命令都在/usr/local/nginx目錄運(yùn)行,也nginx配置文件的相對(duì)目錄扑毡。
打開瀏覽器在地址欄輸入云服務(wù)器的外網(wǎng)ip胃榕,如出現(xiàn)如下圖所顯示則證明nginx服務(wù)器搭建成功了。
如果訪問連接失敗瞄摊,則按以下步驟排查以下:
- 在服務(wù)器上執(zhí)行命令“curl localhost”勋又,如果返回Welcome to nginx的內(nèi)容,則表示服務(wù)器上nginx已啟動(dòng)成功换帜。
- 如果nginx已啟動(dòng)成功楔壤,而外網(wǎng)訪問云服務(wù)器并沒有返回nginx的內(nèi)容,則需檢查云服務(wù)器的安全組配置惯驼,需要添加80端口的訪問權(quán)限蹲嚣。
3. 點(diǎn)播服務(wù)器的配置
(1) nginx 配置
通過上一步nginx服務(wù)器已經(jīng)搭建完成递瑰,然后我們就可以開啟一個(gè)視頻點(diǎn)播的服務(wù)了。
打開配置文件nginx.conf端铛,默認(rèn)的配置如下:
#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;
}
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 {
listen 80;
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;
}
# proxy the PHP scripts to Apache listening on 127.0.0.1:80
#
#location ~ \.php$ {
# proxy_pass http://127.0.0.1;
#}
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
#location ~ \.php$ {
# root html;
# fastcgi_pass 127.0.0.1:9000;
# fastcgi_index index.php;
# fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name;
# include fastcgi_params;
#}
# deny access to .htaccess files, if Apache's document root
# concurs with nginx's one
#
#location ~ /\.ht {
# deny all;
#}
}
# another virtual host using mix of IP-, name-, and port-based configuration
#
#server {
# listen 8000;
# listen somename:8080;
# server_name somename alias another.alias;
# location / {
# root html;
# index index.html index.htm;
# }
# HTTPS server
#
#server {
# listen 443 ssl;
# server_name localhost;
# ssl_certificate cert.pem;
# ssl_certificate_key cert.key;
# ssl_session_cache shared:SSL:1m;
# ssl_session_timeout 5m;
# ssl_ciphers HIGH:!aNULL:!MD5;
# ssl_prefer_server_ciphers on;
# location / {
# root html;
# index index.html index.htm;
# }
#}
}
添加RTMP的配置:
worker_processes 1;
events {
worker_connections 1024;
}
rtmp { #RTMP服務(wù)
server {
listen 1935; #//服務(wù)端口
chunk_size 4096; #//數(shù)據(jù)傳輸塊的大小
application vod {
play /opt/video; #//視頻文件存放位置泣矛。
}
}
}
http {
include mime.types;
default_type application/octet-stream;
sendfile on;
keepalive_timeout 65;
server {
listen 80;
server_name localhost;
location / {
root html;
index index.html index.htm;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
}
}
目錄/opt/video
為存放視頻文件的位置疲眷,例如放置一個(gè)test.mp4文件禾蚕。然后重啟一下nginx
sudo ./sbin/nginx -s reload
(2) 客戶端使用軟件進(jìn)行測(cè)試
使用支持rtmp的播放器比如VLC播放器來驗(yàn)證:
- 媒體-》打開網(wǎng)絡(luò)串流-》網(wǎng)絡(luò)
- 輸入
rtmp://36.106.1.1/vod/test.mp4
, 點(diǎn)擊播放即可以播放了。
4. 直播服務(wù)器的配置
(1) 服務(wù)器配置
接著在點(diǎn)播服務(wù)器配置文件的基礎(chǔ)之上添加直播服務(wù)器的配置狂丝。一共2個(gè)位置换淆,第一處就是給RTMP服務(wù)添加一個(gè)application,這個(gè)名字可以任意起几颜,也可以起多個(gè)名字倍试,由于是直播這里把它命名為live,第二處就是添加兩個(gè)location字段蛋哭,字段的內(nèi)容請(qǐng)直接看文件县习。
worker_processes 1;
events {
worker_connections 1024;
}
rtmp {
server {
listen 1935;
chunk_size 4096;
application vod {
play /opt/video;
}
application live{ #第一處添加的直播字段
live on;
}
}
}
http {
include mime.types;
default_type application/octet-stream;
sendfile on;
keepalive_timeout 65;
server {
listen 80;
server_name localhost;
location /stat { #第二處添加的location字段。
rtmp_stat all;
rtmp_stat_stylesheet stat.xsl;
}
location /stat.xsl { #第二處添加的location字段谆趾。
root /etc/rtmpServer/nginx-rtmp-module/;
}
location / {
root html;
index index.html index.htm;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
}
}
添加完這兩處之后躁愿,重新啟動(dòng)nginx打開瀏覽器查看http://36.106.1.1/stat
,是否有如下圖顯示
有沒有看到紅框框的live字樣呢?如果可以顯示出來沪蓬,說明配置生效了彤钟。
(2) 使用OBS推送直播流到服務(wù)器
接下來我們推送一個(gè)節(jié)目到服務(wù)器
- 安裝OBS軟件,安裝方式自行百度跷叉。
-
在來源框添加一個(gè)本地文件逸雹。
- 點(diǎn)擊設(shè)置,配置節(jié)目的輸出流云挟,文件路徑“rtmp://36.106.1.1/live/test”梆砸,如果發(fā)現(xiàn)直播比較卡,把重新播放輸出的分辨率調(diào)低一些园欣。
- 點(diǎn)擊開始錄制帖世。
- 查看我們錄制的節(jié)目,服務(wù)器有沒有接收到呢俊庇?打開我的服務(wù)器地址“http://36.106.1.1/stat”查看一下
- 播放的地址就是“rtmp://36.106.1.1/live/test”狮暑,使用VLC播放器播放即可。
5. 實(shí)時(shí)回看服務(wù)器的配置
如果直播服務(wù)能夠把節(jié)目錄制在本地辉饱,我們就可以直接進(jìn)行回看先前的節(jié)目了搬男。繼續(xù)看nginx的配置。
(1) 服務(wù)器配置
worker_processes 1;
events {
worker_connections 1024;
}
rtmp {
server {
listen 1935;
chunk_size 4096;
application vod {
play /opt/video;
}
application live {
live on;
hls on; #這個(gè)參數(shù)把直播服務(wù)器改造成實(shí)時(shí)回放服務(wù)器彭沼。
wait_key on; #對(duì)視頻切片進(jìn)行保護(hù)缔逛,這樣就不會(huì)產(chǎn)生馬賽克了。
hls_path /opt/video/hls; #切片視頻文件存放位置。
hls_fragment 10s; #每個(gè)視頻切片的時(shí)長(zhǎng)褐奴。
hls_playlist_length 60s; #總共可以回看的事件按脚,這里設(shè)置的是1分鐘。
hls_continuous on; #連續(xù)模式敦冬。
hls_cleanup on; #對(duì)多余的切片進(jìn)行刪除辅搬。
hls_nested on; #嵌套模式。
}
}
}
http {
include mime.types;
default_type application/octet-stream;
sendfile on;
keepalive_timeout 65;
server {
listen 80;
server_name localhost;
location /stat {
rtmp_stat all;
rtmp_stat_stylesheet stat.xsl;
}
location /stat.xsl {
root /usr/local/nginx/nginx-rtmp-module/;
}
location /live { #這里也是需要添加的字段脖旱。
types {
application/vnd.apple.mpegurl m3u8;
video/mp2t ts;
}
alias /opt/video/hls;
expires -1;
add_header Cache-Control no-cache;
}
location / {
root html;
index index.html index.htm;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
}
}
添加完成后需要重新啟動(dòng)nginx
(2) 查看視頻文件是否真的錄制上沒有堪遂,已經(jīng)產(chǎn)生切片視頻文件了。其中還有一個(gè)index.m3u8萌庆。
(3) 播放視頻溶褪,這次可是http開頭的了,“http://36.106.1.1/live/test/index.m3u8”践险。
(4) 已經(jīng)可以播放了猿妈,如何回看呢?其實(shí)這個(gè)index.m3u8文件僅僅是目錄巍虫。想回看那個(gè)就播放那個(gè).ts文件就可以了彭则。
6. 問題
6.1 測(cè)試的時(shí)候居然把ip地址寫錯(cuò)了。
參考Read more about debug log查看nginx的debug日志垫言。