docker-nginx-rtmp/nginx.conf

95 lines
2.8 KiB
Nginx Configuration File
Raw Normal View History

2016-10-24 01:49:28 +00:00
daemon off;
error_log logs/error.log debug;
events {
worker_connections 1024;
}
rtmp {
server {
listen 1935;
2018-08-01 13:20:37 +00:00
chunk_size 4096;
2016-10-24 01:49:28 +00:00
application stream {
2016-10-24 01:49:28 +00:00
live on;
2018-07-25 06:08:54 +00:00
exec /usr/local/bin/ffmpeg -i rtmp://localhost:1935/stream/$name
2016-10-24 01:49:28 +00:00
-c:a libfdk_aac -b:a 128k -c:v libx264 -b:v 2500k -f flv -g 30 -r 30 -s 1280x720 -preset superfast -profile:v baseline rtmp://localhost:1935/hls/$name_720p2628kbs
-c:a libfdk_aac -b:a 128k -c:v libx264 -b:v 1000k -f flv -g 30 -r 30 -s 854x480 -preset superfast -profile:v baseline rtmp://localhost:1935/hls/$name_480p1128kbs
-c:a libfdk_aac -b:a 128k -c:v libx264 -b:v 750k -f flv -g 30 -r 30 -s 640x360 -preset superfast -profile:v baseline rtmp://localhost:1935/hls/$name_360p878kbs
-c:a libfdk_aac -b:a 128k -c:v libx264 -b:v 400k -f flv -g 30 -r 30 -s 426x240 -preset superfast -profile:v baseline rtmp://localhost:1935/hls/$name_240p528kbs
-c:a libfdk_aac -b:a 64k -c:v libx264 -b:v 200k -f flv -g 15 -r 15 -s 426x240 -preset superfast -profile:v baseline rtmp://localhost:1935/hls/$name_240p264kbs;
}
application hls {
live on;
hls on;
hls_fragment_naming system;
hls_fragment 5s;
hls_path /opt/data/hls;
hls_nested on;
hls_variant _720p2628kbs BANDWIDTH=2628000,RESOLUTION=1280x720;
hls_variant _480p1128kbs BANDWIDTH=1128000,RESOLUTION=854x480;
hls_variant _360p878kbs BANDWIDTH=878000,RESOLUTION=640x360;
hls_variant _240p528kbs BANDWIDTH=528000,RESOLUTION=426x240;
hls_variant _240p264kbs BANDWIDTH=264000,RESOLUTION=426x240;
}
2020-07-08 13:42:37 +00:00
application dash {
live on;
dash on;
2020-07-08 14:25:03 +00:00
dash_fragment 10s;
2020-07-08 13:42:37 +00:00
dash_path /opt/data/dash;
2020-07-08 14:25:03 +00:00
dash_nested on;
2020-07-08 13:42:37 +00:00
}
2016-10-24 01:49:28 +00:00
}
}
http {
server {
listen 80;
location /hls {
types {
application/vnd.apple.mpegurl m3u8;
video/mp2t ts;
}
root /opt/data;
add_header Cache-Control no-cache;
add_header Access-Control-Allow-Origin *;
}
2020-07-08 13:42:37 +00:00
location /dash {
root /opt/data;
add_header Cache-Control no-cache;
}
2016-10-24 01:49:28 +00:00
location /live {
alias /opt/data/hls;
types {
application/vnd.apple.mpegurl m3u8;
video/mp2t ts;
}
add_header Cache-Control no-cache;
add_header Access-Control-Allow-Origin *;
}
2016-10-24 01:49:28 +00:00
location /stat {
rtmp_stat all;
rtmp_stat_stylesheet static/stat.xsl;
}
location /static {
alias /www/static;
}
location = /crossdomain.xml {
root /www/static;
default_type text/xml;
expires 24h;
}
}
}