我尝试从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
有什么问题吗?
我仍在寻找解决这个问题
提前致谢
将
推送 URL 中的"key"替换为 https://www.facebook.com/live/create 中找到的私钥
在高峰时段的某个时间,Facebook RTMP服务器停止接受新请求。在Nginx RTMP模块上联播Youtube/FB Live/Twitch时,我发生了很多次。
另一个解决方案是,启动免费套餐AWS EC2 AMI Linux,使用RTMP模块安装NGINX,然后从那里推送。