Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/a76d997a86b07f38ad1e7f168f11d2de6423d545
You should set ROOT_URL correctly, otherwise the web may not work correctly.
3 changed files with
7 additions and
6 deletions
@ -82,11 +82,6 @@ namespace Emby.Server.Implementations.MediaEncoder
return false ;
}
if ( video . VideoType = = VideoType . Dvd )
{
return false ;
}
if ( video . IsShortcut )
{
return false ;
@ -313,6 +313,12 @@ namespace MediaBrowser.Controller.MediaEncoding
return null ;
}
// ISO files don't have an ffmpeg format
if ( string . Equals ( container , "iso" , StringComparison . OrdinalIgnoreCase ) )
{
return null ;
}
return container ;
}
@ -370,7 +370,7 @@ namespace MediaBrowser.MediaEncoding.Encoder
public string GetInputArgument ( string inputFile , MediaSourceInfo mediaSource )
{
var prefix = "file" ;
if ( mediaSource . VideoType = = VideoType . BluRay | | mediaSource . VideoType = = VideoType . Iso )
if ( mediaSource . VideoType = = VideoType . BluRay )
{
prefix = "bluray" ;
}