系统相关
首页 > 系统相关> > Ubuntu 系统下搭建 SRS 流媒体服务器

Ubuntu 系统下搭建 SRS 流媒体服务器

作者:互联网

一、克隆项目

git clone https://github.com/ossrs/srs

二、执行编译

cd srs/trunk
sudo ./configure && make

三、启动

sudo ./objs/srs -c conf/srs.conf

四、ffmpeg推流

# 高清流(libx264或者h264)
gphoto2 --stdout --capture-movie | ffmpeg -re -i - -vcodec libx264 -f flv rtmp://127.0.0.1:1935/myapp/test
ffmpeg -re -i - test.mp4 -vcodec libx264 -f flv rtmp://127.0.0.1:1935/myapp/test

五、VLC拉流

标签:流媒体,ffmpeg,myapp,srs,libx264,SRS,1935,Ubuntu,test
来源: https://www.cnblogs.com/hziwei/p/15958242.html