srs流媒体服务器搭建及测试
SRS简介
SRS(Simple RTMP Server)是一款开源的流媒体服务器,使用C++开发。
官方文档
查看SRS的github获取编译方法:
github地址:https://github.com/winlinvip/srs#mirrors
开始搭建
Step 1: Get SRS.
git clone https://github.com/ossrs/srs cd srs/trunk
Step 2: Build SRS.
./configure && make
Note: If you have multiple cores such as 4 cores CPU, please use ./configure --jobs=4 && make --jobs=4 to speeed up the build.
Step 3: Run SRS
./objs/srs -c conf/srs.conf
推流(本地视频文件)
用ffmpeg推流,命令:
ffmpeg -re -i D:\work\1.mp4 -c copy -f flv rtmp://192.168.16.113:1935/live/streamName
Note: rtmp://server/xxx/xxx 至少要有两级目录,如果只有一级,rtmp://server/xxx 会失败
推流(摄像头)
先获取摄像头名称:
ffmpeg -list_devices true -f dshow -i dummy
如上图摄像头名称为"Integrated Camera",通过如下命令推流:
ffmpeg -f dshow -i video="Integrated Camera" -vcodec libx264 -acodec copy -preset:v ultrafast -tune:v zerolatency -f flv rtmp://192.168.16.113:1935/live/streamName
推流(使用OBS工具)
ffmpeg的命令行方式不太友好,推荐使用主流的OBS开源推流软件,使用简单,不容易出问题,使用方法点击《使用OBS进行推流》
播放
打开vlc,左上角--》媒体--》打开网络串流,输入推流地址rtmp://127.0.0.1:1935/live/streamName,就可以看到rtmp直播了