nginx - 试图推送到Facebook直播

时间:2018-01-23 03:13:39

标签: facebook nginx live rtmp

我尝试使用此摘要从nginx服务器将流推送到Facebook: - 在debian上安装nginx(带rtmp模块) - nginx.conf

rtmp {
  server{
    listen 9999;
    chunk_size 4096;
    application live {
      live on;
      record off;
      push rtmp://live-api.facebook.com:80/rtmp/key;
    }
  }
}

并收到错误:

2018/01/23 09:31:10 [error] 6826#0: connect() to [2a03:2880:f002:12a:face:b00c:0:1411]:80 failed (101: Network is unreachable)
2018/01/23 09:31:10 [error] 6826#0: *5 relay: push reconnect failed name='online' app='' playpath='' url='live-api.facebook.com:80/rtmp/key', client: IP, server: 0.0.0.0:9999

有什么不对吗?

我仍在寻找解决此问题

提前感谢

1 个答案:

答案 0 :(得分:0)

替换' key'使用您在https://www.facebook.com/live/create

中找到的私钥的推送网址

在高峰时段的某个时间,facebook RTMP服务器停止接受新请求。在Nginx RTMP模块上同时播出Youtube / FB Live / Twitch时发生了很多次。

另一个解决方案是,启动免费层AWS EC2 AMI Linux,安装带有RTMP模块的NGINX并从那里推送。