Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/0cbae4a06d49acccfd7a757039f7f6725cdc53a5
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
9 additions and
2 deletions
@ -2750,6 +2750,8 @@ namespace MediaBrowser.Controller.MediaEncoding
args + = " -mpegts_m2ts_mode 1" ;
}
var supportsGlobalHeaderFlag = state . OutputContainer ! = "mkv" ;
if ( string . Equals ( videoCodec , "copy" , StringComparison . OrdinalIgnoreCase ) )
{
if ( state . VideoStream ! = null
@ -2770,7 +2772,12 @@ namespace MediaBrowser.Controller.MediaEncoding
if ( ! state . RunTimeTicks . HasValue )
{
args + = " -flags -global_header -fflags +genpts" ;
if ( supportsGlobalHeaderFlag )
{
args + = " -flags -global_header" ;
}
args + = " -fflags +genpts" ;
}
}
else
@ -2816,7 +2823,7 @@ namespace MediaBrowser.Controller.MediaEncoding
args + = " " + qualityParam . Trim ( ) ;
}
if ( ! state . RunTimeTicks . HasValue )
if ( supportsGlobalHeaderFlag & & ! state . RunTimeTicks . HasValue )
{
args + = " -flags -global_header" ;
}