设置nginx以同时传输HLS / RTMP

时间:2018-04-14 22:34:06

标签: nginx video-streaming rtmp live-streaming hls

我有一个nginx网络服务器,RTMP模块运行完美,并将视频推送到几个RTMP目的地(Facebook,YouTube,潜望镜等)。

我现在需要在HLS协议中输出流,这样我就可以为它构建一个自定义播放器而不需要Flash依赖。我尝试过其他几个教程,但我很挣扎。

我有安装nginx时附带的默认配置文件,并在末尾添加了以下内容:

rtmp {
    server {
            listen 1935;
            chunk_size 4096;

            application live {
                    live on;
                    record off;
                    push rtmp://<streaming-service/key>
            }
    }
}

我究竟需要添加到此配置文件中以保留将视频推送到这些RTMP目标的能力以及我可以在没有Flash的播放器中使用的HLS提要?

我已在机器上安装了FFMPEG,以便将视频发送到Periscope。我已经看到了不需要FFMPEG的解决方案,但我只是想补充说我确实安装了它并且对它有些熟悉。

编辑:有关更多信息,我通过Teradek编码器通过服务器发送视频。

1 个答案:

答案 0 :(得分:0)

我用FFMPEG解决了这个问题。 pull指令无法正常工作。这是适用于我的配置文件:

    #user  nobody;
worker_processes  1;

events {
            worker_connections  1024;
}

http {

   include   mime.types;

   default_type application/octet-stream;

   sendfile on;

     server {

            listen 80;

            server_name localhost;

   location /hls {

            types {

                       application/vnd.apple.mpegurl m3u8;

                      video/mp2t ts;
           }

           root /tmp/;

     add_header Cache-Control no-cache;
           add_header 'Access-Control-Allow-Origin' '*';

            }


location / {

           root   html;

           index  index.html index.htm;

           }

error_page   500 502 503 504  /50x.html;

           location = /50x.html {

           root   html;

           }

}

}

rtmp {
   server {
           listen 1935;

           chunk_size 4096;

           application live {

                        live on;
                       record off;

                       push rtmp://<location/key>

                       exec ffmpeg -i rtmp://localhost/live/test -vcodec libx264 -vprofile baseline -x264opts keyint=40 -acodec aac -strict -2 -f flv rtmp://localhost/hls/test;

           }

           application hls {

                       live on;
                       hls on;
                       hls_path /tmp/hls/;
                       hls_fragment 6s;
                       hls_playlist_length 60s;
                       }

   }
}