Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/f3096b83403d6ad8f5a087d46d04d889f96740a7
You should set ROOT_URL correctly, otherwise the web may not work correctly.
3 changed files with
17 additions and
3 deletions
@ -173,7 +173,7 @@ namespace Emby.Server.Implementations.Library.Resolvers.TV
}
}
logger . Debug ( "{0} is not a series folder." , path ) ;
//logger.Debug("{0} is not a series folder.", path) ;
return false ;
}
@ -56,7 +56,7 @@ namespace MediaBrowser.Controller.MediaEncoding
{
return GetAvailableEncoder ( "h264_nvenc" , defaultEncoder ) ;
}
if ( string . Equals ( hwType , " h264_ omx", StringComparison . OrdinalIgnoreCase ) )
if ( string . Equals ( hwType , " omx", StringComparison . OrdinalIgnoreCase ) )
{
return GetAvailableEncoder ( "h264_omx" , defaultEncoder ) ;
}
@ -1896,6 +1896,20 @@ namespace MediaBrowser.Controller.MediaEncoding
break ;
}
}
else if ( string . Equals ( encodingOptions . HardwareAccelerationType , "omx" , StringComparison . OrdinalIgnoreCase ) )
{
switch ( videoStream . Codec . ToLower ( ) )
{
case "avc" :
case "h264" :
if ( _mediaEncoder . SupportsDecoder ( "h264_omx" ) & & encodingOptions . HardwareDecodingCodecs . Contains ( "h264" , StringComparer . OrdinalIgnoreCase ) )
{
return "-c:v h264_omx " ;
}
break ;
}
}
}
// leave blank so ffmpeg will decide
@ -1,3 +1,3 @@
using System.Reflection ;
[assembly: AssemblyVersion("3.2.30.2 1 ")]
[assembly: AssemblyVersion("3.2.30.2 2 ")]