如何使用PHP实现多平台的直播功能?

  #下载nginx源码

  wget http://nginx.org/download/nginx-1.17.0.tar.gz

  #下载nginx-rtmp-module源码

  git clone https://github.com/arut/nginx-rtmp-module.git

  #解压

  tar zxvf nginx-1.17.0.tar.gz

  #进入nginx源码目录

  cd nginx-1.17.0

  #解压并覆盖原文件

  patch -p1 < /path/to/nginx-rtmp-module/patches/v1.2.1/misc/nginx-1.7.7-stats.patch

  #编译安装

  http://www.php.cn/faq/configure --add-module=/path/to/nginx-rtmp-module --with-http_ssl_module --with-stream --with-stream_ssl_module

  make

  make install登录后复制