#nginx
#nginx
Вопрос:
Я настроил Nginx для пограничного сервера прямой трансляции, который извлекает RTMP с исходного сервера. В моем случае RTMP работает нормально, но возврат hls не найден.
Я извлекаю rtmp как динамический поток на основе источника, например, «извлекаю rtmp: // ORIGIN_IP: 1935/ appname», и я могу воспроизвести «rtmp: // EDGE_IP: 1935 / stream/ origin_streamname», но я не могу воспроизвести «http://EDGE_IP:8080/stream/origin_streamname.m3u8 «всегда возвращайте сообщение «не найден», открыт порт 8080.
ниже приведен файл nginx.conf
worker_processes auto;
error_log /var/log/nginx/error.log warn;
events {
worker_connections 1024;
}
# RTMP configuration
rtmp {
server {
listen 1935;
chunk_size 4000;
application show {
live on;
hls on;
hls_path /mnt/hls/;
hls_fragment 3;
hls_playlist_length 60;
deny play all;
}
application vod {
play /mnt/mp4s;
}
application stream {
live on;
pull rtmp://ORIGIN_IP:1935/appname;
}
}
}
http {
sendfile off;
tcp_nopush on;
aio on;
directio 512;
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 /var/log/nginx/access.log main;
server {
listen 8080;
server_name 127.0.0.1;
location /nginx_status {
stub_status on;
allow 127.0.0.1;
deny all;
}
location / {
add_header 'Cache-Control' 'no-cache';
add_header 'Access-Control-Allow-Origin' '*' always;
add_header 'Access-Control-Expose-Headers' 'Content-Length';
if ($request_method = 'OPTIONS') {
add_header 'Access-Control-Allow-Origin' '*';
add_header 'Access-Control-Max-Age' 1728000;
add_header 'Content-Type' 'text/plain charset=UTF-8';
add_header 'Content-Length' 0;
return 204;
}
types {
application/dash xml mpd;
application/vnd.apple.mpegurl m3u8;
video/mp2t ts;
}
root /mnt/;
}
}
}
Ответ №1:
Я решил это, добавив
hls on;
hls_path /mnt/hls/;
hls_fragment 3;
hls_playlist_length 60;
тогда вам нужно играть rtmp://EDGE_IP:1935/stream/origin_streamname
и http://EDGE_IP:8080/hls/origin_streamname.m3u8
в то же время.