nginx-rtmp-module
nginx-rtmp-module copied to clipboard
record all and hls fail
nginx/1.14.1
rtmp { server { listen 1935; chunk_size 4096;
application live {
live on;
#recording live streams
record all;
record_path /data/records/;
# Enable HTTP Live Streaming
hls on;
# Les .m3u8 et les .ts seront ecrits ici
hls_path /data/hls/;
hls_fragment 3;
hls_playlist_length 60;
# On propose les versions transcodées suivant la bande passante du client
hls_variant _360 BANDWIDTH=864000;
hls_variant _480 BANDWIDTH=1152000;
hls_variant _src BANDWIDTH=1500000;
}
} }
nothings appear in /data/records/ or /data/hls/
live is on air...
someone can help ?