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

update h264/qsv params

pull/702/head
Luke Pulverenti 10 years ago
parent de807fa9de
commit f0b072331f

@ -318,7 +318,7 @@ namespace MediaBrowser.Api.Playback
{
param = "-preset superfast";
param += " -crf 23";
param += " -crf 23 -rc-lookahead 0 -muxdelay 0 -refs 1";
}
else if (string.Equals(videoCodec, "libx265", StringComparison.OrdinalIgnoreCase))
@ -566,7 +566,10 @@ namespace MediaBrowser.Api.Playback
if (string.Equals(outputVideoCodec, "h264_qsv", StringComparison.OrdinalIgnoreCase))
{
filters[filters.Count - 1] += ":flags=fast_bilinear";
if (filters.Count > 0)
{
filters[filters.Count - 1] += ":flags=fast_bilinear";
}
}
var output = string.Empty;

Loading…
Cancel
Save