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

Fix culture problem on Windows for segment_time_delta argument.

pull/1731/head
Erwin de Haan 6 years ago
parent 2f2010ce59
commit e8b13ea8a9

@ -970,7 +970,7 @@ namespace MediaBrowser.Api.Playback.Hls
if (isEncoding && state.TargetFramerate > 0)
{
float startTime = 1 / (state.TargetFramerate.Value * 2);
timeDeltaParam = string.Format("-segment_time_delta {0}", Math.Round(startTime, 3));
timeDeltaParam = string.Format(CultureInfo.InvariantCulture, "-segment_time_delta {0:F3}", startTime);
}
var segmentFormat = GetSegmentFileExtension(state.Request).TrimStart('.');

Loading…
Cancel
Save