基于SRS搭建RTMP直播流媒体服务器

在阿里云centos服务器安装ffmpeg
1.安装依赖包

yum install -y autoconf automake cmake freetype-devel gcc gcc-c++ git libtool make mercurial nasm pkgconfig zlib-devel

2.获取ffmpeg资源

git clone https://git.ffmpeg.org/ffmpeg.git ffmpeg
cd ffmpeg
./configure && make

进入ffmpeg目录

cd /usr/local/ffmpeg/

进入srs目录

cd /usr/local/srs/trunk/

启动srs

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

拉流地址(带vhost)

rtmp://47.107.251.92:1935/live?vhost=stream.test.com/teststream

拉流地址(无vhost)

rtmp://47.107.251.92:1935/live/livestream

推流操作

./ffmpeg -re -i /tmp/test1.m4v  -f m4v -y rtmp://47.107.251.92:1935/live/livestream

查看日志

tail -f  ./objs/srs.log

基于SRS搭建RTMP直播流媒体服务器

你可能感兴趣的:(iOS,iOS音视频开发)