You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
1.4 KiB
37 lines
1.4 KiB
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 analyse duration option.
|
|
/// </summary>
|
|
public const string FfmpegAnalyzeDurationKey = "FFmpeg:analyzeduration";
|
|
|
|
/// <summary>
|
|
/// Retrieves the FFmpeg probe size from the <see cref="IConfiguration" />.
|
|
/// </summary>
|
|
/// <param name="configuration">This configuration.</param>
|
|
/// <returns>The FFmpeg probe size option.</returns>
|
|
public static string GetFFmpegProbeSize(this IConfiguration configuration)
|
|
=> configuration[FfmpegProbeSizeKey];
|
|
|
|
/// <summary>
|
|
/// Retrieves the FFmpeg analyse duration from the <see cref="IConfiguration" />.
|
|
/// </summary>
|
|
/// <param name="configuration">This configuration.</param>
|
|
/// <returns>The FFmpeg analyse duration option.</returns>
|
|
public static string GetFFmpegAnalyzeDuration(this IConfiguration configuration)
|
|
=> configuration[FfmpegAnalyzeDurationKey];
|
|
}
|
|
}
|