Mac上搭建RTMP服务器

前言:不废话上实操。

步骤一:安装Homebrow

Homebrew简称brew,是Mac OSX上的软件包管理工具,能在Mac中方便的安装软件或者卸载软件,可以说Homebrew就是mac下的apt-getyum神器。

查看本地是否安装过

$ brew

安装brew

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

卸载brew

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

安装不成功自己查一下资料吧,这里不过多演示。

步骤二:安装nginx服务器

插看是否安装过nginx

$ brew search nginx

安装nginx

$ brew tap denji/homebrew-nginx
$ brew install nginx-full --with-rtmp-module

注意⚠️: --with-rtmp-module,一定要加上rtmp模块,不然添加rtmp服务时就会报错误:unknown directive "rtmp" in /usr/local/etc/nginx/nginx.conf:135
解决上述问题,只能卸载掉nginx-full,然后重装nginx-full

$ brew uninstall nginx-full  // 卸载nginx-full
$ brew install nginx-full --with-rtmp-module  // 安装nginx-full

步骤三:修改nginx配置文件

打开文件/usr/local/etc/nginx/nginx.conf

$ open /usr/local/etc/nginx/nginx.conf

使用Xcode/文件编辑器打开nginx.conf
修改配置文件:
1.找到http下的server添加HLS配置

http {
    server {
        #HLS配置开始,这个配置为了‘客户端‘能够以http协议获取HLS的拉流
        #HLS配置开始,这个配置为了‘客户端‘能够以http协议获取HLS的拉流
        location /hls{
            # Serve HLS fragments
            types {
                application/vnd.apple.mpegurl    m3u8;
                video/mp2t ts;
            }
            root /usr/local/var/www;
            add_header Cache-Control no-cache;
        }
        #HLS配置结束
    }
}

2.文件拖拽到最后,在没有{}的地方添加rtmp配置

# 在http节点后面加上rtmp配置:
rtmp {
    server {
        listen 1935;
        ping 30s;
        notify_method get;
        
        application zbcs {
            live on;
            record off;
        }
        
        application live {
            live on;
            record off;
            max_connections 1024;
        }

        #增加对HLS支持开始
        application hls {
            live on;
            hls on;
            hls_path /usr/local/var/www/hls;
            hls_fragment 5s;
        }
        #增加对HLS支持结束
    }
}

修改后的整体内容如下:


#user  nobody;
worker_processes  1;

#error_log  logs/error.log;
#error_log  logs/error.log  notice;
#error_log  logs/error.log  info;

#pid        logs/nginx.pid;


events {
    worker_connections  1024;
}


