You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
I'm pushing a h264 stream using OBS to SRS's SRT endpoint. From how I understand the documentation, this should then be exposed via /app/live/key.flv, but it's unplayable (timeout via mpegts.js and VLC). Am I missing something?
SRS is behind an NGINX reverse proxy if that helps, config:
location / {
include snippets/authelia/authrequest.conf;
include snippets/proxy.conf;
proxy_pass http://127.0.0.1:18080/$request_uri;
}
# For SRS homepage, console and players
# http://r.ossrs.net/console/
# http://r.ossrs.net/players/
location ~ ^/(console|players)/ {
include snippets/authelia/authrequest.conf;
include snippets/proxy.conf;
proxy_pass http://127.0.0.1:18080/$request_uri;
}
# For SRS streaming, for example:
# http://r.ossrs.net/live/livestream.flv
# http://r.ossrs.net/live/livestream.m3u8
location ~ ^/.+/.*\.(flv|m3u8|ts|aac|mp3)$ {
#include snippets/authelia/authrequest.conf;
#include snippets/proxy.conf;
proxy_pass http://127.0.0.1:18080$request_uri;
}
# For SRS backend API for console.
# For SRS WebRTC publish/play API.
location ~ ^/(api|rtc)/ {
proxy_pass http://127.0.0.1:1985$request_uri;
}
Describe the bug
I'm pushing a h264 stream using OBS to SRS's SRT endpoint. From how I understand the documentation, this should then be exposed via /app/live/key.flv, but it's unplayable (timeout via mpegts.js and VLC). Am I missing something?
SRS is behind an NGINX reverse proxy if that helps, config:
SRS config:
Docker-Compose:
Version
SRS V6 docker (via dockerhub), SRS/6.0.155
The text was updated successfully, but these errors were encountered: