Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/9ee0804407d2a3cbcae913386f8799d938f6b7ed
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
5 additions and
6 deletions
@ -1978,12 +1978,6 @@ namespace MediaBrowser.Controller.MediaEncoding
filters . Add ( "hwupload=extra_hw_frames=64" ) ;
}
var inputWidth = videoStream ? . Width ;
var inputHeight = videoStream ? . Height ;
var threeDFormat = state . MediaSource . Video3DFormat ;
filters . AddRange ( GetScalingFilters ( inputWidth , inputHeight , threeDFormat , videoDecoder , outputVideoCodec , request . Width , request . Height , request . MaxWidth , request . MaxHeight ) ) ;
if ( state . DeInterlace ( "h264" , true )
& & string . Equals ( outputVideoCodec , "h264_vaapi" , StringComparison . OrdinalIgnoreCase ) )
{
@ -2006,6 +2000,11 @@ namespace MediaBrowser.Controller.MediaEncoding
}
}
var inputWidth = videoStream ? . Width ;
var inputHeight = videoStream ? . Height ;
var threeDFormat = state . MediaSource . Video3DFormat ;
filters . AddRange ( GetScalingFilters ( inputWidth , inputHeight , threeDFormat , videoDecoder , outputVideoCodec , request . Width , request . Height , request . MaxWidth , request . MaxHeight ) ) ;
var output = string . Empty ;