ubuntu部署SRS提供RTMP服务+ffmpeg推流+VLC取流观看

第一步:获取SRS

git clone https://github.com/ossrs/srs
cd srs/trunk
或者使用git更新已有代码
git pull

第二步:编译SRS

./configure && make

第三步:编写SRS配置文件

编辑srs/conf下 的rtmp.conf文件并保存
# conf/rtmp.conf
listen              1935;
max_connections     1000;
vhost __defaultVhost__ {
}

第四步:启动SRS

./objs/srs -c conf/rtmp.conf

第五步:启动推流编码器

使用FFMPEG命令推流(FFMPEG安装教程:https://blog.csdn.net/u010782875/article/details/80679510)

假设服务器的IP是:192.168.1.197

ffmpeg -re -i ./test.flv -vcodec copy -acodec copy -f flv rtmp://192.168.1.197/live/livestream

第六步:观看RTMP流可以使用VLC观看

下载安装VLC,浏览器输入rtmp://192.168.1.197/live/livestream即可观看推送的视频

ubuntu部署SRS提供RTMP服务+ffmpeg推流+VLC取流观看_第1张图片

你可能感兴趣的:(SRS)