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

Merge pull request from thornbill/backport-9485

Fix scaleFactor limit - Backport 
pull/10514/head
Cody Robibero 1 year ago committed by GitHub
commit 4df1003029
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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