Window平台 EasyDarwin 和 ffmpeg 将视频文件转成RTSP直播推流
一、软件
1、EasyDarwin 国内开源的直播推流服务软件,官方下载地址:https://github.com/EasyDarwin/EasyDarwin/releases
2、ffmpeg 视频处理软件,官方下载地址:https://ffmpeg.zeranoe.com/builds/
二、ffmpeg
1、解压并进入到bin目录
2、配置用户环境变量
将上图的bin目录路径拷贝,添加到系统变量:path中即可
三、EasyDarwin使用(官方文档:https://github.com/EasyDarwin/EasyDarwin,滚动到下面看README.md)
-
直接运行(Windows)
EasyDarwin.exe
以
Ctrl + C
停止服务 -
以服务启动(Windows)
ServiceInstall-EasyDarwin.exe
以 ServiceUninstall-EasyDarwin.exe 卸载 EasyDarwin 服务
-
直接运行(Linux/macOS)
cd EasyDarwin ./easydarwin # Ctrl + C
-
以服务启动(Linux/macOS)
cd EasyDarwin ./start.sh # ./stop.sh
-
查看界面
打开浏览器输入 http://localhost:10008, 进入控制页面,默认用户名密码是admin/admin
-
测试推流
ffmpeg -re -i C:\Users\Administrator\Videos\test.mkv -rtsp_transport tcp -vcodec h264 -f rtsp rtsp://localhost/test
ffmpeg -re -i C:\Users\Administrator\Videos\test.mkv -rtsp_transport udp -vcodec h264 -f rtsp rtsp://localhost/test
-
测试播放
ffplay -rtsp_transport tcp rtsp://localhost/test
ffplay rtsp://localhost/test
效果图
二次开发
准备工具
# go tools
go get -u -v github.com/kardianos/govendor
go get -u -v github.com/penggy/gobuild
# npm tools
npm i -g apidoc
npm i -g rimraf
编译命令
-
获取代码
cd $GOPATH/src/github.com mkdir EasyDarwin && cd EasyDarwin git clone https://github.com/EasyDarwin/EasyDarwin.git --depth=1 EasyDarwin cd EasyDarwin
-
以开发模式运行
npm run dev
-
以开发模式运行前端 Run as dev mode
npm run dev:www
-
编译前端 Build www
cd web_src && npm i cd .. npm run build:www
-
编译 Windows 版本 Build windows version
npm run build:win
-
编译 Linux/macOS 版本 (在 bash 环境下执行) Build linux/macOS version
npm run build:lin
-
清理编译文件 Clean
npm run clean
-
打包 Pack
# install pack npm i -g @penggy/pack # for windows npm run build:win pack zip # for linux/macOS npm run build:lin pack tar # for clean pack clean