我已经在DigitalOcean托管的ubuntu linux中设置了Nginx RTMP。目前在我的桌面上以localhost模式运行我的laravel Web应用程序。一切似乎都适合直播。我正在使用我的localhost JWPlayer和Open Broadcaster Software(OBS)进行实时流式传输测试。有用。但每当我需要将流视频录制到linux目录(/ var / www)时,似乎没有任何事情发生,并且在我点击OBS中的停止流媒体按钮后根本没有错误。
我不知道录音是如何工作的,我尝试了录音手册,上面有链接。我点击开始记录,它出来/ var / rec / {mystream} .flv
此手册版本的录制链接嵌入laravel网站:
rtmp {
server {
listen 1935;
chunk_size 4096;
application live {
live on;
recorder rec1 {
record all manual;
record_suffix all.flv;
record_path /var/rec;
record_unique on;
}
}
}
}
开始录制:
<a href="http://server.com/control/record/start?app=live&name=key&rec=rec1" target="_blank">Start rec1</a>
http:
的nginx配置access_log logs/rtmp_access.log;
include mime.types;
default_type application/octet-stream;
#log_format main '$remote_addr - $remote_user [$time_local] "$request" '
# '$status $body_bytes_sent "$http_referer" '
# '"$http_user_agent" "$http_x_forwarded_for"';
#access_log logs/access.log main;
sendfile on;
#tcp_nopush on;
#keepalive_timeout 0;
keepalive_timeout 65;
#gzip on;
server {
listen 80;
server_name localhost;
#charset koi8-r;
#access_log logs/host.access.log main;
location / {
root html;
index index.html index.htm;
}
location /stat {
rtmp_stat all;
rtmp_stat_stylesheet stat.xsl;
}
location /stat.xsl {
root /var/www/;
}
location /control {
rtmp_control all;
}
#error_page 404 /404.html;
# redirect server error pages to the static page /50x.html
#
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
# proxy the PHP scripts to Apache listening on 127.0.0.1:80
#
#location ~ \.php$ {
# proxy_pass http://127.0.0.1;
#}
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
#location ~ \.php$ {
# root html;
# fastcgi_pass 127.0.0.1:9000;
# fastcgi_index index.php;
# fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name;
# include fastcgi_params;
#}
# deny access to .htaccess files, if Apache's document root
# concurs with nginx's one
#
#location ~ /\.ht {
# deny all;
#}
}
顺便说一下
B计划:我计划将录制的流文件存储到Amazon AWS s3。任何人都知道如何使用RTMP Nginx而不是使用Wowza Amazon。
答案 0 :(得分:2)
您可以在 shell 脚本 nginx conf 中运行。先检查权限:
chown -R nobody:nogroup foldername
chmod -R 700 foldername
外壳脚本:
ffmpeg -v error -y -i "$1" -vcodec libx264 -acodec aac -f mp4 -movflags +faststart "/tmp/recordings/$2.mp4"
aws s3 cp "/tmp/recordings/$basname.mp4" "s3://bucketname/"
exec_record_done bash -c "/home/ubuntu/script/record.sh $path $basname";
答案 1 :(得分:0)
您应该检查您尝试记录到的目录的权限(在您的情况下为/ var / rec)。 Nginx,即使以sudo启动,默认情况下会以“nobody”用户身份生成工作进程。您还可以尝试将工作进程生成的用户更改为:https://serverfault.com/a/534512/102045
答案 2 :(得分:0)
当我和我的伴侣这样做时,我会用
record_path /tmp/rec;
然后在文件中设置一个crontab,该文件将永久尝试将新文件(视频)发送到他的NextCloud FTP(在这种情况下,可能是您的亚马逊aws)