Mac上搭建rtmp流媒體服務器(結合FFmpeg的使用)

1.確保安裝homebrew ---安裝則跳到第二步nginx

ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"git

2.brew tap nginxgithub

brew install nginx-full --with-rtmp-module(安裝rtmp模塊的nginx)vim

3.輸入nginx 啓動服務器ruby

http://localhost:8080服務器

Welcome to nginx!

出現上面的字符,說明nginx啓動成功app

4.配置rtmp: 利用vim命令curl

vim /usr/local/etc/nginx/nginx.confurl

#配置rtmp server
rtmp {
server{
#指定服務端口
listen 1935;
chunk_size 4000;
#指定流應用
application live
{
live on;
record off;
allow play all;
}
}
}server

5.nginx -s reload 從新啓動nginx

6.利用ffmpeg推流

ffmpeg -re -i abc.flv -c copy -f flv rtmp://localhost:1935/live/room

7.利用VLC軟件查看推流結果

 

雙擊查看

8.查看推流結果

 

相關文章
相關標籤/搜索