mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-03 19:17:24 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			50 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			50 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
using Microsoft.Extensions.Configuration;
 | 
						|
 | 
						|
namespace MediaBrowser.Controller.Extensions
 | 
						|
{
 | 
						|
    /// <summary>
 | 
						|
    /// Configuration extensions for <c>MediaBrowser.Controller</c>.
 | 
						|
    /// </summary>
 | 
						|
    public static class ConfigurationExtensions
 | 
						|
    {
 | 
						|
        /// <summary>
 | 
						|
        /// The key for the FFmpeg probe size option.
 | 
						|
        /// </summary>
 | 
						|
        public const string FfmpegProbeSizeKey = "FFmpeg:probesize";
 | 
						|
 | 
						|
        /// <summary>
 | 
						|
        /// The key for the FFmpeg analyze duration option.
 | 
						|
        /// </summary>
 | 
						|
        public const string FfmpegAnalyzeDurationKey = "FFmpeg:analyzeduration";
 | 
						|
 | 
						|
        /// <summary>
 | 
						|
        /// The key for a setting that indicates whether playlists should allow duplicate entries.
 | 
						|
        /// </summary>
 | 
						|
        public const string PlaylistsAllowDuplicatesKey = "playlists:allowDuplicates";
 | 
						|
 | 
						|
        /// <summary>
 | 
						|
        /// Gets the FFmpeg probe size from the <see cref="IConfiguration" />.
 | 
						|
        /// </summary>
 | 
						|
        /// <param name="configuration">The configuration to read the setting from.</param>
 | 
						|
        /// <returns>The FFmpeg probe size option.</returns>
 | 
						|
        public static string GetFFmpegProbeSize(this IConfiguration configuration)
 | 
						|
            => configuration[FfmpegProbeSizeKey];
 | 
						|
 | 
						|
        /// <summary>
 | 
						|
        /// Gets the FFmpeg analyze duration from the <see cref="IConfiguration" />.
 | 
						|
        /// </summary>
 | 
						|
        /// <param name="configuration">The configuration to read the setting from.</param>
 | 
						|
        /// <returns>The FFmpeg analyze duration option.</returns>
 | 
						|
        public static string GetFFmpegAnalyzeDuration(this IConfiguration configuration)
 | 
						|
            => configuration[FfmpegAnalyzeDurationKey];
 | 
						|
 | 
						|
        /// <summary>
 | 
						|
        /// Gets a value indicating whether playlists should allow duplicate entries from the <see cref="IConfiguration"/>.
 | 
						|
        /// </summary>
 | 
						|
        /// <param name="configuration">The configuration to read the setting from.</param>
 | 
						|
        /// <returns>True if playlists should allow duplicates, otherwise false.</returns>
 | 
						|
        public static bool DoPlaylistsAllowDuplicates(this IConfiguration configuration)
 | 
						|
            => configuration.GetValue<bool>(PlaylistsAllowDuplicatesKey);
 | 
						|
    }
 | 
						|
}
 |