2019-10-26 20:53:53 +00:00
|
|
|
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>
|
2019-12-12 15:57:16 +00:00
|
|
|
public const string FfmpegProbeSizeKey = "FFmpeg:probesize";
|
2019-10-26 20:53:53 +00:00
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// The key for the FFmpeg analyse duration option.
|
|
|
|
/// </summary>
|
2019-12-12 15:57:16 +00:00
|
|
|
public const string FfmpegAnalyzeDurationKey = "FFmpeg:analyzeduration";
|
2019-10-26 20:53:53 +00:00
|
|
|
|
|
|
|
/// <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>
|
2019-12-12 16:02:42 +00:00
|
|
|
public static string GetFFmpegProbeSize(this IConfiguration configuration)
|
2019-10-26 20:53:53 +00:00
|
|
|
=> 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>
|
2019-12-12 16:02:42 +00:00
|
|
|
public static string GetFFmpegAnalyzeDuration(this IConfiguration configuration)
|
2019-11-25 11:12:48 +00:00
|
|
|
=> configuration[FfmpegAnalyzeDurationKey];
|
2019-10-26 20:53:53 +00:00
|
|
|
}
|
|
|
|
}
|