突然就想搭个直播平台,虽然还没想到有什么用处,了解了下貌似 obs + nginx + rtmp + jwplayer 是最简单的方案了。

说明:我使用 debian 系统,直接 root 登录。

下载 nginx 源码

使用 apt-get source nginx 未成功,不得已直接从 nginx 网站 下载源码

1
wget http://nginx.org/download/nginx-1.13.1.tar.gz

下载 rtmp 源码

rtmp 模块是非内置模块,所以必须单独下载

1
wget https://github.com/arut/nginx-rtmp-module/archive/master.zip

解压源代码

1
2
3
apt-get install unzip
tar zxvf nginx-1.13.1.tar.gz
unzip master.zip

安装编译环境

1
apt-get install build-essential

安装相应库文件

1
apt-get install libpcre3 libpcre3-dev libssl-dev

重新编译 Nginx

由于我已经使用 apt-get install nginx-full 安装过 nginx,所以想保留原有设置只是新增 rtmp 模块,故先查看原有参数

1
nginx -V

在末尾添加新参数然后编译安装

1
2
3
4
5
 cd nginx-1.13.1
./configure --prefix=/etc/nginx --sbin-path=/usr/sbin/nginx --conf-path=/etc/nginx/nginx.conf --error-log-path=/var/log/nginx/error.log --http-log-path=/var/log/nginx/access.log --pid-path=/var/run/nginx.pid --lock-path=/var/run/nginx.lock --http-client-body-temp-path=/var/cache/nginx/client_temp --http-proxy-temp-path=/var/cache/nginx/proxy_temp --http-fastcgi-temp-path=/var/cache/nginx/fastcgi_temp --http-uwsgi-temp-path=/var/cache/nginx/uwsgi_temp --http-scgi-temp-path=/var/cache/nginx/scgi_temp --user=nginx --group=nginx --with-http_ssl_module --with-http_realip_module --with-http_addition_module --with-http_sub_module --with-http_dav_module --with-http_flv_module --with-http_mp4_module --with-http_gunzip_module --with-http_gzip_static_module --with-http_random_index_module --with-http_secure_link_module --with-http_stub_status_module --with-http_auth_request_module --with-threads --with-stream --with-stream_ssl_module --with-http_slice_module --with-mail --with-mail_ssl_module --with-file-aio --with-http_v2_module --with-cc-opt='-g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2' --with-ld-opt='-Wl,-z,relro -Wl,--as-needed' --with-ipv6 --add-module=/root/nginx-rtmp-module-master

make
make install

修改配置文件

1
vim /etc/nginx/nginx.conf

在末尾添加 rtmp 配置项,注意其中的 allow 选项,我设置为了任何人可以观看和发布

1
2
3
4
5
6
7
8
9
10
11
12
rtmp {
server {
listen 1935;
chunk_size 4096;
application live {
live on;
record off;
allow publish all;
allow play all;
}
}
}

安装 ffmpeg

1
2
3
4
sh -c 'echo "deb http://www.deb-multimedia.org jessie main" >> /etc/apt/sources.list'
apt-get update
apt-get install deb-multimedia-keyring
apt-get install ffmpeg

重启 nginx

注意如果开启了防火墙,请先添加规则允许 1935端口

1
/etc/init.d/nginx restart

至此,服务器部分就搭建完毕,可以接收 rtmp 协议的推送和播放了,obs 可以作为推送端,vlc 可以作为播放器,如果想网页直接观看,则可以使用 jwplayer 作为前端,注意 jwplayer 在 safari 上可能会提示 media sources not exist,只需要安装并启用 falsh 即可。