Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/bdf959cd8381ddbe77051faaab83436fedb9f0f7 You should set ROOT_URL correctly, otherwise the web may not work correctly.

fix m2ts input specifier

release-10.1.0
Luke Pulverenti 8 years ago
parent 1cef641d17
commit bdf959cd83

@ -154,6 +154,10 @@ namespace MediaBrowser.Controller.MediaEncoding
{
return "mpegts";
}
if (string.Equals(container, "m2ts", StringComparison.OrdinalIgnoreCase))
{
return null;
}
return container;
}

Loading…
Cancel
Save