Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/93321730f4577d479c1c70b6c01c7aa2db79cb54
You should set ROOT_URL correctly, otherwise the web may not work correctly.
3 changed files with
12 additions and
28 deletions
@ -1718,7 +1718,7 @@ namespace Emby.Server.Implementations.LiveTv.EmbyTV
{
var parent = _fileSystem . GetDirectoryName ( originalPath ) ;
var name = Path . GetFileNameWithoutExtension ( originalPath ) ;
name + = " -" + index . ToString ( CultureInfo . InvariantCulture ) ;
name + = " - " + index . ToString ( CultureInfo . InvariantCulture ) ;
path = Path . ChangeExtension ( Path . Combine ( parent , name ) , Path . GetExtension ( originalPath ) ) ;
index + + ;
@ -1531,11 +1531,18 @@ namespace MediaBrowser.Controller.MediaEncoding
/// <returns>System.Int32.</returns>
public int GetNumberOfThreads ( EncodingJobInfo state , EncodingOptions encodingOptions , bool isWebm )
{
var threads = GetNumberOfThreadsInternal ( state , encodingOptions , isWebm ) ;
if ( isWebm )
{
// Recommended per docs
return Math . Max ( Environment . ProcessorCount - 1 , 2 ) ;
}
var threads = state . BaseRequest . CpuCoreLimit ? ? encodingOptions . EncodingThreadCount ;
if ( state . BaseRequest . CpuCoreLimit . HasValue & & state . BaseRequest . CpuCoreLimit . Value > 0 )
// Automatic
if ( threads < = 0 | | threads > = Environment . ProcessorCount )
{
threads = Math . Min ( threads , state . BaseRequest . CpuCoreLimit . Value ) ;
return 0 ;
}
return threads ;
@ -1957,29 +1964,6 @@ namespace MediaBrowser.Controller.MediaEncoding
return null ;
}
/// <summary>
/// Gets the number of threads.
/// </summary>
/// <returns>System.Int32.</returns>
private int GetNumberOfThreadsInternal ( EncodingJobInfo state , EncodingOptions encodingOptions , bool isWebm )
{
var threads = encodingOptions . EncodingThreadCount ;
if ( isWebm )
{
// Recommended per docs
return Math . Max ( Environment . ProcessorCount - 1 , 2 ) ;
}
// Automatic
if ( threads = = - 1 )
{
return 0 ;
}
return threads ;
}
public string GetSubtitleEmbedArguments ( EncodingJobInfo state )
{
if ( state . SubtitleStream = = null | | state . SubtitleDeliveryMethod ! = SubtitleDeliveryMethod . Embed )
@ -1,3 +1,3 @@
using System.Reflection ;
[assembly: AssemblyVersion("3.2.32.1 0 ")]
[assembly: AssemblyVersion("3.2.32.1 1 ")]