Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/f7ef7d9eda71d42dce46c91f1398eccc0b4b1b6c?style=unified&whitespace=show-all
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
12 additions and
2 deletions
@ -1773,13 +1773,23 @@ namespace Jellyfin.Api.Controllers
var args = "-codec:v:0 " + codec ;
// Prefer hvc1 to hev1.
if ( string . Equals ( state . ActualOutputVideoCodec , "h265" , StringComparison . OrdinalIgnoreCase )
| | string . Equals ( state . ActualOutputVideoCodec , "hevc" , StringComparison . OrdinalIgnoreCase )
| | string . Equals ( codec , "h265" , StringComparison . OrdinalIgnoreCase )
| | string . Equals ( codec , "hevc" , StringComparison . OrdinalIgnoreCase ) )
{
args + = " -tag:v:0 hvc1" ;
if ( EncodingHelper . IsCopyCodec ( codec )
& & ( string . Equals ( state . VideoStream . CodecTag , "dvh1" , StringComparison . OrdinalIgnoreCase )
| | string . Equals ( state . VideoStream . CodecTag , "dvhe" , StringComparison . OrdinalIgnoreCase ) ) )
{
// Prefer dvh1 to dvhe
args + = " -tag:v:0 dvh1" ;
}
else
{
// Prefer hvc1 to hev1
args + = " -tag:v:0 hvc1" ;
}
}
// if (state.EnableMpegtsM2TsMode)