-
Notifications
You must be signed in to change notification settings - Fork 909
RTMP服务器部署
elesos edited this page Jul 31, 2019
·
5 revisions
centos7下安装:
curl -sSL https://get.docker.com/ | sh
systemctl start docker.service
wget -P ~ https://raw.githubusercontent.com/elesos/assets/master/.bashrc_docker;
echo "[ -f ~/.bashrc_docker ] && . ~/.bashrc_docker" >> ~/.bashrc; source ~/.bashrc
docker pull starrtc/rtmp-server
docker run -d -it --name rtmp -p 80:80 -p 1935:1935 starrtc/rtmp-server /bin/bash
docker-enter rtmp
/opt/nginx/sbin/nginx
ps -aux | grep nginx
打开多人会议,创建一个新的会议,然后点击右上角的"RTMP",填上推流地址
rtmp://your_ip/live/starrtc
查看推流效果,打开vlc播放器,点击菜单的“媒体->打开网络串流”填上上面的rtmp地址,点击播放即可。
在浏览器中打开 http://your_ip/stat 页面也可以查看推流状态。