mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-04-24 14:08:44 -04:00
dependencies Makes the probesize and analyzeduration configurable with env args. (`JELLYFIN_FFmpeg_probesize` and `FFmpeg_analyzeduration`)
36 lines
1.4 KiB
C#
36 lines
1.4 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 analyse duration option.
|
|
/// </summary>
|
|
public const string FfmpegAnalyzeDuration = "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 GetProbeSize(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 GetAnalyzeDuration(this IConfiguration configuration)
|
|
=> configuration[FfmpegAnalyzeDuration];
|
|
}
|
|
}
|