git 安装
输入git -V
通过命令:yum -y install git 安装
srs 安装
git clone https://gitee.com/winlinvip/srs.oschina.git srs &&
cd srs/trunk && git remote set-url origin https://github.com/ossrs/srs.git && git pull
srs 启动步骤
1.初始化 ./configure && make
2.配置进行更改到 srs/trunk/conf/srs.conf
3.启动前还需要执行一个命令
./configure --with-stream-caster //编译SRS时打开StreamCaster支持
4.再执行一遍初始化 ./configure && make
5.最后我们运行SRS ./objs/srs -c conf/srs.conf
6.推流:网址:rtmp://127.0.0.1:1935/live
obs
7.拉流:srs播放网址:http://www.ossrs.net/players/srs_player.html
输入网址后点击播放视频:http://127.0.0.1:8090/live/111.flv
其他相关命令
停止 ./etc/init.d/srs stop
重启 ./etc/init.d/srs restart
tail -f ./objs/srs.log
注意事项
一定要把服务器的安全组增加端口1935/8090
服务器关闭防火墙的命令为
sudo /etc/init.d/iptables stop
sudo /sbin/chkconfig iptables off
启动推流编码器
Linux 系统下可以使用 FFMPEG 进行推流;Windows/Ios 系统下可选择 OBS 进行推流。(本文我们使用 FFMPEG 进行推流演示)
获取 FFMPEG
[dc2-user@10-254-81-196 ~]$ git clone https://git.ffmpeg.org/ffmpeg.git ffmpeg
[dc2-user@10-254-81-196 ~]$ cd ffmpeg
1
2
编译 FFMPEG
[dc2-user@10-254-81-196 ffmpeg]$./configure && make
1
如果编译失败,请根据提示内容安装依赖环境或忽略。
使用 FFMPEG推流
[dc2-user@10-254-81-196 ffmpeg]$./ffmpeg -re -i …/test.mp4 -f flv -y rtmp://116.85.57.94:888/live?vhost=stream.didi
linux 端口查询
1.查看端口占用情况netstat -anp |grep
2.查看当前所有已经使用的端口情况netstat -nultp(此处不用加端口号)
3.查看82端口的使用情况 netstat -anp |grep 82
linux 端口打开关闭
1.关闭端口号 iptables -A OUTPUT -p tcp --dport 端口号-j DROP
2.打开端口号 iptables -A INPUT -ptcp --dport 8090 -j ACCEPT