http {
    include       mime.types;
    default_type  application/octet-stream;

    #log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
    #                  '$status $body_bytes_sent "$http_referer" '
    #                  '"$http_user_agent" "$http_x_forwarded_for"';

    #access_log  logs/access.log  main;

    sendfile        on;
    #tcp_nopush     on;

    #keepalive_timeout  0;
    keepalive_timeout  65;

    #gzip  on;

    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配置开始,这个配置为了‘客户端‘能够以http协议获取HLS的拉流
        location /hls{
            # Serve HLS fragments
            types {
                application/vnd.apple.mpegurl    m3u8;
                video/mp2t ts;
            }
            root /usr/local/var/www;
            add_header Cache-Control no-cache;
        }
        #HLS配置结束
        

        #error_page  404              /404.html;

        # redirect server error pages to the static page /50x.html
        #
        error_page   500 502 503 504  /50x.html;
        location = /50x.html {
            root   html;
        }

        # proxy the PHP scripts to Apache listening on 127.0.0.1:80
        #
        #location ~ \.php$ {
        #    proxy_pass   http://127.0.0.1;
        #}

        # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
        #
        #location ~ \.php$ {
        #    root           html;
        #    fastcgi_pass   127.0.0.1:9000;
        #    fastcgi_index  index.php;
        #    fastcgi_param  SCRIPT_FILENAME  /scripts$fastcgi_script_name;
        #    include        fastcgi_params;
        #}

        # deny access to .htaccess files, if Apache's document root
        # concurs with nginx's one
        #
        #location ~ /\.ht {
        #    deny  all;
        #}
    }


    # another virtual host using mix of IP-, name-, and port-based configuration
    #
    #server {
    #    listen       8000;
    #    listen       somename:8080;
    #    server_name  somename  alias  another.alias;

    #    location / {
    #        root   html;
    #        index  index.html index.htm;
    #    }
    #}


    # HTTPS server
    #
    #server {
    #    listen       443 ssl;
    #    server_name  localhost;

    #    ssl_certificate      cert.pem;
    #    ssl_certificate_key  cert.key;

    #    ssl_session_cache    shared:SSL:1m;
    #    ssl_session_timeout  5m;

    #    ssl_ciphers  HIGH:!aNULL:!MD5;
    #    ssl_prefer_server_ciphers  on;

    #    location / {
    #        root   html;
    #        index  index.html index.htm;
    #    }
    #}
    include servers/*;
}

# 在http节点后面加上rtmp配置:
rtmp {
    server {
        listen 1935;
        ping 30s;
        notify_method get;
        
        application zbcs {
            live on;
            record off;
        }
        
        application live {
            live on;
            record off;
            max_connections 1024;
        }

        #增加对HLS支持开始
        application hls {
            live on;
            hls on;
            hls_path /usr/local/var/www/hls;
            hls_fragment 5s;
        }
        #增加对HLS支持结束
    }
}

说明:
live on 开启实时
hls on 开启hls
hls_path ts文件存放路径
hls_fragment 5s 每个TS文件包含5秒的视频内容

让配置文件生效:
方法一:(亲测有坑,有时候不生效)

$ nginx -s reload // 亲测有坑

方法二:
查看启动的nginx

$ ps -ef|grep nginx

找到master process的进程端口号是549

正在运行的nginx

停掉这个master process进程

$ kill -QUIT 549

让配置文件生效

$ nginx -t -c /usr/local/etc/nginx/nginx.conf

然后就可以启动服务了。

$ nginx

在浏览器里打开http://localhost:8080
如果看到如下页面,说明配置成功了!

启动nginx成功.png

想要停止服务,命令:(stop是强制退出,quit是执行完任务后退出)

$ nginx -s quit
// 或者
$ nginx -s stop

第四步:ffmpeg

安装ffmpeg

$ brew install ffmpeg

查看安装成功了没

$ ffmpeg
ffmpeg

安装失败自己找办法。

RTMP的方式推拉流

测试推流

$ ffmpeg -re -i /Users/xxx/Desktop/sample_iPod.mp4 -vcodec h264 -acodec aac -strict -2 -f flv rtmp://localhost:1935/live/room
一帧一帧地推流.png

测试拉流
开启推流后,用VLC播放器播放下面直播地址视频:

image.png
$ rtmp://localhost:1935/live/room
image.png

注意⚠️: 要在推流完成之前play!!!因为这是直播流,推完就没啦!!!

这样一个简单的本地直播服务就搭建好了!

对于视频直播服务,如果需要支持多路流输入的话,很简单,在Nginx配置文件里多配几个Application就可以了,像下面这样:

image.png

HLS的方式推拉流

测试推流

$ ffmpeg -re -i /Users/xxx/Desktop/sample_iPod.mp4 -vcodec h264 -acodec aac -strict -2 -f flv rtmp://localhost:1935/hls/demo

此时在/usr/local/var/www/hls目录下会产生流媒体文件

image.png

测试推流
打开Safari浏览器输入

http://ip:8080/hls/demo.m3u8
image.png

HLS直播延时

我们知道hls协议是将直播流分成一段一段的小段视频去下载播放的,所以假设列表里面的包含5个ts文件,每个TS文件包含5秒的视频内容,那么整体的延迟就是25秒。因为当你看到这些视频时,主播已经将视频录制好上传上去了,所以时这样产生的延迟。当然可以缩短列表的长度和单个ts文件的大小来降低延迟,极致来说可以缩减列表长度为1,并且ts的时长为1s,但是这样会造成请求次数增加,增大服务器压力,当网速慢时回造成更多的缓冲,所以苹果官方推荐的ts时长时10s,所以这样就会大改有30s的延迟。参考资料:
https://developer.apple.com/library/ios/documentation/NetworkingInternet/Conceptual/StreamingMediaGuide/FrequentlyAskedQuestions/FrequentlyAskedQuestions.html

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,324评论 5 476
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,303评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,192评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,555评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,569评论 5 365
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,566评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,927评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,583评论 0 257
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,827评论 1 297
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,590评论 2 320
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,669评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,365评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,941评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,928评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,159评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,880评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,399评论 2 342

推荐阅读更多精彩内容