原创;linux_手把手教 ubuntu 搭建 rtmp 视频推送服务
1, 装置 conda,ffmpeg,nginx,nginx-rtmp-module
(倡议先批改主机 pip,conda 的源)
装置 conda, 创立环境::conda create -n rstp python=3.7
报错:Solving environment: | failed
top 可看出内存不足, 换个大内存机器
装置 ffmpeg:4.0
sudo add-apt-repository ppa:jonathonf/ffmpeg-4
sudo apt-get update
sudo apt-get install ffmpeg
如果应用了:sudo apt-get install ffmpeg(默认 2.8), 先卸载掉,防止烦扰
下载 Nginx 源码:wget http://nginx.org/download/ngi…
下载 nginx-rtmp-module:wget github.com/arut/nginx-rtmp-module/archive/master.zip
在 nginx 源码门路下执行:sudo ./configure –add-module=/home/john/nginx-rtmp-module-master/(留神前面的门路是解压后的 rtmp 源码门路)
报错:./configure: error: C compiler cc is not found
sudo apt-get install gcc
sudo apt-get install build-essential
报错:./configure: error: the HTTP rewrite module requires the PCRE library.
sudo apt-get install libpcre3 libpcre3-dev
报错:./configure: error: SSL modules require the OpenSSL library.
sudo apt-get install openssl libssl-dev
报错:./configure: error: the HTTP gzip module requires the zlib library.
sudo apt install zlib1g-dev
sudo make
sudo make install
验证:
胜利后重启 Nginx:systemctl restart nginx, 输出机器外网 ip,查看是否 nginx 默认页面
查看是否胜利:
/usr/local/nginx/sbin/nginx -V
是否蕴含: 相似 --add-module=nginx-rtmp-module
拜访 nginx 的 welcome,确保 nginx 装置无问题
2,nginx 配置批改
外层:
rtmp
{
server
{
listen 1935;
chunk_size 4096;
application live
{live on;}
}
}
http 的内层增加:
server {
listen 8080;
location /stat{
rtmp_stat all;
rtmp_stat_stylesheet stat.xsl;
}
location /stat.xsl{root /home/cjc/ 安装包 /nginx/nginx-rtmp-module-master;}
}
报错:nginx: [emerg] unknown directive “rtmp” in /etc/nginx/nginx.conf:12
换 nginx 版本,自己采纳了 1.7, 同时确保 nginx 应用的源码形式装置,如果 apt-get 装置,卸载洁净重新安装
此时 nginx 的配置如下:
#user nobody;
worker_processes 1;
events {worker_connections 1024;}
rtmp
{
server
{
listen 1935;
chunk_size 4096;
application live
{live on;}
}
}
http {
include mime.types;
default_type application/octet-stream;
sendfile on;
keepalive_timeout 65;
server {
listen 8080;
location /stat{
rtmp_stat all;
rtmp_stat_stylesheet stat.xsl;
}
location /stat.xsl{root /home/john/nginx-rtmp-module-master;}
}
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;}
}
}
3, 推流和拉流
记得 凋谢虚拟机端口,否则容易喜剧(telnet 测试下近程机端口)
终端(循环推送):ffmpeg -stream_loop -1 -i 1.mp4 -f flv rtmp://localhost:1935/live/test1
vlc:rtmp://118.25.10.138:1935/live/test1
奇怪的是: 以下参数组也仍然好使, 端口 1935 去掉.
终端(循环推送):ffmpeg -stream_loop -1 -i 1.mp4 -f flv rtmp://localhost/live/test1
vlc:rtmp://118.25.10.138/live/test1
查了下 rtmp 默认端口就是 1935, 所以不加端口,理论就是从 1935 获得的,故确保近程主机放开端口 1935
如何实现多路 ?
启动多个 ffmpeg 即可. 须要 注意 cpu 和网络占用 状况
rtmp://localhost/live/test2,rtmp://localhost/live/test3 等等
如何实现帧率控制 ?
参数 - r 管制帧率
nohup ffmpeg -stream_loop -1 -r 1 -i 3.mp4 -f flv rtmp://localhost/live/3 &
4,docker
查资料时发现,曾经有人制作了 dofacker,能够间接应用.
https://hub.docker.com/r/data…
参考
https://blog.csdn.net/u014552…
https://blog.csdn.net/u014552…