Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/c3d6c19cc32f1ec16aa5aa1e1691a9d101c1251c?style=unified&whitespace=ignore-change You should set ROOT_URL correctly, otherwise the web may not work correctly.

Merge pull request from hmflash/fix-ffprobe-argumentexception

Fix ffprobe keyframe detection on linux
pull/702/head
Luke 10 years ago
commit c3d6c19cc3

@ -386,7 +386,7 @@ namespace MediaBrowser.MediaEncoding.Encoder
{
var text = await reader.ReadToEndAsync().ConfigureAwait(false);
var lines = StringHelper.RegexSplit(text, "\r\n");
var lines = StringHelper.RegexSplit(text, "[\r\n]+");
foreach (var line in lines)
{
if (string.IsNullOrWhiteSpace(line))

Loading…
Cancel
Save