Open
Description
Hi, I've setup Nginx with the module.
This is my nginx.conf
http {
server {
listen 8000;
#location / {
# root /var/www/html;
#}
location / {
ts;
client_max_body_size 0;
}
location /publish/ {
ts;
ts_hls path=/var/media/hls segment=10s;
ts_dash path=/var/media/dash segment=10s;
client_max_body_size 0;
}
location /play/ {
types {
application/x-mpegURL m3u8;
application/dash+xml mpd;
video/MP2T ts;
video/mp4 mp4;
}
alias /var/media/;
}
}
}
When I run ffmpeg -re -i file -c copy -f mpegts http://localhost:8000/foo it start to run but I can not access remotly to the stream.
Which is the uri to access to this stream remotly?
I tried http://ip:8000/foo and get no response.
Thanks in advance
Metadata
Metadata
Assignees
Labels
No labels