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

Fix scaleFactor limitation to 1 introduced by pull request

pull/10487/head
Oliver Weyhmüller 2 years ago committed by Bill Thornton
parent ce8eddd484
commit 3269ce56ca

@ -2070,7 +2070,7 @@ namespace MediaBrowser.Controller.MediaEncoding
var outputScaleFactor = GetVideoBitrateScaleFactor(outputVideoCodec);
// Don't scale the real bitrate lower than the requested bitrate
var scaleFactor = Math.Min(outputScaleFactor / inputScaleFactor, 1);
var scaleFactor = Math.Max(outputScaleFactor / inputScaleFactor, 1);
if (bitrate <= 500000)
{

Loading…
Cancel
Save