Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/3a00f003f52f94ecc74634a6ad395fb38d019a88?style=split&whitespace=ignore-eol
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
15 additions and
13 deletions
@ -238,21 +238,23 @@ namespace MediaBrowser.MediaEncoding.Encoder
if ( extractKeyFrameInterval & & mediaInfo . RunTimeTicks . HasValue )
if ( extractKeyFrameInterval & & mediaInfo . RunTimeTicks . HasValue )
{
{
foreach ( var stream in mediaInfo . MediaStreams . Where ( i = > i . Type = = MediaStreamType . Video )
foreach ( var stream in mediaInfo . MediaStreams )
. ToList ( ) )
{
{
try
if ( s tream. T ype = = MediaStreamType . Video & & string . Equals ( stream . Codec , "h264" , StringComparison . OrdinalIgnoreCase ) )
{
{
stream . KeyFrames = await GetKeyFrames ( inputPath , stream . Index , cancellationToken )
try
. ConfigureAwait ( false ) ;
{
}
stream . KeyFrames = await GetKeyFrames ( inputPath , stream . Index , cancellationToken )
catch ( OperationCanceledException )
. ConfigureAwait ( false ) ;
{
}
catch ( OperationCanceledException )
}
{
catch ( Exception ex )
{
}
_logger . ErrorException ( "Error getting key frame interval" , ex ) ;
catch ( Exception ex )
{
_logger . ErrorException ( "Error getting key frame interval" , ex ) ;
}
}
}
}
}
}
}