最近幫朋友的公司部署了一套分流+水印的直播系統html
順手打包成docker鏡像,方便你們須要用到的時候開箱即用,不須要百度一些零碎的文章 也可作簡單的直播服務,只需調整配置文件即可達到你的需求.nginx
需求:將直播流分流到兩個雲廠商的直播雲,一個有水印,一個無水印。使用hls播放git
朋友需求的拓撲示意圖:github
當前拓撲示意圖(阿某雲和騰訊雲不方便放出推流和拉流地址,有興趣的同窗能夠去申請玩一下)docker
基於docker-nginx-rtmp進行配置部署,這篇文章的意義是實現直播分流及直播畫面水印.bash
$ yum -y install docker #安裝docker
$ systemctl enable docker #配置開機啓動
$ systemctl start docker #啓動docker服務
複製代碼
#若是速度慢可以使用阿某雲:docker pull registry.cn-shenzhen.aliyuncs.com/ar414/nginx-rtmp-ffmpeg:v1
$ docker pull ar414/nginx-rtmp-ffmpeg
$ docker run -it -d -p 1935:1935 -p 8080:80 --rm ar414/nginx-rtmp-ffmpeg
複製代碼
rtmp://<server ip>:1935/stream/$STREAM_NAME
複製代碼
將證書複製到容器內,並在容器內修改nginx.conf配置文件,而後從新commit(操做容器內的文件都須要從新commit纔會生效)服務器
#/etc/nginx/nginx.conf
listen 443 ssl;
ssl_certificate /opt/certs/example.com.crt;
ssl_certificate_key /opt/certs/example.com.key;
複製代碼
Custom Streaming Server
rtmp://<server ip>:1935/stream
HLS播放測試工具:player.alicdn.com/aliplayer/s… (若是配置了證書則使用https)app
RTMP測試工具:PotPlayer工具
完整配置文件測試
rtmp {
server {
listen 1935; #端口
chunk_size 4000;
#RTMP 直播流配置
application stream {
live on;
#添加水印及分流,此次方便測試直接分流到當前服務器hls
#實際生產通常都分流到直播雲(騰訊雲、阿某雲、ucloud)
#只需把須要分流的地址替換便可
#有水印:rtmp://localhost:1935/hls/$name_wm
#無水印:rtmp://localhost:1935/hls/$name
exec ffmpeg -i rtmp://localhost:1935/stream/$name -i /opt/images/ar414.png
-filter_complex "overlay=10:10,split=1[ar414]"
-map '[ar414]' -map 0:a -s 1920x1080 -c:v libx264 -c:a aac -g 30 -r 30 -tune zerolatency -preset veryfast -crf 23 -f flv rtmp://localhost:1935/hls/$name_wm
-c:a libfdk_aac -b:a 128k -c:v libx264 -b:v 2500k -f flv -g 30 -r 30 -s 1920x1080 -preset superfast -profile:v baseline rtmp://localhost:1935/hls/$name;
}
application hls {
live on;
hls on;
hls_fragment 5;
hls_path /opt/data/hls;
}
}
}
複製代碼
application stream {
live on;
#分流至本機hls
exec ffmpeg -i rtmp://localhost:1935/stream/$name -i /opt/images/ar414.png
-filter_complex "overlay=10:10,split=1[ar414]"
-map '[ar414]' -map 0:a -s 1920x1080 -c:v libx264 -c:a aac -g 30 -r 30 -tune zerolatency -preset veryfast -crf 23 -f flv rtmp://localhost:1935/hls/$name_wm
-c:a libfdk_aac -b:a 128k -c:v libx264 -b:v 2500k -f flv -g 30 -r 30 -s 1920x1080 -preset superfast -profile:v baseline rtmp://localhost:1935/hls/$name;
#分流至騰訊雲
exec ffmpeg -i rtmp://localhost:1935/stream/$name -i /opt/images/ar414.png
-filter_complex "overlay=10:10,split=1[ar414]"
-map '[ar414]' -map 0:a -s 1920x1080 -c:v libx264 -c:a aac -g 30 -r 30 -tune zerolatency -preset veryfast -crf 23 -f flv rtmp://live-push.tencent.com/stream/$name_wm
-c:a libfdk_aac -b:a 128k -c:v libx264 -b:v 2500k -f flv -g 30 -r 30 -s 1920x1080 -preset superfast -profile:v baseline rtmp://live-push.tencent.com/stream/$name;
#分流至阿某雲
exec ffmpeg -i rtmp://localhost:1935/stream/$name -i /opt/images/ar414.png
-filter_complex "overlay=10:10,split=1[ar414]"
-map '[ar414]' -map 0:a -s 1920x1080 -c:v libx264 -c:a aac -g 30 -r 30 -tune zerolatency -preset veryfast -crf 23 -f flv rtmp://live-push.aliyun.com/stream/$name_wm
-c:a libfdk_aac -b:a 128k -c:v libx264 -b:v 2500k -f flv -g 30 -r 30 -s 1920x1080 -preset superfast -profile:v baseline rtmp://live-push.aliyun.com/stream/$name;
}
複製代碼
水印位置
水印圖片位置 | overlay值 |
---|---|
左上角 | 10:10 |
右上角 | main_w-overlay_w-10:10 |
左下角 | 10:main_h-overlay_h-10 |
右下角 | main_w-overlay_w-10 : main_h-overlay_h-10 |
overlay參數
參數 | 說明 |
---|---|
main_w | 視頻單幀圖像寬度(當前配置文件1920) |
main_h | 視頻單幀圖像高度(當前配置文件1080) |
overlay_w | 水印圖片的寬度 |
overlay_h | 水印圖片的高度 |