Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/e7037a9b80843c127712f11430239f8fa3cb4aed
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
16 additions and
2 deletions
@ -155,7 +155,7 @@ namespace MediaBrowser.Api.Playback
private byte [ ] GetBytes ( int value )
{
byte [ ] bytes = BitConverter . GetBytes ( value ) ;
if ( BitConverter . IsLittleEndian )
if ( ! BitConverter . IsLittleEndian )
Array . Reverse ( bytes ) ;
return bytes ;
}
@ -501,7 +501,21 @@ namespace MediaBrowser.MediaEncoding.Encoder
process . Start ( ) ;
var ranToCompletion = process . WaitForExit ( 120000 ) ;
// Need to give ffmpeg enough time to make all the thumbnails, which could be a while,
// but we still need to detect if the process hangs.
// Making the assumption that as long as new jpegs are showing up, everything is good.
bool isResponsive = true ;
int lastCount = 0 ;
while ( isResponsive & & ! process . WaitForExit ( 120000 ) )
{
int jpegCount = Directory . GetFiles ( targetDirectory , "*.jpg" ) . Count ( ) ;
isResponsive = ( jpegCount > lastCount ) ;
lastCount = jpegCount ;
}
bool ranToCompletion = process . HasExited ;
if ( ! ranToCompletion )
{