第一步:使用 Nginx 搭建 RTMP 服务器
- 推荐下载
Gryphon
版本的 Nginx:http://nginx-win.ecsds.eu/download/ - 按需下载或 Clone
nginx-rtmp-module
到 Nginx 根目录:https://github.com/arut/nginx-rtmp-module/ - 修改
nginx-win.conf
配置文件,添加如下代码:
rtmp {
server {
listen 2333; #监听端口
chunk_size 2000; #上传块儿的大小
application live { #创建应用
live on; #开启live应用
#allow publish 127.0.0.1;
#allow play all;
}
}
}
- 启动服务器:
nginx.exe -c .\conf\nginx-win.conf
第二步:使用 DJI Osmo Action (1代吃灰版) 推流,推流地址:
rtmp://局域网IP:2333/live/action
第三步:使用 PotPlayer 获取视频流,播放并录像
总结:使用高能耗的方法搭建720P压缩画质的有延迟监控画面录制系统。
(稍后补图)
版权属于:香菇
本文链接:https://blog.siitake.cn/monitor-by-action.html
本站未注明转载的文章均为原创,并采用
CC BY-NC-SA 4.0 授权协议,转载请注明来源,谢谢!