Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/8104e739d5b83d0d6563bb685f910697e60d6c12
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
16 additions and
4 deletions
@ -282,12 +282,18 @@ namespace MediaBrowser.MediaEncoding.Encoder
}
}
/// <summary>
/// With the given path string, replaces the filename with ffprobe, taking case
/// of any file extension (like .exe on windows).
/// </summary>
/// <param name="appPath"></param>
/// <returns></returns>
private string GetProbePathFromEncoderPath ( string appPath )
{
if ( ! string . IsNullOrEmpty ( appPath ) )
{
string pattern = @"[^\/\\]+?(\.[^\/\\\n.]+)?$" ;
string substitution = @"ffprobe$1" ;
const string pattern = @"[^\/\\]+?(\.[^\/\\\n.]+)?$" ;
const string substitution = @"ffprobe$1" ;
return Regex . Replace ( appPath , pattern , substitution ) ;
}
@ -8,8 +8,14 @@ namespace MediaBrowser.Model.Configuration
public bool EnableThrottling { get ; set ; }
public int ThrottleDelaySeconds { get ; set ; }
public string HardwareAccelerationType { get ; set ; }
public string EncoderAppPathCustom { get ; set ; } // FFmpeg path as set by the user via the UI
public string EncoderAppPath { get ; set ; } // The current FFmpeg path being used by the system
/// <summary>
/// FFmpeg path as set by the user via the UI
/// </summary>
public string EncoderAppPathCustom { get ; set ; }
/// <summary>
/// The current FFmpeg path being used by the system
/// </summary>
public string EncoderAppPath { get ; set ; }
public string VaapiDevice { get ; set ; }
public int H264Crf { get ; set ; }
public string H264Preset { get ; set ; }