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

Merge pull request from puenktchen/patch-2

Improve playback of RTSP streams
release-10.1.0
Luke 8 years ago committed by GitHub
commit ab3e79e6aa

@ -1567,6 +1567,11 @@ namespace MediaBrowser.Controller.MediaEncoding
inputModifier += " " + GetFastSeekCommandLineParameter(state.BaseRequest);
inputModifier = inputModifier.Trim();
if (state.InputProtocol == MediaProtocol.Rtsp)
{
inputModifier += " -rtsp_transport tcp";
}
if (!string.IsNullOrEmpty(state.InputAudioSync))
{
@ -1578,7 +1583,7 @@ namespace MediaBrowser.Controller.MediaEncoding
inputModifier += " -vsync " + state.InputVideoSync;
}
if (state.ReadInputAtNativeFramerate)
if (state.ReadInputAtNativeFramerate && state.InputProtocol != MediaProtocol.Rtsp)
{
inputModifier += " -re";
}

Loading…
Cancel
Save