nginx-rtmp-module

别等时光非礼了梦想. 提交于 2020-02-21 17:50:52

nginx-rtmp-module

  1. 下载nginx-rtmp-module
    git clone https://gitee.com/mirrors/nginx-rtmp-module.git
  2. 下载nginx
    http://nginx.org/en/download.html
    http://nginx.org/download/nginx-1.16.1.tar.gz
  3. 安装库 pcre zlib openssl-devel
    sudo apt install zlib1g-dev libssl1.0-dev
  4. 配置安装
    ./configure --add-module=…/nginx-rtmp-module
    make -j4
    sudo make install
  5. 修改conf 默认位置/usr/local/nginx/conf/nginx.conf
rtmp {
    server {
        listen 1935;
        chunk_size 4000;

        # Transcoding (ffmpeg needed)
        application webcam {
            # enable live streaming
            live on;

            # Stream from webcam
        }
    }
}
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!