由于已经安装过Homebrew了,在此就不多说了。执行brew update
更新Homebrew。
先clone nginx到本地brew tap homebrew/nginx然后执行安装brew install nginx-full --with-rtmp-module 启动nginx服务 nginx,打开http://localhost:8080, 如果出现Welcome to nginx则说明没问题。
打开nginx的配置文件open /usr/local/etc/nginx/nginx.conf
在http节点中的server中增加
server {
listen 8080;
server_name localhost;
#charset koi8-r;
#access_log logs/host.access.log main;
location / {
root html;
index index.html index.htm;
}
# HLS 配置开始
location /hls {
types {
application/vnd.apple.mpegurl m3u8;
video/mp2t ts;
}
root html;
add_header Cache-Control no-cache;
}
# HLS 配置结束
#error_page 404 /404.html;
...
}
在http节点下面新增rtmp节点
rtmp {
server {
listen 1935;
application rtmp {
live on;
max_connections 1024;
}
application hls {
live on;
hls on;
hls_path /usr/local/var/www/hls;
}
}
}
nginx -s reload重新加载nginx配置。
安装ffmpegbrew install ffmpeg 测试推流 ffmpeg -loglevel verbose -re -i ~/Downloads/foam.mp4 -vcodec libx264 -vprofile baseline -acodec libmp3lame -ar 44100 -ac 1 -f flv rtmp://localhost:1935/hls/hlslive 打开 http://localhost:8080/hls/hlslive.m3u8就可以正常看到直播了, 生成的ts文件在/usr/local/var/www/hls中。